ward.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : ward.lua
  3. Script Purpose : Waypoint Path for ward.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 07:14:21 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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 516.21, -9.57, 127.12, 2, 0)
  19. MovementLoopAddLocation(NPC, 520.3, -9.56, 131.57, 2, 0)
  20. MovementLoopAddLocation(NPC, 528.81, -9.56, 132.14, 2, 0)
  21. MovementLoopAddLocation(NPC, 539.78, -9.56, 130.42, 2, 0)
  22. MovementLoopAddLocation(NPC, 546.81, -8.54, 130.56, 2, 0)
  23. MovementLoopAddLocation(NPC, 546.72, -6.55, 121.26, 2, 0)
  24. MovementLoopAddLocation(NPC, 541.75, -5.55, 121.25, 2, 0)
  25. MovementLoopAddLocation(NPC, 541.86, -3.5, 127.97, 2, 0)
  26. MovementLoopAddLocation(NPC, 530.14, -3.5, 128.28, 2, 0)
  27. MovementLoopAddLocation(NPC, 511.74, -3.48, 126.13, 2, 0)
  28. MovementLoopAddLocation(NPC, 530.14, -3.5, 128.28, 2, 0)
  29. MovementLoopAddLocation(NPC, 541.86, -3.5, 127.97, 2, 0)
  30. MovementLoopAddLocation(NPC, 541.75, -5.55, 121.25, 2, 0)
  31. MovementLoopAddLocation(NPC, 546.72, -6.55, 121.26, 2, 0)
  32. MovementLoopAddLocation(NPC, 546.81, -8.54, 130.56, 2, 0)
  33. MovementLoopAddLocation(NPC, 539.78, -9.56, 130.42, 2, 0)
  34. MovementLoopAddLocation(NPC, 528.81, -9.56, 132.14, 2, 0)
  35. MovementLoopAddLocation(NPC, 520.3, -9.56, 131.57, 2, 0)
  36. MovementLoopAddLocation(NPC, 516.21, -9.57, 127.12, 2, 0)
  37. end