arazortoothshark428536.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428536.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428536.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:27: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, 12.05, -13.51, 21.56, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 4.74, -12.77, 25.94, 2, 0)
  19. MovementLoopAddLocation(NPC, -20.8, -12.34, 37.81, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 23.49, -13.52, 33.59, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 29.06, -12.52, 31.75, 2, 0)
  22. MovementLoopAddLocation(NPC, 33.32, -12.15, 27.96, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 24.21, -13.2, 34.33, 2, 0)
  24. MovementLoopAddLocation(NPC, 15.44, -13.91, 38.89, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 6.64, -13.55, 50.41, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 4.34, -13.65, 43.95, 2, 0)
  27. MovementLoopAddLocation(NPC, 0.1, -13.83, 37.38, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 3.01, -13, 43.22, 2, 0)
  29. MovementLoopAddLocation(NPC, 5.89, -11.99, 58.41, 2, 0)
  30. MovementLoopAddLocation(NPC, 5.79, -11.52, 64.85, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 8.63, -12.09, 58.55, 2, 0)
  32. MovementLoopAddLocation(NPC, 15.37, -12.3, 49.12, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 15.89, -12.71, 31.78, 2, 0)
  34. end