aneedlefang427581.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427581.lua
  3. Script Purpose : Waypoint Path for aneedlefang427581.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:15:01
  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, 27.76, -11.14, -88.53, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 22.69, -11.12, -90.81, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 49.72, -12.11, -80.12, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 39.48, -12.13, -84.62, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 46.12, -11.9, -82.36, 2, 0)
  22. MovementLoopAddLocation(NPC, 54.92, -11.68, -80.32, 2, 0)
  23. MovementLoopAddLocation(NPC, 68.48, -12.13, -72.27, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 63.62, -12.1, -74.33, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 61.36, -12.02, -57.94, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 48.33, -10.58, -67.52, 2, 0)
  27. MovementLoopAddLocation(NPC, 33.99, -11.25, -78.76, 2, 0)
  28. MovementLoopAddLocation(NPC, 29.88, -11.95, -82.72, 2, math.random(10, 20))
  29. end