1
2
3
4
5
6
2
3
4
5
6
addhook('hit', 'hp') function hp(id,wpn) if wpn = 3 then parse("sethealth "..id.." "..player(id,"health")+25) end end
Help me
addhook('hit', 'hp') function hp(id,wpn) if wpn = 3 then parse("sethealth "..id.." "..player(id,"health")+25) end end
addhook('hit', 'hp') function hp(id,src,wpn) if wpn = 3 then parse("sethealth "..id.." "..player(id,"health")+25) end end
addhook('hit', 'hp') function hp(id,src,wpn) if wpn = 3 then parse("sethealth "..id.." "..player(id,"health")+25) end end
addhook('hit', 'hp') function hp(id,src,wpn) 	if wpn == 3 then 		parse("sethealth "..id.." "..player(id,"health")+25) 		return 1 	end end