SA-MP Forums Archive
Help command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help command (/showthread.php?tid=163492)



Help command - a!DaN)_)-) - 27.07.2010

Hey can someone help me how to make a help command which shows different commands


so the command will be /help


and it will show
Adminhouse-/lvh
Chillout place in San Feirro-/chillout
Chillout place in Pershing Square-/skywalk

who ever helps me do this i will obviosly put there credits

Please help me
Thanks XD


Re: Help command - mastasquizy - 27.07.2010

pawn Код:
if(!strcmp(cmdtext,"/help"))
{
    SendClientMessage(playerid,0xFF0000AA,"Adminhouse - /lvh");
    SendClientMessage(playerid,0x0000FFAA,"Chillout place in SF - /chillout");
    SendClientMessage(playerid,0x00FF00AA,"Chillout place in Pershing Square - /skywalk");
    return 1;
}
Somebody had to do this.........so..your welcome xDDD
and learn from this too so you don't have to ask "elementary" questions....


Re: Help command - a!DaN)_)-) - 28.07.2010

thanks man XD