agiantcoastalcrab429011.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429011.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429011.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:20
  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, 20.15, -10.15, -66.6, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 24.07, -9.79, -74.32, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, 35.9, -10.94, -55.75, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 34.6, -9.27, -58.01, 2, 0)
  21. MovementLoopAddLocation(NPC, 23.75, -10.48, -76.41, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, 23.43, -8.18, -69.62, 2, 0)
  23. MovementLoopAddLocation(NPC, 23.76, -8.16, -67.91, 2, 0)
  24. MovementLoopAddLocation(NPC, 23.28, -9.78, -65.21, 2, 0)
  25. MovementLoopAddLocation(NPC, 29.4, -9.71, -59.89, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, 28.57, -7.15, -66.4, 2, 0)
  27. MovementLoopAddLocation(NPC, 35.37, -9.07, -66.54, 2, math.random(16, 24))
  28. MovementLoopAddLocation(NPC, 23.72, -8.15, -68.31, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, 38.9, -10.63, -67.43, 2, math.random(16, 24))
  30. MovementLoopAddLocation(NPC, 35.26, -9.02, -66.32, 2, 0)
  31. MovementLoopAddLocation(NPC, 29.1, -9.83, -59.76, 2, math.random(16, 24))
  32. MovementLoopAddLocation(NPC, 29.58, -9.24, -61.25, 2, 0)
  33. MovementLoopAddLocation(NPC, 25.81, -8.49, -65.96, 2, 0)
  34. MovementLoopAddLocation(NPC, 23.5, -8.92, -66.69, 2, 0)
  35. end