agiantcoastalcrab429017.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429017.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429017.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:36
  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, 36.51, -9.44, -64.06, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 27.93, -7.78, -69.67, 2, 0)
  19. MovementLoopAddLocation(NPC, 25.32, -8.22, -71.99, 2, 0)
  20. MovementLoopAddLocation(NPC, 21.06, -9.17, -71.45, 2, math.random(16, 24))
  21. MovementLoopAddLocation(NPC, 26.67, -9.78, -62.29, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, 22, -8.96, -68.04, 2, 0)
  23. MovementLoopAddLocation(NPC, 21.34, -9.37, -68.92, 2, 0)
  24. MovementLoopAddLocation(NPC, 19.89, -9.66, -71.72, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, 22.54, -8.71, -68.39, 2, 0)
  26. MovementLoopAddLocation(NPC, 36.82, -9.54, -58.7, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 34.19, -7.9, -64.3, 2, 0)
  28. MovementLoopAddLocation(NPC, 32.48, -9.45, -71.41, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, 36.69, -9.61, -66.61, 2, 0)
  30. end