acoastalcrab430443.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/acoastalcrab430443.lua
  3. Script Purpose : Waypoint Path for acoastalcrab430443.lua
  4. Script Author : Rylec
  5. Script Date : 11-25-2019 05:43:40
  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, -77.59, -8.27, 33.59, 2, math.random(16, 24))
  18. -- MovementLoopAddLocation(NPC, -63.89, -7.95, 53.34, 2, 0)
  19. MovementLoopAddLocation(NPC, -63.93, -7.93, 53.31, 2, math.random(16, 24))
  20. -- MovementLoopAddLocation(NPC, -85.06, -9.14, 32.57, 2, 0)
  21. MovementLoopAddLocation(NPC, -84.98, -9.12, 32.59, 2, math.random(16, 24))
  22. -- MovementLoopAddLocation(NPC, -57.62, -8.99, 42.79, 2, 0)
  23. MovementLoopAddLocation(NPC, -57.64, -8.99, 42.76, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, -60.59, -8.95, 36.63, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, -83.79, -8.53, 35.61, 2, math.random(16, 24))
  26. -- MovementLoopAddLocation(NPC, -66.13, -8.77, 31.54, 2, 0)
  27. MovementLoopAddLocation(NPC, -66.23, -8.74, 31.53, 2, math.random(16, 24))
  28. MovementLoopAddLocation(NPC, -70.36, -8.4, 31.66, 2, math.random(16, 24))
  29. -- MovementLoopAddLocation(NPC, -77.61, -8.28, 33.55, 2, 0)
  30. end