SA-MP Forums Archive
[Pedido] Congelamento - 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: [Pedido] Congelamento (/showthread.php?tid=454167)



Congelamento - MichelScripter - 28.07.2013

Gostaria de um sistema que quando alguem/veiculo passa-se ele ficaria congelado por 5 seg, depois descongelaria automaticamente...


Re: Congelamento - Coe1 - 28.07.2013

Como assim ? Explica mais sobre oque vocк quer..


Re: Congelamento - MonFiTy - 28.07.2013

pawn Код:
//Na Cordenada
SetTimerEx("congela",5000,false,"i",playerid);
TogglePlayerControllable(playerid,0);
SetPlayerPos(playerid,x,y,z);

forward congela(id);
public congela(id)
{
    TogglePlayerControllable(id,1);
}



Re: Congelamento - King_Furios - 28.07.2013

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


Re: Congelamento - MichelScripter - 28.07.2013

Quote:
Originally Posted by MonFiTy
Посмотреть сообщение
pawn Код:
//Na Cordenada
SetTimerEx("congela",5000,false,"i",playerid);
TogglePlayerControllable(playerid,0);
SetPlayerPos(playerid,x,y,z);

forward congela(id);
public congela(id)
{
    TogglePlayerControllable(id,1);
}
Ele congela sу uma vez durante os meus RaceCheckpoint :/


Re: Congelamento - Coe1 - 28.07.2013

pawn Код:
public OnPlayerEnterRaceCheckpoint(playerid)
{
    SetTimerEx("congelar",5000,false,"d",playerid);
TogglePlayerControllable(playerid,0);
    return 1;
}

forward congelar(playerid);
public congelar(playerid)
{
    TogglePlayerControllable(playerid,1);
}