areefturtle427054.lua 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427054.lua
  3. Script Purpose : Waypoint Path for areefturtle427054.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:13:51
  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, 75.75, -11.72, -76.4, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 54.07, -11.69, -76.4, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 52.33, -11.31, -68.75, 2, 0)
  20. MovementLoopAddLocation(NPC, 51.49, -11.04, -60.03, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 53.14, -11.44, -62.32, 2, 0)
  22. MovementLoopAddLocation(NPC, 53.97, -11.69, -64.11, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 69.49, -11.98, -71.77, 2, 0)
  24. MovementLoopAddLocation(NPC, 72.24, -11.83, -76.24, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 74.52, -11.2, -61.79, 2, 0)
  26. MovementLoopAddLocation(NPC, 75.57, -10.18, -56.48, 2, 0)
  27. MovementLoopAddLocation(NPC, 76.84, -10.17, -49.73, 2, 0)
  28. MovementLoopAddLocation(NPC, 72.84, -10.2, -40.51, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 70.61, -10.59, -44.01, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 64.25, -11.07, -53.67, 2, 0)
  31. MovementLoopAddLocation(NPC, 61.23, -11.8, -59.98, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 73.31, -11.75, -47.82, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 73.97, -11.78, -62.2, 2, 0)
  34. end