SA-MP Forums Archive
[PEDIDO] CMD de Anъncio - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [PEDIDO] CMD de Anъncio (/showthread.php?tid=230402)



[PEDIDO] CMD de Anъncio - [AF]Junior - 23.02.2011

Eu procurei em tudo o que existe nesse mundo search, ******, baixei gms e tal vim com bugs aqui e nгo conseguiram me ajudar...

Eu queria um simples comando igual ao /rcon say sу que com o nome do admin...

Exemplo:

/av [texto]
**Admin Junior: testando testando...


Digitei /av digitei o testando testando... e aparece assim, e o Junior й o nick que eu tф no servidor.
Como faзo isso?

Por favor, to precisando muito desse cmd


Re: [PEDIDO] CMD de Anъncio - [Ips]Guh - 23.02.2011

SendClientMessageToAll...


Re: [PEDIDO] CMD de Anъncio - bruno-style - 23.02.2011

Fiz um /av Bem legal todo seu:

pawn Код:
if(strcmp(cmd, "/avisar", true) == 0 || strcmp(cmd, "/av", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
          if(IsPlayerAdmin(playerid))//Tem que estar logado da RCON :D
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й um Admin!");
                return 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, COLOR_GRAD2, "{02EDE}USE: {02EDED}(/av)isar [TEXTO]");
                return 1;
            }
            SendClientMessageToAll(COLOR_DBLUE, "{02EDED}|_____________{FF0037}Aviso Do Admin{02EDED}_____________|");
            format(string, sizeof(string), "{046DB3}***{FF0037}Admin: {{02EDED}%s {FF00BF}ID:[{02EDED}%d]: {02EDED}%s", sendername, playerid, result);
            SendClientMessageToAll(0x33FF00FF, string);
        }
        return 1;
    }
Espero Ter Ajudado


Re: [PEDIDO] CMD de Anъncio - [AF]Junior - 23.02.2011

Valeu bruno, deu uns erros mas arrumei todos, testei e funcionou perfeitamente.

Obrigadъuuuuuuuuu!


Re: [PEDIDO] CMD de Anъncio - bruno-style - 23.02.2011

Quote:
Originally Posted by [AF]Junior
Посмотреть сообщение
Valeu bruno, deu uns erros mas arrumei todos, testei e funcionou perfeitamente.

Obrigadъuuuuuuuuu!
Denada, xD

Se em seu servidor tiver sistema de Admins voce coloca no lugar de if(IsPlayerAdmin(playerid)) voce coloca:

pawn Код:
if (PlayerInfo[playerid][pAdmin] >= 1)//Se o seu sistema nao for pAdmin voce coloca o que For xD
Espero ter ajudado denovo


Re: [PEDIDO] CMD de Anъncio - steki. - 23.02.2011

Vocк nгo fez aquilo mentiroso.


Re: [PEDIDO] CMD de Anъncio - Ricop522 - 23.02.2011

Aham, senta lб que vocк que fez.
pawn Код:
if(strcmp(cmd,"/av",true) == 0 || strcmp(cmd,"/avisar",true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
          if(!IsPlayerAdmin(playerid))//BURRO! NГO COLOCOU !IsPlayerAdmin
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й um Admin!");
                return 1;
            }
            new sendername[MAX_PLAYER_NAME];
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new result[128];
            result = strtok(cmdtext, idx);
        if(!strlen(result))
        {
          SendClientMessage(playerid, 0xFFFFFF, "ERROR: Use /av [Texto]");
                  return 1;
        }
            SendClientMessageToAll(COLOR_DBLUE, "{02EDED}|_____________{FF0037}Aviso Do Admin{02EDED}_____________|");
            format(string, sizeof(string), "{046DB3}***{FF0037}Admin: {{02EDED}%s {FF00BF}ID:[{02EDED}%d]: {02EDED}%s", sendername, playerid, result);
            SendClientMessageToAll(0x33FF00FF, string);
        }
        return 1;
    }



Re: [PEDIDO] CMD de Anъncio - steki. - 23.02.2011

nem fudendo que ele fez isso, olha os fs e os tutos dele ¬¬


Re: [PEDIDO] CMD de Anъncio - [AF]Junior - 23.02.2011

Quote:
Originally Posted by bruno-style
Посмотреть сообщение
Denada, xD

Se em seu servidor tiver sistema de Admins voce coloca no lugar de if(IsPlayerAdmin(playerid)) voce coloca:

pawn Код:
if (PlayerInfo[playerid][pAdmin] >= 1)//Se o seu sistema nao for pAdmin voce coloca o que For xD
Espero ter ajudado denovo
Jб sei disso, nгo sou burro...

E os 2 aн vamo parar de arranjar confusгo. Tуpico tб resolvido.