04.08.2009, 20:47
MoveObject uses the ID of the object, not the modelid that the objects use, are you sure this is what you are using? You can store the objectid in an array, like so:
Then you can move them by referring to Variable[id] for the objectid, like so:
Hope that helps you
pawn Код:
new Variable[10];
Variable[0] = CreateObject(....);
Variable[1] = CreateObject(....);
pawn Код:
MoveObject(Variable[0],................);

