aneedlefang427576.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427576.lua
  3. Script Purpose : Waypoint Path for aneedlefang427576.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:13:21
  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, 41.81, -12.05, -80.46, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 54.11, -11.7, -80.12, 2, 0)
  19. MovementLoopAddLocation(NPC, 75.66, -12.06, -74.38, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 70.51, -11.17, -59.58, 2, 0)
  21. MovementLoopAddLocation(NPC, 63.48, -11.03, -47.61, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 64.06, -11.02, -54.49, 2, 0)
  23. MovementLoopAddLocation(NPC, 67.82, -12.08, -70.02, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 63.52, -12.07, -55.71, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 73.36, -11.98, -72.63, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 68.23, -12.01, -52, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 73.19, -11.73, -49.5, 2, 0)
  28. MovementLoopAddLocation(NPC, 79.55, -11.75, -44.65, 2, 0)
  29. MovementLoopAddLocation(NPC, 94.9, -12.8, -35.52, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 67.92, -10.3, -42.98, 2, 0)
  31. MovementLoopAddLocation(NPC, 62.7, -10.32, -44.05, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 61.73, -10.27, -48.91, 2, 0)
  33. MovementLoopAddLocation(NPC, 48.7, -11.1, -67.59, 2, 0)
  34. MovementLoopAddLocation(NPC, 46.83, -12.04, -74.36, 2, math.random(10, 20))
  35. end