agiantcoastalcrab429019.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429019.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429019.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:40
  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, 26.88, -9.86, -62.08, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 29.37, -9.32, -61.26, 2, 0)
  19. MovementLoopAddLocation(NPC, 30.14, -9.24, -60.58, 2, 0)
  20. MovementLoopAddLocation(NPC, 32.62, -9.02, -59.37, 2, 0)
  21. MovementLoopAddLocation(NPC, 33.25, -10.13, -57.33, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, 33.25, -8.95, -59.46, 2, 0)
  23. MovementLoopAddLocation(NPC, 31.46, -8.33, -60.98, 2, 0)
  24. MovementLoopAddLocation(NPC, 25.26, -9.29, -64.57, 2, 0)
  25. MovementLoopAddLocation(NPC, 23.94, -9.01, -66.29, 2, 0)
  26. MovementLoopAddLocation(NPC, 19.75, -9.92, -71.94, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 23.45, -9.02, -66.58, 2, 0)
  28. MovementLoopAddLocation(NPC, 25.26, -8.93, -65.32, 2, 0)
  29. MovementLoopAddLocation(NPC, 26.43, -9.91, -61.75, 2, math.random(16, 24))
  30. MovementLoopAddLocation(NPC, 31.46, -9.54, -72.47, 2, math.random(16, 24))
  31. MovementLoopAddLocation(NPC, 29.56, -8.8, -72.18, 2, 0)
  32. MovementLoopAddLocation(NPC, 27.86, -8.7, -72.29, 2, 0)
  33. MovementLoopAddLocation(NPC, 19.99, -9.78, -72.19, 2, math.random(16, 24))
  34. MovementLoopAddLocation(NPC, 27.36, -9.21, -62.8, 2, math.random(16, 24))
  35. MovementLoopAddLocation(NPC, 25.76, -8.56, -65.78, 2, 0)
  36. MovementLoopAddLocation(NPC, 23.89, -8.72, -66.71, 2, 0)
  37. MovementLoopAddLocation(NPC, 20.03, -9.94, -72.6, 2, math.random(16, 24))
  38. MovementLoopAddLocation(NPC, 23.56, -9.49, -65.88, 2, 0)
  39. MovementLoopAddLocation(NPC, 25.84, -8.83, -64.87, 2, 0)
  40. end