asawtoothshark427421.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427421.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427421.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:40: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, 6.48, -11.8, -72.74, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 3.58, -12.24, -68.62, 2, 0)
  19. MovementLoopAddLocation(NPC, 1.75, -12.99, -64.7, 2, 0)
  20. MovementLoopAddLocation(NPC, 1.33, -13.5, -59.26, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 6.5, -12.86, -55.9, 2, 0)
  22. MovementLoopAddLocation(NPC, 13.44, -12.18, -52.44, 2, 0)
  23. MovementLoopAddLocation(NPC, 23.25, -11.68, -44.08, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 18.57, -11.82, -41.37, 2, 0)
  25. MovementLoopAddLocation(NPC, 4.42, -11.75, -35.35, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 16.28, -12.07, -26.19, 2, 0)
  27. MovementLoopAddLocation(NPC, 24.26, -14.71, -20.12, 2, 0)
  28. MovementLoopAddLocation(NPC, 29.68, -14.86, -20.05, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 27.92, -14.21, -25.69, 2, 0)
  30. MovementLoopAddLocation(NPC, 26.68, -13.54, -33.61, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 19.41, -12.01, -26.83, 2, 0)
  32. MovementLoopAddLocation(NPC, 1.88, -11.69, -21, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 13.81, -12, -19.78, 2, 0)
  34. MovementLoopAddLocation(NPC, 27.45, -13.01, -20.57, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 18.76, -12.17, -39.42, 2, 0)
  36. MovementLoopAddLocation(NPC, 14.96, -12.14, -47.06, 2, 0)
  37. MovementLoopAddLocation(NPC, 12.53, -12.31, -55.9, 2, 0)
  38. MovementLoopAddLocation(NPC, 8.07, -11.55, -65.69, 2, 0)
  39. end