28.01.2016, 08:10
Hi, I using LIFE-CMD, I added in my gamemode 2-3 commands, working, but server says "SERVER: Unknown command.".
1. I put commands at gm finish.
2. I put "return 1;" at each command.
3. I try with another command processor but only time, the same problem.
So, what is the problem?
Example of command of my gamemode:
1. I put commands at gm finish.
2. I put "return 1;" at each command.
3. I try with another command processor but only time, the same problem.
So, what is the problem?
Example of command of my gamemode:
Код:
CMD:jobs(playerid, params[]) { new string[100]; strcat(string, "Trucker\t$$$\n"); ShowPlayerDialog(playerid, DIALOG_JOBS, DIALOG_STYLE_LIST, "Jobs", string, "Select", "Exit"); return 1; }