areefturtle427083.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427083.lua
  3. Script Purpose : Waypoint Path for areefturtle427083.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:41:08
  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, 34.42, -11.73, 4.38, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 25.67, -12.09, -10.27, 2, 0)
  19. MovementLoopAddLocation(NPC, 23.39, -11.74, -12.53, 2, 0)
  20. MovementLoopAddLocation(NPC, 19.48, -11.64, -15.35, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 22.69, -13.7, -18.07, 2, 0)
  22. MovementLoopAddLocation(NPC, 24.8, -15.23, -21.36, 2, 0)
  23. MovementLoopAddLocation(NPC, 25.33, -15.36, -23.93, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 36.22, -14.43, -15.59, 2, 0)
  25. MovementLoopAddLocation(NPC, 46, -13.48, -12.56, 2, 0)
  26. MovementLoopAddLocation(NPC, 61.86, -13.65, -9.07, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 40.08, -13.3, -3.29, 2, 0)
  28. MovementLoopAddLocation(NPC, 25.49, -12.94, -1.44, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 38.08, -12.37, -3.19, 2, 0)
  30. MovementLoopAddLocation(NPC, 56.9, -11.8, -8.78, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 34.84, -11.9, -2.14, 2, math.random(10, 20))
  32. end