alargecoastalcrab430496.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/alargecoastalcrab430496.lua
  3. Script Purpose : Waypoint Path for alargecoastalcrab430496.lua
  4. Script Author : Rylec
  5. Script Date : 11-25-2019 05:44:05
  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, -61.91, -8.95, 35.55, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -60.39, -8.81, 37.97, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, -63.16, -8.71, 35.25, 2, math.random(16, 24))
  20. -- MovementLoopAddLocation(NPC, -56.23, -9.56, 37.19, 2, 0)
  21. MovementLoopAddLocation(NPC, -56.29, -9.55, 37.21, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, -66.48, -7.59, 39.92, 2, 0)
  23. -- MovementLoopAddLocation(NPC, -95.83, -9.6, 45.7, 2, 0)
  24. MovementLoopAddLocation(NPC, -95.75, -9.56, 45.71, 2, math.random(16, 24))
  25. -- MovementLoopAddLocation(NPC, -55.13, -9.66, 41.28, 2, 0)
  26. MovementLoopAddLocation(NPC, -55.17, -9.65, 41.25, 2, math.random(16, 24))
  27. -- MovementLoopAddLocation(NPC, -63.94, -8.76, 34.28, 2, 0)
  28. MovementLoopAddLocation(NPC, -63.85, -8.77, 34.33, 2, math.random(16, 24))
  29. -- MovementLoopAddLocation(NPC, -61.96, -8.96, 35.46, 2, 0)
  30. end