26.12.2011, 21:54
Try it like this:
Код:
public OnPlayerClickPlayer(playerid, clickedplayerid, source) { new Float:X, Float:Y, Float:Z; GetPlayerPos(clickedplayerid, X, Y, Z); SetTimerEx("SetPlayerPosEx", 1000, false, "dfff", playerid,X+3,Y,Z+3); return 1; } function SetPlayerPosEx(playerid,Float:x,Float:y,Float:z) public SetPlayerPosEx(playerid,Float:x,Float:y,Float:z) { SetPlayerPos(playerid,x,y,z); return 1; }