aneedlefang428013.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang428013.lua
  3. Script Purpose : Waypoint Path for aneedlefang428013.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:14:46
  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.47, -12.11, -83.2, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -32.5, -12.1, -80.61, 2, 0)
  19. MovementLoopAddLocation(NPC, -40.53, -12.1, -70.63, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -48.07, -11.42, -55.87, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -43.34, -11.13, -52.72, 2, 0)
  22. MovementLoopAddLocation(NPC, -30.7, -11.48, -22.74, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -10.5, -11.8, -37.53, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -15.78, -11.04, -33.33, 2, 0)
  25. MovementLoopAddLocation(NPC, -26.64, -11.12, -22.44, 2, 0)
  26. MovementLoopAddLocation(NPC, -33.96, -11.02, -17.65, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -49.95, -11.07, -34.33, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -48.32, -10.3, -38.63, 2, 0)
  29. MovementLoopAddLocation(NPC, -46.34, -10.36, -51.92, 2, 0)
  30. MovementLoopAddLocation(NPC, -43.81, -11.85, -65.67, 2, math.random(10, 20))
  31. end