asmallsandtortoise.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/OutpostOverlord/asmallsandtortoise399540.lua
  3. Script Purpose : Waypoint Path for asmallsandtortoise399540.lua
  4. Script Author : Robin
  5. Script Date : 10-19-2019 12:42:23
  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, -55.17, -8.35, 219.01, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -57.67, -8.41, 210.61, 2, 0)
  19. MovementLoopAddLocation(NPC, -58.46, -9.14, 208.98, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -52.14, -8.04, 209.99, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -52.18, -8.02, 216.00, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -54.28, -8.63, 207.03, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -52.38, -8.17, 207.80, 2, 0)
  24. MovementLoopAddLocation(NPC, -49.31, -8.41, 208.89, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -47.84, -6.82, 209.67, 2, 0)
  26. MovementLoopAddLocation(NPC, -44.44, -4.90, 212.81, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -45.27, -5.30, 214.09, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -49.24, -8.23, 215.67, 2, 0)
  29. MovementLoopAddLocation(NPC, -52.03, -8.05, 216.82, 2, 0)
  30. end