01.06.2010, 15:17
Hello again,
I have a little problem with my commands. I createt some help commands to help the players in my server. So I have:
/help
/help commands
/help teams
/help money
But the problem is that when I type in: /help commands it shows me the text from /help not from /help commands.
How can I set it that when I type /help commands it shows my the text from this?
I have a little problem with my commands. I createt some help commands to help the players in my server. So I have:
/help
/help commands
/help teams
/help money
But the problem is that when I type in: /help commands it shows me the text from /help not from /help commands.
How can I set it that when I type /help commands it shows my the text from this?
Код:
if(strcmp(cmd, "/help", true) == 0) { SendClientMessage(playerid, YELLOW,"General Help"); return true; } if(strcmp(cmd, "/help commands", true) == 0) { SendClientMessage(playerid, YELLOW,"Commands Help"); return true; }