01.10.2014, 12:37
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
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);
}
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;
}