varna.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : varna.lua
  3. Script Purpose : Waypoint Path for varna.lua
  4. Script Author : Devn00b
  5. Script Date : 07/31/2020 07:33:58 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 576.58, -18.16, -412.9, 2, math.random(0,8))
  18. MovementLoopAddLocation(NPC, 584.56, -18.17, -411.61, 2, math.random(0,8))
  19. MovementLoopAddLocation(NPC, 617.12, -15.75, -407.56, 2, math.random(0,8))
  20. MovementLoopAddLocation(NPC, 650.63, -11.51, -399.8, 2, math.random(0,8))
  21. MovementLoopAddLocation(NPC, 644.41, -12.48, -372.51, 2, math.random(0,8))
  22. MovementLoopAddLocation(NPC, 642.47, -20.05, -313.95, 2, math.random(0,8))
  23. MovementLoopAddLocation(NPC, 644.41, -12.48, -372.51, 2, math.random(0,8))
  24. MovementLoopAddLocation(NPC, 650.63, -11.51, -399.8, 2, math.random(0,8))
  25. MovementLoopAddLocation(NPC, 617.12, -15.75, -407.56, 2, math.random(0,8))
  26. MovementLoopAddLocation(NPC, 584.56, -18.17, -411.61, 2, math.random(0,8))
  27. MovementLoopAddLocation(NPC, 576.58, -18.16, -412.9, 2, math.random(0,8))
  28. end