wyrmdon.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : wyrmdon.lua
  3. Script Purpose : Waypoint Path for wyrmdon.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 02:14:17 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, 936.72, -25.56, 72.05, 2, 30)
  19. MovementLoopAddLocation(NPC, 925.65, -25.56, 66.65, 2, 0)
  20. MovementLoopAddLocation(NPC, 910.81, -25.36, 84.67, 2, 0)
  21. MovementLoopAddLocation(NPC, 925, -25.49, 46.95, 2, 0)
  22. MovementLoopAddLocation(NPC, 931.56, -25.59, 29.07, 2, 0)
  23. MovementLoopAddLocation(NPC, 921.12, -25.48, 21.05, 2, 0)
  24. MovementLoopAddLocation(NPC, 901.38, -25.47, 41.4, 2, 0)
  25. MovementLoopAddLocation(NPC, 937.28, -25.56, 67.34, 2, 60)
  26. MovementLoopAddLocation(NPC, 901.38, -25.47, 41.4, 2, 0)
  27. MovementLoopAddLocation(NPC, 921.12, -25.48, 21.05, 2, 0)
  28. MovementLoopAddLocation(NPC, 931.56, -25.59, 29.07, 2, 0)
  29. MovementLoopAddLocation(NPC, 925, -25.49, 46.95, 2, 0)
  30. MovementLoopAddLocation(NPC, 910.81, -25.36, 84.67, 2, 0)
  31. MovementLoopAddLocation(NPC, 925.65, -25.56, 66.65, 2, 0)
  32. MovementLoopAddLocation(NPC, 936.72, -25.56, 72.05, 2, 60)
  33. end