agiantcoastalcrab429015.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429015.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429015.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:32
  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, 29.86, -10.4, -74.64, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 19.82, -10.22, -66.53, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, 23.01, -9.04, -66.84, 2, 0)
  20. MovementLoopAddLocation(NPC, 35.53, -10.14, -56.85, 2, math.random(16, 24))
  21. MovementLoopAddLocation(NPC, 36.07, -9.17, -59.06, 2, 0)
  22. MovementLoopAddLocation(NPC, 36.62, -9.58, -66.66, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, 32.45, -7.63, -61.62, 2, 0)
  24. MovementLoopAddLocation(NPC, 28.9, -9.42, -61.49, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, 20.53, -9.73, -68.07, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, 26.37, -8.94, -63.66, 2, 0)
  27. MovementLoopAddLocation(NPC, 31.34, -9.03, -60.1, 2, math.random(16, 24))
  28. MovementLoopAddLocation(NPC, 29.46, -8.54, -62.09, 2, 0)
  29. end