areefturtle427046.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427046.lua
  3. Script Purpose : Waypoint Path for areefturtle427046.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19:40
  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, -17.51, -11.81, -28.08, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 2.4, -11.85, -31.51, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -10.83, -11.93, -26.53, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -18.08, -11.28, -33.62, 2, 0)
  21. MovementLoopAddLocation(NPC, -20.93, -12.17, -38.79, 2, 0)
  22. MovementLoopAddLocation(NPC, -22.21, -12.69, -42.67, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -18.87, -12.08, -41.06, 2, 0)
  24. MovementLoopAddLocation(NPC, -7.15, -11.57, -36.37, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -7.33, -11.21, -32.3, 2, 0)
  26. MovementLoopAddLocation(NPC, -7.92, -11.42, -25.22, 2, 0)
  27. MovementLoopAddLocation(NPC, -21.49, -10.48, -8.18, 2, 0)
  28. MovementLoopAddLocation(NPC, -28.34, -11.01, -0.87, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -27.17, -11.09, -10.34, 2, 0)
  30. MovementLoopAddLocation(NPC, -24.82, -11.23, -19.19, 2, 0)
  31. MovementLoopAddLocation(NPC, -6.97, -11.66, -49.29, 2, 0)
  32. MovementLoopAddLocation(NPC, -4.22, -11.63, -55.37, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -2.66, -12.02, -38.11, 2, 0)
  34. MovementLoopAddLocation(NPC, -3.37, -11.89, -28.06, 2, math.random(10, 20))
  35. end