I see.
One more question:
<font face="Courier New, Courier, mono">
if (MouseKeyboard.KeyDown(19)):
System.Create("Shot", 1, MouseKeyboard.AbsMouseX, MouseKeyboard.AbsMouseY );
Shot.Angle = 270;
elif (MouseKeyboard.KeyDown(20)):
System.Create("Shot", 1, MouseKeyboard.AbsMouseX, MouseKeyboard.AbsMouseY );
Shot.Angle = 90;
</font>
How can I refer to the objects in Python script? The above code gives me error. If you put this code in, sometimes, one random Shot will change angle.
This is picking problem again. How can I refer to the Shot that has just been recently created in Python code here?