10.12.2012, 19:49
Change them so that there is no space between the cmd and it's params, then just change the retun cmd_carengine(playerid, params); to the name of your command.
For example, if you want to add another thing to /car lights, it would be:
CMD:lights(playerid, params[])
{
return cmd_carlights(playerid, params);
}
Just copy and paste this example and change it for all your commands.
For example, if you want to add another thing to /car lights, it would be:
CMD:lights(playerid, params[])
{
return cmd_carlights(playerid, params);
}
Just copy and paste this example and change it for all your commands.

