23.06.2013, 19:27
Hi,
I was thinking how can i make it so that if you die you return to that spot?
I currently have this but it doesn't work any suggestions?
Thanks,
Yoran
I was thinking how can i make it so that if you die you return to that spot?
I currently have this but it doesn't work any suggestions?
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
new Float:qu[3];
GetPlayerPos(playerid, qu[0], qu[1], qu[2]);
SetPlayerPos(playerid, qu[0] ,qu[1] ,qu[2]);
return 1;
}
Yoran

