12.10.2010, 07:48
at top of your script, simply create an array to hold 1 object per player
then create the object when its needed (a command i assume)
once its created, you can peek the positions
Код:
new Dynamite[MAX_PLAYERS];
Код:
Dynamite[playerid]=CreateObject(1654,x,y,z);
Код:
new Float:x, Float:y, Float:z; GetObjectPos(Dynamite[playerid],x,y,z);

