31.05.2015, 00:20
Faзa por enum, exemplo;
pawn Код:
enum pInfo
{
Profissao
}
new PlayerInfo[MAX_PLAYERS][pInfo];
public OnPlayerCommandText(playerid, cmdtext[])
if(strcmp(cmdtext,"/minhaprofissao", true) == 0)
{
if(PlayerInfo[playerid][Profissao] == TAXISTA)
{
SendClientMessage(playerid,cor_cinza,"Ola parabens voce й taxista e dirigi um taxi");
}
else
{
SendClientMessage(playerid,cor_cinza,"Vocк nгo й taxista e nгo pode usar este comando");
}
return 1;
}