agiantcoastalcrab429012.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429012.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429012.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:23
  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, 23.92, -9.7, -74.15, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 21.84, -9.2, -68.95, 2, 0)
  19. MovementLoopAddLocation(NPC, 20.7, -9.55, -68.89, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 22.72, -9.18, -66.83, 2, 0)
  21. MovementLoopAddLocation(NPC, 24.35, -8.72, -66.48, 2, 0)
  22. MovementLoopAddLocation(NPC, 30.16, -9.23, -60.61, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, 27.09, -10.56, -56.32, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, 28.99, -9.39, -61.48, 2, 0)
  25. MovementLoopAddLocation(NPC, 27.17, -8.54, -63.95, 2, 0)
  26. MovementLoopAddLocation(NPC, 16.35, -10.78, -68.7, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 23.01, -8.38, -68.01, 2, 0)
  28. MovementLoopAddLocation(NPC, 27.74, -9.26, -62.45, 2, 0)
  29. MovementLoopAddLocation(NPC, 30.05, -9.2, -60.83, 2, math.random(16, 24))
  30. MovementLoopAddLocation(NPC, 29.49, -9.18, -73.31, 2, math.random(16, 24))
  31. MovementLoopAddLocation(NPC, 33, -9.16, -70.21, 2, 0)
  32. MovementLoopAddLocation(NPC, 35.35, -10.02, -56.89, 2, math.random(16, 24))
  33. MovementLoopAddLocation(NPC, 36.88, -9.64, -62.35, 2, 0)
  34. MovementLoopAddLocation(NPC, 36.35, -9.31, -64.24, 2, 0)
  35. MovementLoopAddLocation(NPC, 36.78, -9.64, -66.5, 2, math.random(16, 24))
  36. MovementLoopAddLocation(NPC, 34.36, -8.69, -65.96, 2, 0)
  37. MovementLoopAddLocation(NPC, 31.92, -7.95, -67.17, 2, 0)
  38. end