+rep - 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: +rep (
/showthread.php?tid=541900)
+rep -
ManGoe - 15.10.2014
How to make a /resetweapons command?
Re: +rep -
Berzerk - 15.10.2014
Do you want to reset weapons of the player that is typing the command, or you wanna make admin command to remove other people's weapons?
Re: +rep -
gurmani11 - 15.10.2014
pawn Код:
//use zcmd command processor include
CMD:disarm(playerid,params[])
{
ResetPlayerWeapons(playerid);
return 1;
}