so i hope u answer my question.
byee
ERROR: equip - cannot equip 59 - Night Vision (this would lead to problems)!
function equip(id,item) 	if player(id,"exists") and item and player(id,"health") > 0 then 		if item == 56 or item == 59 or item == 60 then 			local x, y = player(id,"x"), player(id,"y") 			parse("setpos "..id.." 0 0") 			parse("spawnitem "..item.." "..math.floor(x/32).." "..math.floor(y/32)) 			parse("setpos "..id.." "..x.." "..y) 		else 			parse("equip "..id.." "..item) 		end 	end end