agiantcoastalcrab429021.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429021.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429021.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:45
  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, 33.47, -8.94, -68.5, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 25.44, -8.41, -66.56, 2, 0)
  19. MovementLoopAddLocation(NPC, 23.38, -10.2, -64.7, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 21.36, -9.39, -73.54, 2, math.random(16, 24))
  21. MovementLoopAddLocation(NPC, 21.26, -9.48, -67.54, 2, 0)
  22. MovementLoopAddLocation(NPC, 23.79, -8.48, -67.21, 2, 0)
  23. MovementLoopAddLocation(NPC, 27.13, -8.1, -65.4, 2, 0)
  24. MovementLoopAddLocation(NPC, 36.41, -9.17, -60.99, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, 33.93, -7.74, -64.36, 2, 0)
  26. MovementLoopAddLocation(NPC, 26.6, -9.52, -73.83, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 23.05, -8.88, -72.23, 2, 0)
  28. MovementLoopAddLocation(NPC, 22.12, -8.82, -70.56, 2, 0)
  29. MovementLoopAddLocation(NPC, 24.19, -9.85, -64.49, 2, math.random(16, 24))
  30. end