arazortoothshark428493.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428493.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428493.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:28:38
  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, 10.25, -11.66, -28.75, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 30.88, -11.82, -26.11, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 19.79, -12.14, -24.22, 2, 0)
  20. MovementLoopAddLocation(NPC, 13.17, -12.57, -20.74, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 15.44, -12.06, -24.01, 2, 0)
  22. MovementLoopAddLocation(NPC, 19.01, -11.74, -30.94, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 19.64, -12.64, -19.86, 2, 0)
  24. MovementLoopAddLocation(NPC, 21.55, -12.3, -7.88, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 18.43, -12.12, -11.31, 2, 0)
  26. MovementLoopAddLocation(NPC, 16.19, -11.88, -15.7, 2, 0)
  27. MovementLoopAddLocation(NPC, 11.26, -11.97, -21.86, 2, 0)
  28. MovementLoopAddLocation(NPC, 7.2, -11.82, -28.07, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 12.53, -12.13, -20.78, 2, 0)
  30. MovementLoopAddLocation(NPC, 16.97, -12.3, -16.31, 2, 0)
  31. MovementLoopAddLocation(NPC, 20.32, -13.1, -11.23, 2, 0)
  32. MovementLoopAddLocation(NPC, 23.62, -14.13, -8.32, 2, 0)
  33. MovementLoopAddLocation(NPC, 26.57, -14.58, -5.05, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 22.69, -14.25, -19.82, 2, 0)
  35. MovementLoopAddLocation(NPC, 21.04, -13.3, -24.84, 2, 0)
  36. MovementLoopAddLocation(NPC, 15.76, -12.6, -34.5, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 12.53, -12.28, -32.51, 2, 0)
  38. end