25.08.2013, 20:53
Quote:
|
Command_AddAltNamed(old[], altname[]) - Adds an alternate spelling for a command by name
Код:
public OnGameModeInit()
{
...
Command_AddAltNamed("help", "h");
...
return 1;
}
...
YCMD:help(playerid, params[], help)
{
...
return 1;
}
|
- There is no simpler way? Because I have a lot of commands in ZCMD and now I need move all this? ...
Anyway thanks!
Edit:
I forgot to ask ..
What is the parameter of the help I did not understand it :/


