Posts: 2,938
Threads: 162
Joined: May 2010
how to make a help command
Posts: 154
Threads: 31
Joined: Oct 2009
Reputation:
0
heres a simple help command in zcmd not sure what your using
COMMAND:help(playerid,params[])
{
#pragma unused params
SendClientMessage(playerid, 0x33AA33AA, "-----------Help:-----------");
SendClientMessage(playerid, 0xB8860BAA, "Example below change this also .");
SendClientMessage(playerid, 0x33AA33AA, "/cmds == Shows The Commands");
SendClientMessage(playerid, 0x33AA33AA, "/Teles == Shows The List Of Teleports");
SendClientMessage(playerid, 0x33AA33AA, "/Rules == Shows The List Of Rules");
SendClientMessage(playerid, 0x33AA33AA, "/cars == Lets You Pick A Car");
SendClientMessage(playerid, 0x33AA33AA, "/animlist == Shows Ther List Of Animations ");
SendClientMessage(playerid, 0x33AA33AA, "Press 2 == Press 2 and it fixes your car ");
return 1;
}