When a turret killed by Ts there should be a message.
and when a turret killed by CTs there should be a message too

addhook('objectkill', 'objkill_') function objkill_(obj, id) if object(obj, 'type') == 8 then local str = (player(id, 'team') == 1 and "TERRORIST MESSAGE" or "CT MESSAGE" ) msg(str) 	 end end