[Ajuda] Verificar se um player estб online pelo Nome.
#4

pawn Код:
player_IsConnected(playername[]) {
    static string[25], i;
    for(i = GetMaxPlayers() - 1; i > -1; --i) {
        if(IsPlayerConnected(i)) {
            GetPlayerName(i, string, sizeof string);
            if(!strcmp(playername, string, false)) {
                return true;
            }
        }
    }
    return false;
}
Reply


Messages In This Thread
Verificar se um player estб online pelo Nome. - by syslogg - 08.08.2014, 05:02
Re: Verificar se um player estб online pelo Nome. - by PT - 08.08.2014, 05:39
Re: Verificar se um player estб online pelo Nome. - by bruxo00 - 08.08.2014, 11:26
Re: Verificar se um player estб online pelo Nome. - by zPain - 08.08.2014, 14:17
Re: Verificar se um player estб online pelo Nome. - by syslogg - 08.08.2014, 19:43
Re: Verificar se um player estб online pelo Nome. - by Wellington1999 - 18.08.2015, 03:26

Forum Jump:


Users browsing this thread: 1 Guest(s)