06.03.2019, 23:10
Por que quando sou PM e digito um texto o texto nao sai?
A funcao de PM e esta
PHP Code:
public OnPlayerText(playerid, text[])
{
if(Profissao[playerid] == Desempregado)
{
new string[128], nomej[MAX_PLAYER_NAME];
GetPlayerName(playerid, nomej, sizeof(nomej));
format(string, sizeof(string),"[Civil] %s [%d] diz: %s", nomej, playerid, text);
SendClientMessageToAll(0xFFFFFFAA, string);
{
if(1 <= Profissao[playerid] <= 2)
{
GetPlayerName(playerid, nomej, sizeof(nomej));
format(string, sizeof(string),"[PolicialMilitar] %s [%d] diz: %s", nomej, playerid, text);
SendClientMessageToAll(0x00FFFFAA, string);
}
}
}
return 0;
}
PHP Code:
if(1 <= Profissao[playerid] <= 2)