15.04.2019, 23:10
Olha aн programador, vai cobrar quanto por esse comando? kkkkk
pawn Code:
CMD:r(playerid, params[])
{
if(Profissao[playerid] == 2 || Profissao[playerid] == 1 || Profissao[playerid] == 13 || Profissao[playerid] == 14 || Profissao[playerid] == 7 || Profissao[playerid] == 8)
{
new texto[128], Don[128];
if(sscanf(params, "s[128]", texto)) return SendClientMessage(playerid, -1,"{FF00FF}[PDE | COP]{FFFFFF} Use: /r [TEXTO]");
switch(Profissao[playerid])
{
case 1 .. 2:format(Don, sizeof Don, "{00FFFF}[Chat Policia Militar] %s diz: %s", GetPlayerNameEx(playerid), texto);
case 13 .. 14:format(Don, sizeof Don, "{2E8B57}[Chat Exercito] %s diz: %s", GetPlayerNameEx(playerid), texto);
{
for (new i; i < MAX_PLAYERS; i++)
{
if(Profissao[i] == 2 || Profissao[i] == 1 || Profissao[i] == 13 || Profissao[i] == 14 || Profissao[i] == 7 || Profissao[i] == 8)
{
SendClientMessage(i, -1, Don);
}
}
}
}
}
else SendClientMessage(playerid, 0xFF0000AA, "{E32636}[PDE | INFO]{FFFFFF} Voce Nao E De Nenhuma ORG.");
return true;
}