[Pedido] Chat Command do PPC_Trucking
#1

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
Reply
#2

Aquele que aparece os comandos que os players usam?
Reply
#3

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

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.
Reply
#5

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


Forum Jump:


Users browsing this thread: 1 Guest(s)