28.03.2014, 08:12
So, I've made a slap command with the function of this:
so, If I want to make it the pos to the right side, instead of goes up, I mean, if i do /forward it'll slap to forward,and other else.
The problem is
should I do this
to make the /goright command, so the pos will goes to the right side ?
pawn Код:
GetPlayerPos(id, x, y, z);
SetPlayerPos(id,x,y,z+6);
The problem is
should I do this
pawn Код:
GetPlayerPos(id, x, y, z);
SetPlayerPos(id,x+6,y,z);