Forum

> > CS2D > General > [REQUEST] Remove RPG + Armor LUA Script
Forums overviewCS2D overviewGeneral overviewLog in to reply

English [REQUEST] Remove RPG + Armor LUA Script

6 replies
To the start Previous 1 Next To the start

old [REQUEST] Remove RPG + Armor LUA Script

Marijuana
User Off Offline

Quote
If anyone has a script to remove the RPGs and the Armors from the Super Supply, or something similar, please, share it with us.

Right now, I'm banning anyone who has an RPG or even armor.

My ban list is overflowing.

old Re: [REQUEST] Remove RPG + Armor LUA Script

Flacko
User Off Offline

Quote
This will remove RPGs and armors from floor when a player tries to pick them up.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
addhook("walkover","_walkover")
function _walkover(id,iid,typ)
	if typ == 47 or typ == 80 then --rpg and armor
		parse("removeitem "..iid)
		return 1
	end
end

addhook("second","_second")
function _second()
	local t = item(0,"table")
	for i=1,#t do
		local typ = item(t[i],"type")
		if typ == 47 or typ == 80 then
			parse("removeitem "..t[i])
		end
	end
end

old Re: [REQUEST] Remove RPG + Armor LUA Script

Time
User Off Offline

Quote
@Crazyx
Yes, I noticed. Also, on some servers the RPG damage was simply set to 0. But SS were still used for the armor.

This was probably DC's worst idea ever, but it could be fixed easily if he implemented a server setting, something like: 'No Super Supply'.

old Re: [REQUEST] Remove RPG + Armor LUA Script

Slater
User Off Offline

Quote
Err... you can self build a Super Suplly... get it ??... and its really light to Take them Down... RPG have only 3 Ammo... then you can kill them... and the Upgrade Time for that is Very Big... go to other Serven when there Infammo on and try to "Communicate" with your Teammates to make a Plan
To the start Previous 1 Next To the start
Log in to replyGeneral overviewCS2D overviewForums overview