[Pedido/Ajuda] Comando /report
#3

Tenta:

pawn Код:
if(strcmp(cmd,"/report",true) == 0 || strcmp(cmd, "/reportar", true) == 0)
{
    SendClientMessage(playerid,COLOR_GREY,"Seu report foi enviado aos administradores.");
   for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i))
        {
        if(IsPlayerAdmin(i))
            {

            GetPlayerName(playerid, NomePlayer, sizeof(NomePlayer));
            if(!strlen(cmdtext)) return SendClientMessage(playerid, COLOR_GREY, "Use: /report [id] [motivo]");
             format(string, sizeof(string), "[REPORT] Foi reportado por %s[ID: %d] Motivo: %s ",NomePlayer, playerid, reason[9]);
            SendClientMessage(i, COLOR_ORANGE, string);
            }
        }
    }
 
    return 1;
}
Ou:

pawn Код:
if(strcmp(cmd,"/report",true) == 0 || strcmp(cmd, "/reportar", true) == 0)
{
    SendClientMessage(playerid,COLOR_GREY,"Seu report foi enviado aos administradores.");
   for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i))
        {
        if(IsPlayerAdmin(i))
            {
             strmid(reason,reson,9,strlen(reason));
            GetPlayerName(playerid, NomePlayer, sizeof(NomePlayer));
            if(!strlen(cmdtext)) return SendClientMessage(playerid, COLOR_GREY, "Use: /report [id] [motivo]");
        format(string, sizeof(string), "[REPORT] Foi reportado por %s[ID: %d] Motivo: %s ",NomePlayer, playerid, reason);
            SendClientMessage(i, COLOR_ORANGE, string);
            }
        }
    }
 
    return 1;
}
Ou

pawn Код:
if(strcmp(cmd,"/report",true) == 0 || strcmp(cmd, "/reportar", true) == 0)
{
    SendClientMessage(playerid,COLOR_GREY,"Seu report foi enviado aos administradores.");
   for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i))
        {
        if(IsPlayerAdmin(i))
            {
             strdel(reason, 0,9);
            GetPlayerName(playerid, NomePlayer, sizeof(NomePlayer));
            if(!strlen(cmdtext)) return SendClientMessage(playerid, COLOR_GREY, "Use: /report [id] [motivo]");
        format(string, sizeof(string), "[REPORT] Foi reportado por %s[ID: %d] Motivo: %s ",NomePlayer, playerid, reason);
            SendClientMessage(i, COLOR_ORANGE, string);
            }
        }
    }
 
    return 1;
}
Reply


Messages In This Thread
[Pedido/Ajuda] Comando /report - by Fabricio_Rios - 23.11.2010, 01:42
Re: [Pedido/Ajuda] Comando /report - by [Ips]Guh - 23.11.2010, 12:20
Respuesta: [Pedido/Ajuda] Comando /report - by ipsBruno - 23.11.2010, 12:32

Forum Jump:


Users browsing this thread: 1 Guest(s)