[Ajuda] Como bloquear o comando ao ficar afk ?
#1

Ai galera vim pedir ajuda a vocкs para quando o jogador ficar AFK ele nгo poder usar nenhum comando, exceto o /online .


pawn Код:
CMD:afk(playerid,params[])
    {
    if(AFK[playerid] ==0)
    {
    new string[128];
    format(string,sizeof(string),"( AFK ) O jogador %s (%d) foi bloqueado de upar por ficar longe do teclado!", PlayerName(playerid), playerid);
    SendClientMessageToAll(0x00FF00AA, string);
    for(new i = 0; i < 100; i++)
    SendClientMessage(playerid,-1,"");
    TextDrawShowForPlayer(playerid, TDAFK);
    TextDrawShowForPlayer(playerid, TDAFK1);
    TextDrawShowForPlayer(playerid, TDAFK2);
    TextDrawShowForPlayer(playerid, TDAFK3);
    AFK[playerid] =1;
    SetPlayerHealth(playerid, 99999);
    TogglePlayerControllable(playerid, 0);
    }else{
    SendClientMessage(playerid,0xFF6347AA,"(ERRO) Vocк ja estб ausente (AFK).");
    return 1;
    }
    return 1;
    }
    CMD:online(playerid,params[])
    {
    if(AFK[playerid] ==1)
    {
    new string[128];
    format(string,sizeof(string),"( ON ) O jogador %s (%d) estб online novamente!", PlayerName(playerid), playerid);
    SendClientMessageToAll(0x00FF00AA, string);
    TextDrawHideForAll(TDAFK);
    TextDrawHideForAll(TDAFK1);
    TextDrawHideForAll(TDAFK2);
    TextDrawHideForAll(TDAFK3);
    AFK[playerid] =0;
    SetPlayerHealth(playerid, 100);
    TogglePlayerControllable(playerid, 1);
    }else{
    SendClientMessage(playerid,0xFF6347AA,"(ERRO) Vocк nгo estб ausente (AFK).");
    return 1;
    }
    return 1;
    }
Reply


Messages In This Thread
Como bloquear o comando ao ficar afk ? - by clerISoN - 17.06.2013, 23:20
Re: Como bloquear o comando ao ficar afk ? - by AlucardSnow - 17.06.2013, 23:26
Re: Como bloquear o comando ao ficar afk ? - by -GooGle- - 17.06.2013, 23:29
Re: Como bloquear o comando ao ficar afk ? - by Lucas_Pawno - 17.06.2013, 23:41
Re: Como bloquear o comando ao ficar afk ? - by Gii - 17.06.2013, 23:49
Re: Como bloquear o comando ao ficar afk ? - by clerISoN - 18.06.2013, 02:12
Re: Como bloquear o comando ao ficar afk ? - by bruxo00 - 18.06.2013, 09:56
Re: Como bloquear o comando ao ficar afk ? - by Lucas_Pawno - 18.06.2013, 11:35
Re: Como bloquear o comando ao ficar afk ? - by clerISoN - 18.06.2013, 15:51

Forum Jump:


Users browsing this thread: 2 Guest(s)