I need to get his:
- X and Y
- ID
- Name
- Team
Scripts
Find player who alt-attacked.
Find player who alt-attacked.
1

player for the rest:addhook("attack2","youAreHigh")
function youAreHigh(id, mode)
	local x = player(id,"x")
	local y = player(id,"y")
	local name = player(id,"name")
	local team = player(id,"team")
	local wpn = player(id,"weapontype")
	msg(name.." wanted to test his new "..wpn..". Hopefully he doesnt kill any "..team.." on "..x.." / "..y)
end
attack2 )
1
