26.07.2014, 21:32
zCMD
It's written in the zCMD thread however..
How to make two different commands doing the same thing
For example, you have /something cmd:
and you want to create another one such as /another that does what /something does. The simpliest way of doing that is:
It's written in the zCMD thread however..
How to make two different commands doing the same thing
For example, you have /something cmd:
pawn Код:
COMMAND:something(playerid, params[])
{
// some stuff here
return 1;
}
pawn Код:
COMMAND:another(playerid, params[])
{
return cmd_something(playerid, params);
}