12.02.2010, 03:01
well your first code was almost okay, way too many variables, but all you had wrong was
this
should be this
this
pawn Код:
new tempx[MAX_PLAYERS];
p[0]=tempx[playerid];
pawn Код:
new Float:tempx; // float variable, not MAX_PLAYERS big.
tempx=p[0]; // reversed order.