acoastalcrab430311.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/acoastalcrab430311.lua
  3. Script Purpose : Waypoint Path for acoastalcrab430311.lua
  4. Script Author : Rylec
  5. Script Date : 11-25-2019 05:43:46
  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, -63.62, -8.29, 40.58, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -85.95, -7.69, 47.28, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, -83.75, -8.52, 35.62, 2, 0)
  20. -- MovementLoopAddLocation(NPC, -82.62, -8.98, 32.53, 2, 0)
  21. MovementLoopAddLocation(NPC, -82.44, -8.98, 32.49, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, -77.72, -8.76, 31.41, 2, 0)
  23. MovementLoopAddLocation(NPC, -72.82, -8.82, 28.85, 2, 0)
  24. -- MovementLoopAddLocation(NPC, -71.59, -9.12, 27.44, 2, 0)
  25. MovementLoopAddLocation(NPC, -71.58, -9.07, 27.45, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, -70.37, -8.87, 28.5, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, -68.36, -8.24, 32.51, 2, 0)
  28. MovementLoopAddLocation(NPC, -64.12, -8.04, 43.47, 2, 0)
  29. MovementLoopAddLocation(NPC, -61.88, -8.15, 46.24, 2, math.random(16, 24))
  30. -- MovementLoopAddLocation(NPC, -61.82, -9.54, 33.3, 2, 0)
  31. MovementLoopAddLocation(NPC, -61.81, -9.53, 33.33, 2, math.random(16, 24))
  32. MovementLoopAddLocation(NPC, -61.89, -8.94, 35.62, 2, 0)
  33. MovementLoopAddLocation(NPC, -59.69, -8.76, 40.7, 2, math.random(16, 24))
  34. MovementLoopAddLocation(NPC, -85.92, -8.46, 38.41, 2, math.random(16, 24))
  35. end