1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
wn={} wn.weapon_names={ 	[10]="Pump-Action Shotgun", 	[11]="Auto Shotgun", } addhook("hit","wn.hit") function wn.hit(id,source,weapon,hpdmg,apdmg) 		if player(id,"health")-hpdmg<=0 then 			if wn.weapon_names[weapon]~=nil then 				parse("customkill "..source.." \""..wn.weapon_names[weapon].."\" "..id) 				return 1 			end 		end 		end