areefturtle427138.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/areefturtle427138.lua
  3. Script Purpose : Waypoint Path for areefturtle427138.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:59:24
  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, -96.8, -12.8, 189.36, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -102.24, -13.38, 189.41, 2, 0)
  19. MovementLoopAddLocation(NPC, -104.05, -13.79, 190.14, 2, 0)
  20. MovementLoopAddLocation(NPC, -105.83, -14.49, 192.3, 2, 0)
  21. MovementLoopAddLocation(NPC, -109.28, -14.83, 193.76, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -104.96, -14.97, 197.69, 2, 0)
  23. MovementLoopAddLocation(NPC, -101.93, -14.85, 204.02, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -99.83, -14.44, 204.46, 2, 0)
  25. MovementLoopAddLocation(NPC, -98.46, -13.3, 206.71, 2, 0)
  26. MovementLoopAddLocation(NPC, -93.61, -12.51, 215.81, 2, 0)
  27. MovementLoopAddLocation(NPC, -95.74, -12.54, 217.14, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -116.86, -13.6, 237.42, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -109.58, -13.55, 219.34, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -119.6, -13.51, 237.6, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -106.92, -13.44, 216.92, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -100.49, -14.51, 204.96, 2, 0)
  33. MovementLoopAddLocation(NPC, -98.58, -14.05, 203.81, 2, 0)
  34. MovementLoopAddLocation(NPC, -93.15, -13.41, 201.69, 2, 0)
  35. MovementLoopAddLocation(NPC, -88.71, -13.35, 199.44, 2, 0)
  36. MovementLoopAddLocation(NPC, -86, -12.73, 197.22, 2, 0)
  37. MovementLoopAddLocation(NPC, -83.79, -12.78, 195.57, 2, math.random(10, 20))
  38. end