arazortoothshark428528.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428528.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428528.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:43:49
  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, -1.73, -12.61, -45.5499, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 3.06, -12.04, -45.35, 2, 0)
  19. MovementLoopAddLocation(NPC, 8.01, -11.56, -43.16, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -0.13, -12.12, -48.83, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 3.14, -11.93, -51.9, 2, 0)
  22. MovementLoopAddLocation(NPC, 7.57, -12.66, -55.32, 2, 0)
  23. MovementLoopAddLocation(NPC, 10.53, -12.7, -55.93, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 9.15, -12.16, -50.6, 2, 0)
  25. MovementLoopAddLocation(NPC, 8.76, -11.87, -42.97, 2, 0)
  26. MovementLoopAddLocation(NPC, 8.15, -11.72, -36.64, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 10.89, -11.69, -44.25, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 16.55, -12.1, -37.78, 2, 0)
  29. MovementLoopAddLocation(NPC, 20.81, -13.18, -27.42, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 18.7, -12.93, -20.18, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 26.12, -14.33, -7.76, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 24.14, -13.72, -17.4, 2, 0)
  33. MovementLoopAddLocation(NPC, 25.89, -11.88, -41.98, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 13.22, -11.19, -44.21, 2, 0)
  35. end