A module for Windower 4 addons to use to draw a pointed arrow @ x,y,z with a text box containing the target name and distance
Copy in Images/ and arrow.lua
-- load the modulelocalarrowmodule=require('arrow')
-- create/delete the arrow & text boxarrow.init()
arrow.destroy()
-- update the arrow point at (target_x,target_y) and-- set the text box to target_name-- Note: calls arrow.show() arrow.update(target_name,target_x,target_y)
-- show/hide the arrow & text boxarrow.show()
arrow.hide()-- loadlualoadarrowdemo-- point arrow at mob in the mob table//adpointat<mob_name>-- to stop//adstop

