Forum

> > CS2D > General > [REQUEST] Remove RPG + Armor LUA Script
ForenübersichtCS2D-ÜbersichtGeneral-ÜbersichtEinloggen, um zu antworten

Englisch [REQUEST] Remove RPG + Armor LUA Script

6 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

alt [REQUEST] Remove RPG + Armor LUA Script

Marijuana
User Off Offline

Zitieren
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.

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

Flacko
User Off Offline

Zitieren
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

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

Time
User Off Offline

Zitieren
@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'.

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

Slater
User Off Offline

Zitieren
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
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antwortenGeneral-ÜbersichtCS2D-ÜbersichtForenübersicht