amorakdevourer428759.lua 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428759.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428759.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:16:45
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "4")
  10. SpawnSet(NPC, "difficulty", "2")
  11. SpawnSet(NPC, "size", "28.8")
  12. SpawnSet(NPC, "hp", 35)
  13. SpawnSet(NPC, "power", 20)
  14. waypoints(NPC)
  15. end
  16. function hailed(NPC, Spawn)
  17. FaceTarget(NPC, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end
  22. function waypoints(NPC)
  23. MovementLoopAddLocation(NPC, 191.06, -0.68, -113.82, 2, 0)
  24. MovementLoopAddLocation(NPC, 185.97, -0.85, -112.47, 2, 0)
  25. MovementLoopAddLocation(NPC, 181.77, -0.83, -115.13, 2, 0)
  26. MovementLoopAddLocation(NPC, 177.09, -0.82, -125.65, 2, 0)
  27. MovementLoopAddLocation(NPC, 184.28, -0.84, -112.27, 2, 0)
  28. MovementLoopAddLocation(NPC, 191.94, -0.88, -104.81, 2, 0)
  29. MovementLoopAddLocation(NPC, 196.85, -0.89, -102.43, 2, 0)
  30. MovementLoopAddLocation(NPC, 214.49, -0.96, -100.99, 2, 0)
  31. MovementLoopAddLocation(NPC, 221.6, -0.98, -129.15, 2, 0)
  32. MovementLoopAddLocation(NPC, 225.02, -0.99, -137.83, 2, 0)
  33. MovementLoopAddLocation(NPC, 229.55, -1.01, -142.88, 2, 0)
  34. MovementLoopAddLocation(NPC, 229.35, -1, -147.44, 2, 0)
  35. MovementLoopAddLocation(NPC, 220.79, -0.97, -160.4, 2, 0)
  36. MovementLoopAddLocation(NPC, 208.28, -0.92, -167.09, 2, 0)
  37. MovementLoopAddLocation(NPC, 204.31, -0.9, -174.82, 2, 0)
  38. MovementLoopAddLocation(NPC, 204.23, -0.94, -181.86, 2, 0)
  39. MovementLoopAddLocation(NPC, 207.74, -0.92, -184.44, 2, 0)
  40. MovementLoopAddLocation(NPC, 210.71, -0.93, -187.84, 2, 0)
  41. MovementLoopAddLocation(NPC, 217.74, -0.76, -193.42, 2, 0)
  42. MovementLoopAddLocation(NPC, 210.19, -0.92, -187.57, 2, 0)
  43. MovementLoopAddLocation(NPC, 206.8, -0.94, -183.57, 2, 0)
  44. MovementLoopAddLocation(NPC, 204.06, -0.94, -181.62, 2, 0)
  45. MovementLoopAddLocation(NPC, 204.44, -0.91, -174.39, 2, 0)
  46. MovementLoopAddLocation(NPC, 208.5, -0.92, -166.64, 2, 0)
  47. MovementLoopAddLocation(NPC, 221.02, -0.97, -159.65, 2, 0)
  48. MovementLoopAddLocation(NPC, 229.4, -1, -147.04, 2, 0)
  49. MovementLoopAddLocation(NPC, 229.36, -1, -142.45, 2, 0)
  50. MovementLoopAddLocation(NPC, 224.25, -0.99, -137.07, 2, 0)
  51. MovementLoopAddLocation(NPC, 221.31, -0.98, -129, 2, 0)
  52. MovementLoopAddLocation(NPC, 217.86, -0.97, -109.12, 2, 0)
  53. MovementLoopAddLocation(NPC, 214.27, -0.96, -101.02, 2, 0)
  54. MovementLoopAddLocation(NPC, 196.79, -0.89, -102.15, 2, 0)
  55. MovementLoopAddLocation(NPC, 191.58, -0.87, -105.15, 2, 0)
  56. MovementLoopAddLocation(NPC, 184.47, -0.85, -112.31, 2, 0)
  57. MovementLoopAddLocation(NPC, 177.13, -0.82, -125.56, 2, 0)
  58. MovementLoopAddLocation(NPC, 178.65, -0.82, -120.98, 2, 0)
  59. MovementLoopAddLocation(NPC, 181.83, -0.84, -114.52, 2, 0)
  60. MovementLoopAddLocation(NPC, 186.13, -0.85, -112.29, 2, 0)
  61. end