Pedido]ajuda afk
#5

No comeзo do script junto com os outros new's:

pawn Код:
new
     Float: P[3],
     sStr[32 + MAX_PLAYER_NAME],
     Afk[MAX_PLAYERS]
;

Em public OnPlayerCommandText(playerid, cmdtext[]):

pawn Код:
if(strcmp("/afk", cmdtext, true) == 0)
{
      if(Afk[playerid] == 0)
      {
            format(sStr, sizeof(sStr), "[AFK-MODE] {E31919}%s[%i] estб agora {C9C9C9}AFK!", Nome, playerid);
            SendClientMessage(playerid, 0xFFFFFFAA, sStr);
            GetPlayerPos(playerid, P[0], P[1], P[2]);
            SetPlayerPos(playerid, 0.0, 0.0, 0.0);
            SetPlayerChatBubble(playerid, "* Player AFK *", 0xFF0000FF, 100.0, 10000);
            SendClientMessage(playerid, 0xFFFFFFAA, "Vocк agora estб {C9C9C9}AFK!");
            TogglePlayerControllable(playerid, 0);
            Afk[playerid] = 1;
      }
      else if(Afk[playerid] == 1)
      {
            format(sStr, sizeof(sStr), "[AFK-MODE] {E31919}%s[%i] estб agora em {FF00FF}Modo Game!", Nome, playerid);
            SendClientMessage(playerid, 0xFFFFFFAA, sStr);
            SetPlayerPos(playerid, P[0], P[1], P[2]);
            HidePlayerChatBubble(playerid);
            SendClientMessage(playerid, 0xFFFFFFAA, "Vocк agora estб em {FF00FF}Modo Game!");
            TogglePlayerControllable(playerid, 1);
            Afk[playerid] = 0;
      }
      return 1;
}
Em qualquer parte do script, desde que nгo seje dentro de uma public (coloque no final):

pawn Код:
stock HidePlayerChatBubble(playerid)
{
    new bolha[10],x = 0;
    while(x < sizeof(bolha)) bolha[x] = '\0',x++;
    SetPlayerChatBubble(playerid, bolha, 0xFF0000FF, 100.0, true);
    return 1;
}
Atenciosamente,
Falcon.


@edit: Lуs 2 minutos mais rбpido que eu =x
Reply


Messages In This Thread
Pedido]ajuda afk - by vitorpedro - 19.09.2011, 05:04
Re: Pedido]ajuda afk - by Macintosh - 19.09.2011, 05:24
Re: Pedido]ajuda afk - by vitorpedro - 19.09.2011, 14:55
Re: Pedido]ajuda afk - by Lуs - 19.09.2011, 14:58
Re: Pedido]ajuda afk - by Falcon. - 19.09.2011, 15:00
Re: Pedido]ajuda afk - by vitorpedro - 19.09.2011, 15:54
Re: Pedido]ajuda afk - by vitorpedro - 19.09.2011, 20:21
Re: Pedido]ajuda afk - by Macintosh - 19.09.2011, 20:49

Forum Jump:


Users browsing this thread: 1 Guest(s)