20.01.2018, 02:47
Amigo, tente usar isto:
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/trabalhar", cmdtext, true, 10) == 0)
{
if (PlayerInfo[playerid][pcaminhao] == 1)
{
SendClientMessage (playerid, laranja, "Agora Vocк й Um Caminhoneiro");
}
else
{
SendClientMessage (playerid, vermelho, "Vocк Nгo й Um Caminhoneiro");
}
return 1;
}
return 0;
}