DreadGuard1.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --[[
  2. Script Name : SpawnScripts/Neriak/DreadGuard1.lua
  3. Script Purpose : Waypoint Path for Dread Guard 1 Indigo Hollow
  4. Script Author : Cynnar
  5. Script Date : 5/6/2018 12:00:00 AM
  6. Script Notes : This is the Dread Guard starting at Ulsurus Outfitters Neriak Indigo Hollow.
  7. --]]
  8. function spawn(NPC)
  9. SetMount(NPC, 7242)
  10. SetMountColor(NPC, 65, 52, 44, 58, 59, 151)
  11. waypoints(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. end
  18. function randmount(NPC)
  19. local choice = math.random(1, 2)
  20. if choice == 1 then
  21. end
  22. end
  23. function waypoints(NPC)
  24. MovementLoopAddLocation(NPC, -76.72, 19.22, -13.5, 2, 0)
  25. MovementLoopAddLocation(NPC, -66.55, 18.88, -4.41, 2, 0)
  26. MovementLoopAddLocation(NPC, -58.37, 19.55, 9.24, 2, 0)
  27. MovementLoopAddLocation(NPC, -54.28, 19.31, 22.95, 2, 0)
  28. MovementLoopAddLocation(NPC, -44.18, 19.48, 21.32, 2, 0)
  29. MovementLoopAddLocation(NPC, -35.54, 19.76, 16.93, 2, 0)
  30. MovementLoopAddLocation(NPC, -26.87, 17.32, 9.09, 2, 0)
  31. MovementLoopAddLocation(NPC, -19.17, 17.32, 10.39, 2, 0)
  32. MovementLoopAddLocation(NPC, -9.98, 17.3, 11.96, 2, 0)
  33. MovementLoopAddLocation(NPC, 7.91, 17.3, 2.53, 2, 0)
  34. MovementLoopAddLocation(NPC, 19.27, 17.06, 6.88, 2, 0)
  35. MovementLoopAddLocation(NPC, 33.87, 16.95, -5.79, 2, 0)
  36. MovementLoopAddLocation(NPC, 23.44, 17.31, -27.85, 2, 0)
  37. MovementLoopAddLocation(NPC, 20.61, 17.32, -38.41, 2, 0)
  38. MovementLoopAddLocation(NPC, 11.11, 17.19, -44.76, 2, 0)
  39. MovementLoopAddLocation(NPC, 9.99, 17.25, -60.91, 2, 0)
  40. MovementLoopAddLocation(NPC, 11.11, 17.19, -44.76, 2, 0)
  41. MovementLoopAddLocation(NPC, 20.61, 17.32, -38.41, 2, 0)
  42. MovementLoopAddLocation(NPC, 23.44, 17.31, -27.85, 2, 0)
  43. MovementLoopAddLocation(NPC, 33.87, 16.95, -5.79, 2, 0)
  44. MovementLoopAddLocation(NPC, 19.27, 17.06, 6.88, 2, 0)
  45. MovementLoopAddLocation(NPC, 7.91, 17.3, 2.53, 2, 0)
  46. MovementLoopAddLocation(NPC, -9.98, 17.3, 11.96, 2, 0)
  47. MovementLoopAddLocation(NPC, -19.17, 17.32, 10.39, 2, 0)
  48. MovementLoopAddLocation(NPC, -26.87, 17.32, 9.09, 2, 0)
  49. MovementLoopAddLocation(NPC, -35.54, 19.76, 16.93, 2, 0)
  50. MovementLoopAddLocation(NPC, -44.18, 19.48, 21.32, 2, 0)
  51. MovementLoopAddLocation(NPC, -54.28, 19.31, 22.95, 2, 0)
  52. MovementLoopAddLocation(NPC, -58.37, 19.55, 9.24, 2, 0)
  53. MovementLoopAddLocation(NPC, -66.55, 18.88, -4.41, 2, 0)
  54. end