areefturtle427244.lua 983 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427244.lua
  3. Script Purpose : Waypoint Path for areefturtle427244.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:52:02
  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, 15.89, -13.11, 274.89, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 15.11, -12.06, 262.74, 2, 0)
  19. MovementLoopAddLocation(NPC, 11.92, -10.24, 257.72, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 2.06, -13.09, 274.93, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 5.06, -13.03, 269.83, 2, 0)
  22. MovementLoopAddLocation(NPC, 10.71, -11.9, 265.21, 2, 0)
  23. MovementLoopAddLocation(NPC, 18.86, -10.28, 255.43, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 18.66, -12.91, 263.77, 2, 0)
  25. end