agiantcoastalcrab429024.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429024.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429024.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:50
  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, 24.15, -8.88, -66.32, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 34.15, -9.03, -68.24, 2, 0)
  19. MovementLoopAddLocation(NPC, 36.55, -9.88, -68.36, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 36.03, -9.4, -66.99, 2, 0)
  21. MovementLoopAddLocation(NPC, 35.18, -8.45, -61.36, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, 23.02, -10.35, -64.81, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, 30.81, -9.86, -58.42, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, 28.96, -9.39, -61.52, 2, 0)
  25. MovementLoopAddLocation(NPC, 27.87, -9.17, -62.53, 2, 0)
  26. MovementLoopAddLocation(NPC, 23.78, -9.21, -66.11, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 30.39, -8.78, -71.61, 2, 0)
  28. MovementLoopAddLocation(NPC, 31.34, -10.47, -74.75, 2, math.random(16, 24))
  29. end