areefturtle427247.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427247.lua
  3. Script Purpose : Waypoint Path for areefturtle427247.lua
  4. Script Author : Rylec
  5. Script Date : 10-22-2019 09:52:15
  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, 11.95, -11.97, 260.69, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 16.03, -12.95, 257.87, 2, 0)
  19. MovementLoopAddLocation(NPC, 21, -12.52, 255.84, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 19.7, -12.42, 268.16, 2, 0)
  21. MovementLoopAddLocation(NPC, 18.63, -12.14, 272.62, 2, 0)
  22. MovementLoopAddLocation(NPC, 8.91, -13.05, 276.28, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 10.68, -12.48, 271.2, 2, 0)
  24. MovementLoopAddLocation(NPC, 11.21, -12.59, 267.5, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 14.53, -13.29, 270.32, 2, 0)
  26. MovementLoopAddLocation(NPC, 21.9, -13.01, 272.35, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 16.94, -13.39, 267.17, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 14.75, -13.32, 263.37, 2, 0)
  29. end