areefturtle427063.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427063.lua
  3. Script Purpose : Waypoint Path for areefturtle427063.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:16:59
  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, 87.61, -12.69, -33.56, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 79.24, -12.49, -40.78, 2, 0)
  19. MovementLoopAddLocation(NPC, 68.33, -11.58, -47.81, 2, 0)
  20. MovementLoopAddLocation(NPC, 61.46, -11.17, -51.42, 2, 0)
  21. MovementLoopAddLocation(NPC, 55.45, -10.95, -52.62, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 66.24, -11.07, -45.85, 2, 0)
  23. MovementLoopAddLocation(NPC, 75.55, -11.02, -38.6, 2, 0)
  24. MovementLoopAddLocation(NPC, 79.24, -11.25, -35.84, 2, 0)
  25. MovementLoopAddLocation(NPC, 87.73, -12.02, -31.66, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 93.72, -11.86, -44.24, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 96.93, -11.96, -40.78, 2, 0)
  28. MovementLoopAddLocation(NPC, 101.92, -11.96, -37.07, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 86.23, -12.84, -22.01, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 89.95, -12.38, -24.68, 2, 0)
  31. MovementLoopAddLocation(NPC, 95.83, -12.03, -30.82, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 90.26, -12.06, -31.82, 2, 0)
  33. MovementLoopAddLocation(NPC, 77.11, -11.76, -32.33, 2, math.random(10, 20))
  34. end