Quote:
Originally Posted by ExeC
Lol, you need to separate the actual coordinates, not put the "all" coordinates in there. So, for example:
|
I don't quite understand what you are trying to say, but if you are saying you don't need all the extra places after the decimal, then you are correct. However, it will have no effect on the script (just making the coordinates of the object slightly less precise).
I would suggest using an array next time, instead of the epic amount of variables you have there.
pawn Код:
new rocket[ 20 ];
// and
MoveObject( rocket[ 0 ], .... );
Would work wonders. But like stated above, it has no true effect, just makes it look cooler.