SA-MP Forums Archive
[Pedido] 2 Comandos - 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] 2 Comandos (/showthread.php?tid=289714)



[Pedido] 2 Comandos - wallacematheus - 12.10.2011

Queria dois comandos se alguem me ajudar agradeзo...

quero um comandos quando o player execultar esse comando mandar um global ja definido EX: player execulta o comando e manda a msg O player tal fez merda um exemplo ^^'.

O outro й um sistema de aviso so para uma org tipo /avdetran [texto] para mandar um global ...pf alguem?


Re: [Pedido] 2 Comandos - Hardware - 12.10.2011

Teste esse. Qualquer problema me avise.
pawn Код:
if(!strcmp(cmdtext,"/comando",true))
{
      new nick[24],str[128];
      GetPlayerName(playerid,nick,sizeof nick);
      format(str,sizeof str,"[SERVER] O player %s digitou o comando (%s)",nick,cmdtext);
      SendClientMessageToAll(COR,str);
      return 1;
}
Obs: Jб dou um edit e posto o de avisar tambйm.


Re: [Pedido] 2 Comandos - Lipe_Stronda - 12.10.2011

se eu entendi bem voce quer isso

!!
V

pawn Код:
if(strcmp(cmd, "/avdetran", true) == 0 || strcmp(cmd, "/avisardetran", true) == 0)
    {
        strmid(tmp, cmdtext, 4, strlen(cmdtext));
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, 0xFFFFFFFF, "Use: /avdetran [texto]");
            return 1;
        }
        if(IsPlayerConnected(playerid))
        {
            SendClientMessageToAll(-1, "{C7007E}================= {00D0FF}>- {FF0000}Aviso do Detran {00D0FF}-< {C7007E}=================");
            GetPlayerName(playerid, Nome, sizeof(Nome));
            format(string, sizeof(string), "{00A80B}Detran {FF5500}%s: {FFFFFF}%s",Nome,tmp);
            SendClientMessageToAll(0x33CCFFAA, string);
            return 1;
        }
    }