09.12.2016, 15:29
PHP код:
CMD:transportarvalores(playerid)
{
if(Profissao[playerid] == CarroForte)
{
SendClientMessage(playerid, -1, "Vocк Executou O Primeiro Comando!");
} else {
SendClientMessage (playerid, -1, " Vocк nгo tem permissгo!");
}
return 1;
}
PHP код:
CMD:transportarvalores(playerid)
{
if(Profissao[playerid] != CarroForte) return SendClientMessage (playerid, -1, " Vocк nгo tem permissгo!");
// Resto do comando..
return true;
}