Forum
Scripts
Infinite SECONDARY ammo
Infinite SECONDARY ammo
3 replies
1

infinite clip (no reload):
1
2
3
4
5
6
7
2
3
4
5
6
7
addhook("attack", "_attack")
function _attack(id)
if itemtype(player(id, "weapontype"), "slot") == 2 then
parse("equip "..id.." "..player(id, "weapontype"))
end
end
infinite clips (reload):
1
2
3
4
5
6
7
2
3
4
5
6
7
addhook("reload", "_reload")
function _reload(id, mode)
if itemtype(player(id, "weapontype"), "slot") == 2 and mode == 2 then
parse("equip "..id.." "..player(id, "weapontype"))
end
end
edited 2×, last 24.08.13 11:01:06 pm
Apache uwu:
1
2
3
4
5
6
7
2
3
4
5
6
7
addhook("reload","_reload")
function _reload(id,mode)
	local wpn = player(id,"weapontype")
	if mode == 2 and (wpn >= 1 and wpn <= 6) then
		parse("equip "..id.." "..wpn)
	end
end
1

Offline