Forum

> > CS2D > Scripts > 50% mehr chance mit heavy armor?
Forums overviewCS2D overview Scripts overviewLog in to reply

German 50% mehr chance mit heavy armor?

4 replies
To the start Previous 1 Next To the start

old 50% mehr chance mit heavy armor?

francis007
BANNED Off Offline

Quote
Hi Unrealsoftware!

Ich brauch ein Script für mein Server. Ich möchte das Laser 50% von leben abzieht aber NUR mit heavy armor und NICHT von bau Sachen.

Ich glaub das macht man mit damage hook aber ich kenn mich mit scripten garnicht aus

200 = -50% von Heavy Armor

1
parse('mp_wpndmg laser 200')

Danke!

old Re: 50% mehr chance mit heavy armor?

omg
User Off Offline

Quote
1
2
3
4
5
6
7
8
9
10
11
addhook("hit","Xd")
function Xd(id,source,weapon)
	if weapon==45 and player(id,"armor")==203 then
		if player(id,"hp")<=50 then
			parse("customkill "..source.." Laser "..id)
		else
			parse("sethealth "..id.." "..player(id,"health")-50)
		end
		return 1
	end
end

old Re: 50% mehr chance mit heavy armor?

francis007
BANNED Off Offline

Quote
Ich hab ein error

Spoiler >
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview