[Ajuda] Msg Erro:
#4

Fiz agora, compilei e nгo apresentou erro, porйm nгo cheguei a testar.

PHP код:
/* Sistema de Anti-AFK simples
    Criador: Luan Argolo
*/

#include <a_samp>
#include <zcmd>

//Variбveis Globais
new bool:EntrouAFK[MAX_PLAYERS], Celulas[128];

stock GetarNome(playerid) {
    new 
name[MAX_PLAYER_NAME];
    
GetPlayerName(playeridnameMAX_PLAYER_NAME);
    return 
name;
}

CMD:afk(playerid) {
    if(
EntrouAFK[playerid] == false) {
        
format(Celulassizeof(Celulas), "O jogador %s entrou em AFK!"GetarNome(playerid));
        
SendClientMessageToAll(-1Celulas);
        
GameTextForPlayer(playerid"AFK!"30002);
        
EntrouAFK[playerid] = true;
        
TogglePlayerControllable(playerid0); 
    }
    else {
        
format(Celulassizeof(Celulas), "O jogador %s nгo estб mais AFK"GetarNome(playerid));
        
SendClientMessageToAll(-1Celulas);
        
EntrouAFK[playerid] = false;
        
TogglePlayerControllable(playerid1);
    }
    return 
1;
}

CMD:jogadores_afk(playerid) {
    for(new 
0MAX_PLAYERSi++) {
        if(
EntrouAFK[i] == true) {
            
format(Celulassizeof(Celulas), "Jogador %s - [AFK]"GetarNome(i));
            
SendClientMessage(playerid, -1Celulas);
        }
    }
    return 
1;

Reply


Messages In This Thread
Msg Erro: - by matheusspohr - 28.03.2015, 02:13
Re: Msg Erro: - by DiegoLeo - 28.03.2015, 04:19
Re: Msg Erro: - by #Luca[S]. - 28.03.2015, 14:40
Re: Msg Erro: - by ipsLuan - 28.03.2015, 15:01
Re: Msg Erro: - by matheusspohr - 29.03.2015, 03:25

Forum Jump:


Users browsing this thread: 1 Guest(s)