alargecoastalcrab430593.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/alargecoastalcrab430593.lua
  3. Script Purpose : Waypoint Path for alargecoastalcrab430593.lua
  4. Script Author : Rylec
  5. Script Date : 11-25-2019 05:43:07
  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, -60.87, -8.7, 38.62, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -90.58, -8.23, 44.86, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, -69.19, -8.51, 31.62, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, -91.31, -8.52, 42.58, 2, math.random(16, 24))
  21. MovementLoopAddLocation(NPC, -62.29, -8.46, 42.02, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, -82.01, -8.5, 34.46, 2, math.random(16, 24))
  23. -- MovementLoopAddLocation(NPC, -59.41, -8.77, 42.68, 2, 0)
  24. MovementLoopAddLocation(NPC, -59.46, -8.77, 42.66, 2, math.random(16, 24))
  25. -- MovementLoopAddLocation(NPC, -90.26, -9.26, 37.57, 2, 0)
  26. MovementLoopAddLocation(NPC, -90.18, -9.24, 37.57, 2, math.random(16, 24))
  27. end