arazortoothshark428542.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428542.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428542.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21:58
  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, 4.76, -12.29, 31.31, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 3.17, -12.16, 46.05, 2, 0)
  19. MovementLoopAddLocation(NPC, 4.47, -11.76, 61.28, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 1.98, -12, 53.98, 2, 0)
  21. MovementLoopAddLocation(NPC, -4.6, -13, 22.05, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -10.6, -13.22, 25.88, 2, 0)
  23. MovementLoopAddLocation(NPC, -19.62, -13.1, 35.35, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -1.12, -11.89, 42.51, 2, 0)
  25. MovementLoopAddLocation(NPC, 7.94, -11.9, 44.32, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 4.33, -13.07, 52.01, 2, 0)
  27. MovementLoopAddLocation(NPC, 3.9, -13, 59.55, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 7.95, -12.06, 53.29, 2, 0)
  29. MovementLoopAddLocation(NPC, 9.18, -12.33, 45.3, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 24.42, -12.33, 61.26, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 22.6, -13.12, 47.02, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 8.82, -12.3, 39.37, 2, 0)
  33. MovementLoopAddLocation(NPC, 1.29, -12.5, 37.92, 2, math.random(10, 20))
  34. end