[Pedido] Comando de vip com chat de adm
#3

Nгo Seria Mas Simples Fazer Assim:
pawn Code:
forward MsgVipAdmin(COLOR,const string[],level);
pawn Code:
public MsgVipAdmin(COLOR,const string[],level)
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if (IsPlayerVip(i) || APlayerData[i][PlayerLevel] >= 1)
            {
                SendClientMessage(i, COLOR, string);
            }
        }
    }
    return 1;
}
Forma de Uso:
pawn Code:
if(strcmp(cmd, "/av", true) == 0)
{
    if(IsPlayerVip(playerid) || APlayerData[playerid][PlayerLevel] >= 1)
    {
        GetPlayerName(playerid, sendername, sizeof(sendername));
        new length = strlen(cmdtext);
        while ((idx < length) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[64];
        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result))
        {
            SendClientMessage(playerid, -1, "USE: /av [Chat Vip/Staff]");
            return 1;
        }
        if (IsPlayerVip(playerid))
        {
            format(string, sizeof(string), " VIP %s: %s", sendername, result);
            MsgVipAdmin(-1, string);
        }
        if (APlayerData[playerid][PlayerLevel] >= 1)
        {
            format(string, sizeof(string), "Administrador %s: %s", sendername, result);
            MsgVipAdmin(-1, string);
        }
    }
    return 1;
}
Bom Este Comando Nгo Esta Optimizado Pois Estou Estudando sscanf Entre Outros Meios Que Melhorem meus comandos.
Entгo e So Vocк Optimizar e Estudar o Meio que Foi Feito para Tirar sua Duvida.
Reply


Messages In This Thread
Comando de vip com chat de adm - by jinxdiamond - 16.06.2014, 16:58
Re: Comando de vip com chat de adm - by merloch - 17.06.2014, 04:28
Re: Comando de vip com chat de adm - by WendeLKILL - 17.06.2014, 16:07

Forum Jump:


Users browsing this thread: 4 Guest(s)