SA-MP Forums Archive
[Ajuda] Explicando a Baixo ! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Explicando a Baixo ! (/showthread.php?tid=472232)



Explicando a Baixo ! - Catchorro - 27.10.2013

Gente como faзo no public onplayerspawn o player quando vai respawna ele fica um 5 segundos parado no ar porque meu spawn e com obejtos e a maioria das vezes ele buga e cai na agua !


Re: Explicando a Baixo ! - Coe1 - 27.10.2013

https://sampwiki.blast.hk/wiki/SetTimerEx


Re: Explicando a Baixo ! - BielCOP - 27.10.2013

pawn Код:
public OnPlayerSpawn(playerid)
{
     TogglePlayerControllable(playerid,0);
     SetTimerEx("Descongelar",5000,0,"i",playerid);
}
forward Descongelar(playerid);

public Descongelar(playerid)
{
     TogglePlayerControllable(playerid,1);
}



Re: Explicando a Baixo ! - Catchorro - 27.10.2013

Nusss Biel obrigado novamente S2