agiantcoastalcrab429007.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429007.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429007.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:10
  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, 69.4, -10.04, -36.54, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 66.91, -10.49, -39.77, 2, 0)
  19. MovementLoopAddLocation(NPC, 64.32, -10.65, -40.01, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 58.38, -10.2, -35.77, 2, 0)
  21. MovementLoopAddLocation(NPC, 59.47, -6.79, -32.05, 2, 0)
  22. MovementLoopAddLocation(NPC, 63.32, -7.59, -25.2, 2, 0)
  23. MovementLoopAddLocation(NPC, 67.85, -9.91, -23.11, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, 67.45, -9.55, -36.74, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, 71.08, -9.12, -28.06, 2, 0)
  26. MovementLoopAddLocation(NPC, 69.22, -10.22, -23.05, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 62.63, -10.37, -37.71, 2, math.random(16, 24))
  28. end