05.02.2014, 16:55
Hello. This command is working but it sending me also Unknown command message. Other commands work perfectly. So what's wrong? And when ShowPlayerDialog is outside the loop, why variable eqpt has no value after loop so it won't show dialog.
Код:
dcmd_class(playerid,params[]) { #pragma unused params new eqpt[128],eqp[32]; for(new i;i<=5;i++) { format(eqp,sizeof(eqp),"%s\n",ClassName[i][playerid]); strcat(eqpt,eqp); ShowPlayerDialog(playerid,1,DIALOG_STYLE_LIST,"Class selection",eqpt,"Select",""); } return 1; }