grave_scorpius5.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --[[
  2. Script Name : grave_scorpius5.lua
  3. Script Purpose : Waypoint Path for grave_scorpius5.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 04:15:15 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, 197.54, -6.94, -56.95, 2, 0)
  18. MovementLoopAddLocation(NPC, 214.59, -6.9, -56.05, 2, 0)
  19. MovementLoopAddLocation(NPC, 232.77, -6.45, -39.74, 2, 0)
  20. MovementLoopAddLocation(NPC, 245.04, -7, -39.48, 2, 0)
  21. MovementLoopAddLocation(NPC, 244.7, -7, -51.44, 2, 0)
  22. MovementLoopAddLocation(NPC, 237.23, -6.88, -61.05, 2, 0)
  23. MovementLoopAddLocation(NPC, 237.1, -6.86, -81.33, 2, 0)
  24. MovementLoopAddLocation(NPC, 246.61, -6.86, -80.72, 2, 0)
  25. MovementLoopAddLocation(NPC, 247.18, -6.86, -105.48, 2, 0)
  26. MovementLoopAddLocation(NPC, 235.11, -6.86, -105.88, 2, 0)
  27. MovementLoopAddLocation(NPC, 234.68, -6.86, -91.53, 2, 0)
  28. MovementLoopAddLocation(NPC, 222.12, -6.83, -92.14, 2, 0)
  29. MovementLoopAddLocation(NPC, 222.34, -6.32, -83.16, 2, 0)
  30. MovementLoopAddLocation(NPC, 216.89, -6.81, -76.86, 2, 0)
  31. MovementLoopAddLocation(NPC, 210.19, -6.81, -79.75, 2, 0)
  32. MovementLoopAddLocation(NPC, 208.44, -6.98, -90.24, 2, 0)
  33. MovementLoopAddLocation(NPC, 210.19, -6.81, -79.75, 2, 0)
  34. MovementLoopAddLocation(NPC, 216.89, -6.81, -76.86, 2, 0)
  35. MovementLoopAddLocation(NPC, 222.34, -6.32, -83.16, 2, 0)
  36. MovementLoopAddLocation(NPC, 222.12, -6.83, -92.14, 2, 0)
  37. MovementLoopAddLocation(NPC, 234.68, -6.86, -91.53, 2, 0)
  38. MovementLoopAddLocation(NPC, 235.11, -6.86, -105.88, 2, 0)
  39. MovementLoopAddLocation(NPC, 247.18, -6.86, -105.48, 2, 0)
  40. MovementLoopAddLocation(NPC, 246.61, -6.86, -80.72, 2, 0)
  41. MovementLoopAddLocation(NPC, 237.1, -6.86, -81.33, 2, 0)
  42. MovementLoopAddLocation(NPC, 237.23, -6.88, -61.05, 2, 0)
  43. MovementLoopAddLocation(NPC, 244.7, -7, -51.44, 2, 0)
  44. MovementLoopAddLocation(NPC, 245.04, -7, -39.48, 2, 0)
  45. MovementLoopAddLocation(NPC, 232.77, -6.45, -39.74, 2, 0)
  46. MovementLoopAddLocation(NPC, 214.59, -6.9, -56.05, 2, 0)
  47. MovementLoopAddLocation(NPC, 197.54, -6.94, -56.95, 2, 0)
  48. end