agiantcoastalcrab429006.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429006.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429006.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:08
  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, 67.57, -10.78, -21.33, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 66.87, -9.52, -23.66, 2, 0)
  19. MovementLoopAddLocation(NPC, 68.72, -9.77, -35.94, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 63.61, -8.31, -35.52, 2, 0)
  21. MovementLoopAddLocation(NPC, 60.88, -9.27, -36.06, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, 69.19, -9.89, -23.74, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, 58.18, -7.34, -27.19, 2, 0)
  24. MovementLoopAddLocation(NPC, 55.7, -8.95, -32.72, 2, 0)
  25. MovementLoopAddLocation(NPC, 56.01, -9.83, -34.97, 2, 0)
  26. MovementLoopAddLocation(NPC, 59.44, -9.8, -35.87, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 66.66, -10.47, -39.71, 2, math.random(16, 24))
  28. MovementLoopAddLocation(NPC, 68.87, -8.43, -32.28, 2, 0)
  29. MovementLoopAddLocation(NPC, 69.54, -8.59, -27.13, 2, 0)
  30. MovementLoopAddLocation(NPC, 68.51, -9.35, -24.46, 2, math.random(16, 24))
  31. MovementLoopAddLocation(NPC, 67.46, -10.25, -22.41, 2, math.random(16, 24))
  32. MovementLoopAddLocation(NPC, 67.44, -8.46, -25.88, 2, math.random(16, 24))
  33. MovementLoopAddLocation(NPC, 61.24, -9.6, -36.34, 2, math.random(16, 24))
  34. end