agiantcoastalcrab429020.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429020.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429020.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:43
  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.19, -9.7, -72.44, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 23.94, -8.06, -68.81, 2, 0)
  19. MovementLoopAddLocation(NPC, 27.5, -9.09, -62.9, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 21.77, -9.21, -67.31, 2, 0)
  21. MovementLoopAddLocation(NPC, 20.9, -9.18, -71.67, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, 21.66, -9.22, -67.7, 2, 0)
  23. MovementLoopAddLocation(NPC, 36.61, -9.59, -63.6, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, 21, -9.57, -67.93, 2, 0)
  25. MovementLoopAddLocation(NPC, 21.97, -8.83, -70.4, 2, 0)
  26. MovementLoopAddLocation(NPC, 23.91, -8.98, -72.87, 2, 0)
  27. MovementLoopAddLocation(NPC, 33.05, -10.41, -73.7, 2, math.random(16, 24))
  28. MovementLoopAddLocation(NPC, 31.88, -9.13, -71.13, 2, 0)
  29. MovementLoopAddLocation(NPC, 31.63, -8.76, -69.4, 2, math.random(16, 24))
  30. MovementLoopAddLocation(NPC, 23, -8.44, -67.69, 2, 0)
  31. end