How to edit commands GM ? - 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)
+--- Thread: How to edit commands GM ? (
/showthread.php?tid=518801)
How to edit commands GM ? -
lorenkid - 11.06.2014
How to edit commands ?
Please
Re: How to edit commands GM ? -
xGamerFx - 11.06.2014
by using CMD: or OnPlayerCommandText, but CMD: is recommended , download the include "zcmd" by zeek
Re: How to edit commands GM ? -
MBilal - 11.06.2014
if You use Zcmd
PHP код:
CMD:healme(playerid, params[])
{
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid, COLOR_KRED, "You Healed Yourself!");
return 1;
}