** Version : beta 0.4 **
Author : MagNuM
Special Thanks : Vectar666, Textual Context
Only works if Friendly Fire is off.
Does not work in a death match mode.
edited 4×, last 17.10.11 10:59:46 am
Approved by GeoB99
Download
1,015 b, 678 Downloads
addhook("hit","cs_hit") function cs_hit(id,source,weapon) 	if weapon==72 or weapon==73 then 		if game("sv_friendlyfire")=="0" then 			if player(id,"team")==player(source,"team") then 				return 1 			end 		end 	end end