22.07.2013, 20:46
Quote:
Muito obrigado, me ajudou muito, mas vocк saberia como fazer aparecer uma tabela com os comandos de profissгo invez de aparecer no chat os comandos?
|
Topo do GM
pawn Код:
//OBS se a dialogid 45 jб existir, altere 45 para um id de dialog nгo existente em seu gm
#define D_AJUDAPROF 45
pawn Код:
if(strcmp(cmdtext, "/ajudaemprego", true) == 0) {
new aname[MAX_PLAYER_NAME], D_AJUDAPROF;
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(dini_Int(file, "Profissao") == Desempregado){
SendClientMessage(playerid, Verde,"Desempregado");
}
if(dini_Int(file, "Profissao") == MTriad){
ShowPlayerDialog(playerid, D_AJUDAPROF, DIALOG_STYLE_MSGBOX, "COMANDOS PROFISSAO", "/venderak [id] \n/venderm4 [id] \n/venderswanoff [id] \n/vendersniper [id] \n/vendersniper [id] \n/vendertec [id] \n/plantarbomba \n/cp - Chat Profissгo.\n/assaltar - Vб ate o Banco e assalte.", "OK", "");
}