areefturtle427062.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427062.lua
  3. Script Purpose : Waypoint Path for areefturtle427062.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:16:31
  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, 33.09, -11.75, -84.83, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 36.22, -11.52, -77.83, 2, 0)
  19. MovementLoopAddLocation(NPC, 46.56, -11.13, -68.28, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 52.67, -11.73, -75, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 56.45, -11.68, -63.35, 2, 0)
  22. MovementLoopAddLocation(NPC, 67.69, -10.2, -43.73, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 77.2, -11.16, -43.92, 2, 0)
  24. MovementLoopAddLocation(NPC, 85.21, -11.72, -43.95, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 78.64, -12.07, -45.19, 2, 0)
  26. MovementLoopAddLocation(NPC, 68.72, -11.75, -49.7, 2, 0)
  27. MovementLoopAddLocation(NPC, 62.4, -11.24, -53.32, 2, 0)
  28. MovementLoopAddLocation(NPC, 48.15, -10.68, -58.76, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 55.29, -11.85, -71.36, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 38.63, -11.96, -78.02, 2, 0)
  31. MovementLoopAddLocation(NPC, 33.18, -11.87, -79.72, 2, 0)
  32. MovementLoopAddLocation(NPC, 28.95, -11.86, -79.27, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 21.81, -11.77, -86.78, 2, math.random(10, 20))
  34. end