amorakdevourer428734.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/amorakdevourer428734.lua
  3. Script Purpose : Waypoint Path for amorakdevourer428734.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. waypoints(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end
  20. function waypoints(NPC)
  21. MovementLoopAddLocation(NPC, 197, -0.68, -187.72, 2, 0)
  22. MovementLoopAddLocation(NPC, 197.75, -0.88, -181.16, 2, 0)
  23. MovementLoopAddLocation(NPC, 187.6, -0.84, -180.83, 2, 0)
  24. MovementLoopAddLocation(NPC, 179.09, -0.81, -185.05, 2, 0)
  25. MovementLoopAddLocation(NPC, 171.12, -0.78, -200.75, 2, 0)
  26. MovementLoopAddLocation(NPC, 159.93, -0.74, -205.5, 2, 0)
  27. MovementLoopAddLocation(NPC, 149.48, -0.7, -206.92, 2, 0)
  28. MovementLoopAddLocation(NPC, 135.99, -0.65, -201.96, 2, 0)
  29. MovementLoopAddLocation(NPC, 129.13, -0.62, -194.93, 2, 0)
  30. MovementLoopAddLocation(NPC, 122.91, -0.6, -182.87, 2, 0)
  31. MovementLoopAddLocation(NPC, 118.16, -0.47, -179.78, 2, 0)
  32. MovementLoopAddLocation(NPC, 113.71, -0.07, -182.34, 2, 0)
  33. MovementLoopAddLocation(NPC, 111.94, 0.55, -187.57, 2, 0)
  34. MovementLoopAddLocation(NPC, 114.27, -0.11, -182.18, 2, 0)
  35. MovementLoopAddLocation(NPC, 118.48, -0.52, -179.71, 2, 0)
  36. MovementLoopAddLocation(NPC, 123.54, -0.6, -183.95, 2, 0)
  37. MovementLoopAddLocation(NPC, 129.57, -0.63, -195.34, 2, 0)
  38. MovementLoopAddLocation(NPC, 136.46, -0.65, -202.07, 2, 0)
  39. MovementLoopAddLocation(NPC, 149.75, -0.7, -206.9, 2, 0)
  40. MovementLoopAddLocation(NPC, 160.87, -0.74, -205.27, 2, 0)
  41. MovementLoopAddLocation(NPC, 170.82, -0.78, -200.96, 2, 0)
  42. MovementLoopAddLocation(NPC, 178.77, -0.81, -185.09, 2, 0)
  43. MovementLoopAddLocation(NPC, 187.72, -0.84, -180.74, 2, 0)
  44. MovementLoopAddLocation(NPC, 197.82, -0.88, -181.04, 2, 0)
  45. end