SA-MP Forums Archive
[Pedido] Chat Command do PPC_Trucking - 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] Chat Command do PPC_Trucking (/showthread.php?tid=539930)



Chat Command do PPC_Trucking - DarthVeider - 01.10.2014

bom dia, " tarde, " noite,eu queria aquele chat command que tem no gm ppc_trucking pois eu estou criando uma gm e nгo sei bem como fazer serб que vocкs podem me ajudar,desde ja agradeзo


Re: Chat Command do PPC_Trucking - GHLEMES - 01.10.2014

Aquele que aparece os comandos que os players usam?


Re: Chat Command do PPC_Trucking - DarthVeider - 01.10.2014

Quote:
Originally Posted by GHLEMES
Посмотреть сообщение
Aquele que aparece os comandos que os players usam?
Sim pois tentei fazer mais nгo consegui


Re: Chat Command do PPC_Trucking - GHLEMES - 02.10.2014

Use o do PPC mesmo

Coloque na PPC_Common:
pawn Код:
SendAdminText(playerid, command[], text[])
{
    new Name[24], Msg[128];
    for (new i; i < MAX_PLAYERS; i++)
    {
        if (APlayerData[i][PlayerLevel] > 0)
        {
            GetPlayerName(playerid, Name, sizeof(Name));
            format(Msg, 128, "{FFFFFF}»»» %s usou o comando{00FF00} %s %s

"
, Name, command, text);
            SendClientMessage(i, 0xFFFFFFFF, Msg);
        }
    }
    format(Msg, 128, "%s : %s %s", Name, command, text);
    print(Msg);
}
E depois Adicione no Comando:
[/pawn] SendAdminText(playerid, "/MEUCMD", params); [/pawn]

Exemplo:
pawn Код:
CMD:MEUCMD(playerid, params[])
{
SendAdminText(playerid, "/MEUCMD", params);//Mensagem sу vai aparecer para ADMs

SendClienteMessage(playerid, -1, "Oi");//Mensagem pra que digitar /MEUCMD
return 1;
}
Nгo foi eu que fiz, somente peguei o que tava pronto e mostrei a vocк como usar.


Re: Chat Command do PPC_Trucking - DarthVeider - 02.10.2014

muito obrigado me ajudou muito este code estava tomando muito meu tempo