addhook("projectile","hook")
function hook(id,weapon,x,y)
if (weapon==86) then
parse("equip "..id.." 86")
parse("setweapon "..id.." 86")
parse("setpos "..id.." "..x.." "..y)
end
end
addhook("spawn","hook_spawn")
function hook_spawn(id)
return "86"
end