Weapons with unlimited ammo? - 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: Weapons with unlimited ammo? (
/showthread.php?tid=109579)
Weapons with unlimited ammo? -
jameskmonger - 21.11.2009
Код:
SafeGivePlayerWeapon(playerid, 3, 0);
SafeGivePlayerWeapon(playerid, 24, 0);
SafeGivePlayerWeapon(playerid, 41, 0);
SafeGivePlayerWeapon(playerid, 29, 0);
This is my code, but it only gives you a nightstick. I want it to give you: A nitestick, a can of spraypaint, a desert eagle and an MP5.
Re: Weapons with unlimited ammo? -
Dark_Kostas - 21.11.2009
You need to specify the ammo too. If you give 0 ammo, that means you dont give anything.
pawn Код:
SafeGivePlayerWeapon(playerid, 3, 1);
SafeGivePlayerWeapon(playerid, 24, 99999);
SafeGivePlayerWeapon(playerid, 41, 99999);
SafeGivePlayerWeapon(playerid, 29, 99999);
Re: Weapons with unlimited ammo? -
jameskmonger - 21.11.2009
But there was a server I was playing, and you literally have unlimited ammo. It doesnt say # - # under the weapon picture either.
Re: Weapons with unlimited ammo? -
Dark_Kostas - 21.11.2009
Thats why i told you to give 99999. If you have over 9999(for digit) number of ammo, this doesnt show ammo amount.