agiantcoastalcrab429025.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429025.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429025.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:52
  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.32, -10.86, -75.7, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 20.48, -9.21, -71.54, 2, 0)
  19. MovementLoopAddLocation(NPC, 25.2, -9.1, -65.04, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 25.77, -8.58, -65.71, 2, 0)
  21. MovementLoopAddLocation(NPC, 25.82, -7.71, -68.06, 2, 0)
  22. MovementLoopAddLocation(NPC, 22.43, -8.99, -72.59, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, 23.9, -8.96, -72.81, 2, 0)
  24. MovementLoopAddLocation(NPC, 26.22, -9.17, -73.38, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, 26.47, -8.16, -71.65, 2, 0)
  26. MovementLoopAddLocation(NPC, 24.05, -8.04, -68.54, 2, 0)
  27. MovementLoopAddLocation(NPC, 23.53, -9.1, -66.43, 2, 0)
  28. MovementLoopAddLocation(NPC, 23.2, -10.24, -64.85, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, 20.55, -9.55, -69.31, 2, 0)
  30. MovementLoopAddLocation(NPC, 21.18, -9.84, -73.86, 2, math.random(16, 24))
  31. MovementLoopAddLocation(NPC, 28.48, -7.89, -70.02, 2, 0)
  32. MovementLoopAddLocation(NPC, 35.46, -9.55, -68.42, 2, math.random(16, 24))
  33. MovementLoopAddLocation(NPC, 23.24, -10.2, -63.32, 2, math.random(16, 24))
  34. MovementLoopAddLocation(NPC, 23.69, -9.26, -66.1, 2, 0)
  35. end