areefturtle427028.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427028.lua
  3. Script Purpose : Waypoint Path for areefturtle427028.lua
  4. Script Author : Rylec
  5. Script Date : 11-14-2019 08:59:11
  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, -137.73, -12.79, 41.78, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -136.23, -11.66, 33.55, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -131.14, -11.4, 46.9, 2, 0)
  20. MovementLoopAddLocation(NPC, -127.44, -10.4, 55.74, 2, 0)
  21. MovementLoopAddLocation(NPC, -125.11, -11.18, 61.05, 2, 0)
  22. MovementLoopAddLocation(NPC, -120.5, -10.99, 64.03, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -124.35, -11.58, 61.86, 2, 0)
  24. MovementLoopAddLocation(NPC, -126.89, -11.81, 57.97, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -129.6, -12.28, 56.53, 2, 0)
  26. MovementLoopAddLocation(NPC, -132.18, -12.78, 58.67, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -130.49, -11.94, 56.57, 2, 0)
  28. MovementLoopAddLocation(NPC, -129.67, -11.5, 56.54, 2, 0)
  29. MovementLoopAddLocation(NPC, -127.73, -10.67, 57.34, 2, 0)
  30. MovementLoopAddLocation(NPC, -122.96, -10.34, 60.37, 2, 0)
  31. MovementLoopAddLocation(NPC, -115.94, -11.68, 66.99, 2, 0)
  32. MovementLoopAddLocation(NPC, -110.04, -11.87, 70.2, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -118.21, -11.03, 68.02, 2, 0)
  34. MovementLoopAddLocation(NPC, -119.07, -10.3, 63.72, 2, 0)
  35. MovementLoopAddLocation(NPC, -123.62, -10.3, 57.27, 2, 0)
  36. MovementLoopAddLocation(NPC, -129.52, -10.57, 53.43, 2, 0)
  37. MovementLoopAddLocation(NPC, -133.96, -12.02, 46.11, 2, 0)
  38. MovementLoopAddLocation(NPC, -128.51, -11.86, 49.85, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, -136.24, -11.39, 31.44, 2, 0)
  40. MovementLoopAddLocation(NPC, -136.27, -11.55, 19.19, 2, math.random(10, 20))
  41. MovementLoopAddLocation(NPC, -138, -12.74, 8.02, 2, 0)
  42. MovementLoopAddLocation(NPC, -145.57, -12.57, 4.98, 2, math.random(10, 20))
  43. MovementLoopAddLocation(NPC, -138.24, -12.41, 39.12, 2, 0)
  44. MovementLoopAddLocation(NPC, -137.98, -13.29, 44.96, 2, 0)
  45. MovementLoopAddLocation(NPC, -146.73, -13.26, 52.55, 2, math.random(10, 20))
  46. end