SA-MP Forums Archive
[Ajuda] Verificar se o player crashou - 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] Verificar se o player crashou (/showthread.php?tid=487550)



Verificar se o player crashou - PetterAdriano - 13.01.2014

Pessoal como faзo pra ve se o jogador saiu do servidor e se ele crashou ?


Re: Verificar se o player crashou - CharlieBrown - 13.01.2014

Basta traduzir.
https://sampwiki.blast.hk/wiki/OnPlayerDisconnect


Re: Verificar se o player crashou - iDreak - 13.01.2014

eu acho que vocк estб procurando isto:

pawn Код:
// Na OnPlayerDisconnect
switch(reason)
{
    new String[128];
    case 0: format(String, 128, "{FF0000}%s {A9A9A9}Desconectou-se do Servidor {FFFFFF}(Crash)", NomePlayer(playerid));
    case 1: format(String, 128, "{FF0000}%s {A9A9A9}Desconectou-se do Servidor {FFFFFF}(Desconectou-se)", NomePlayer(playerid));
    case 2: format(String, 128, "{FF0000}%s {A9A9A9}Desconectou-se do Servidor {FFFFFF}(Kickado/Banido)", NomePlayer(playerid));
}
SendClientMessageToAll(-1, String);



Re: Verificar se o player crashou - PetterAdriano - 13.01.2014

Obrigado os dois !