aneedlefang427900.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427900.lua
  3. Script Purpose : Waypoint Path for aneedlefang427900.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 09:28:17
  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, -10.48, -12.48, -15.18, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -17.44, -11.11, -8.9, 2, 0)
  19. MovementLoopAddLocation(NPC, -23.24, -10.98, -3.4, 2, 0)
  20. MovementLoopAddLocation(NPC, -30.91, -11.05, 1.15, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -22.57, -11.6, -36.02, 2, 0)
  22. MovementLoopAddLocation(NPC, -20.44, -11.53, -44.26, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -32.63, -11.03, -33.53, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -21.44, -11.17, -38.96, 2, 0)
  25. MovementLoopAddLocation(NPC, -11.21, -11.62, -41.49, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -11.35, -10.99, -49.07, 2, 0)
  27. MovementLoopAddLocation(NPC, -9.08, -11.17, -62.46, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -9.05, -10.99, -55.42, 2, 0)
  29. MovementLoopAddLocation(NPC, -7.58, -11.09, -49.31, 2, 0)
  30. MovementLoopAddLocation(NPC, -4.02, -11.85, -44.16, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -5.21, -10.98, -32.31, 2, 0)
  32. MovementLoopAddLocation(NPC, -7.82, -12.36, -19.57, 2, 0)
  33. end