14.01.2012, 11:02
pawn Код:
#define MAX_SHIP_OBJECTS 7 // 6+1
new shipobject[MAX_SHIP_OBJECTS];
shipobject[0] = CreateObject(9585, -1024.33, -282.61, 7.56, 0.00, 0.00, 97.62);
shipobject[1] = CreateObjec...
And to move the objects:
for(new i=0; i<MAX_SHIP_OBJECTS;i++)
{
MoveObject(shipobject[i], ...);
}