16.04.2013, 17:10
Tente:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext,"/Sertaxista", true) == 0)
{
if(Profissao[playerid] == 0)
{
SendClientMessage(playerid,0xB360FDFF,"Ola parabens voce й taxista e dirigi um taxi");
}
else
{
SendClientMessage(playerid,0xB360FDFF,"Vocк nгo й taxista e nгo pode usar este comando");
}
return true;
}
if(strcmp(cmdtext,"/Sermecanico", true) == 0)
{
if(Profissao[playerid] == 1)
{
SendClientMessage(playerid,0xB360FDFF,"Ola parabens voce й taxista e dirigi um taxi");
}
else
{
SendClientMessage(playerid,0xB360FDFF,"Vocк nгo й taxista e nгo pode usar este comando");
}
return 1;
}
return 0;
}