13.04.2019, 18:24
Por que quando eu digito por exemplo:
A mensagem sу aparece pra min? Queria que ele aparecesse pra quem e Policial.
Funзгo policia:
Quote:
/r Bom Dia Soldados! |
PHP 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);
}
SendClientMessage(playerid, -1, Don);
}
else SendClientMessage(playerid, 0xFF0000AA, "{E32636}[PDE | INFO]{FFFFFF} Voce Nao E De Nenhuma ORG.");
return true;
}
PHP Code:
if(Profissao[playerid] == 2 || Profissao[playerid] == 1 || Profissao[playerid] == 13 || Profissao[playerid] == 14 || Profissao[playerid] == 7 || Profissao[playerid] == 8)