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=243477)



/help command - IvancheBG - 23.03.2011

How to make a /help command to show all teleports and others


Re: /help command - HyperZ - 23.03.2011

OnPlayerCommandText:
pawn Код:
if (strcmp("/help", cmdtext, true, 10) == 0)
{
    SendClientMessage(playerid, -1,"bla bla bla");
    SendClientMessage(playerid, -1,"bla bla bla");
    SendClientMessage(playerid, -1,"bla bla bla");
    SendClientMessage(playerid, -1,"bla bla bla");
    SendClientMessage(playerid, -1,"bla bla bla");
    return 1;
}
Check this also: https://sampwiki.blast.hk/wiki/OnPlayerCommandText


Re: /help command - IvancheBG - 23.03.2011

thanks