19.08.2015, 23:15
Hey guys Imade a help menu for my server and I logged into my server just to see if everything was fine with my script but unfortunately I found something wrong. My help menu isn't working, when I type /help the server sends this message the message «Unknow command...». Could you help me out ?
Here's the /help command script :
Here's the /help command script :
Код:
public OnPlayerCommandText(playerid, cmdtext[]) { if(!strcmp(cmdtext,"/help")) { ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Help Panel", "To see the Commands Panel, type /commands", "Close", ""); return 1; } return 0; }