10.04.2015, 00:26
Ai galera eu to criando um servidor do zero( no Bare do sa-mp mesmo), bom, eu criei alguns comandos, mas quando eu vo no server os comandos nao funcionam, alguem pd ajuda?
public OnPlayerCommandText(playerid, cmdtext[]) { new idx; new cmd[256]; cmd = strtok(cmdtext, idx); if(strcmp("/armas", cmdtext, true) == 0) { ShowPlayerDialog(playerid, DIALOG_WEAPON, DIALOG_STYLE_LIST, "Weapon", "Pistol\nShotgun\nSub-MechineGun\nAssault\nSniper", "Choose", "Cancel"); return 1; } if(strcmp(cmdtext,"/minhaprofissao", true) == 0) { if(Profissao[playerid] == Lixeiro) { SendClientMessage(playerid, Amarelo,"MSG"); } else { SendClientMessage(playerid, COLOR_RED,"Vocк nгo pode usar esse comando"); } if(Profissao[playerid] == Taxista) { SendClientMessage(playerid, Amarelo,"MSG"); } return 1; } return 0; } } |