04.01.2014, 14:27
Stuck command?
I didn't understand you very well so i just did this for you it unfreezes him clear his animations and then puts him 1 metre from the ground then releases him.
pawn Код:
CMD:stuck(playerid, params[])
{
new Float:Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
SetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]+1);
TogglePlayerControllable(playerid, 1);
ClearAnimations(playerid);
return 1;
}