asawtoothshark427411.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427411.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427411.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:32:03
  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, 67.54, -12.11, -9.48, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 43.74, -12.62, -9.22, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 47.08, -13.26, -3.97, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 50.98, -12.44, -4, 2, 0)
  21. MovementLoopAddLocation(NPC, 55.36, -11.82, -6.88, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 16.59, -12.73, -6.78, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 26.13, -12.32, -9.01, 2, 0)
  24. MovementLoopAddLocation(NPC, 49.08, -12.8, -25.77, 2, 0)
  25. MovementLoopAddLocation(NPC, 48.95, -12.81, -25.69, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 46.03, -13.18, -23.75, 2, 0)
  27. MovementLoopAddLocation(NPC, 42.38, -13.54, -17.48, 2, 0)
  28. MovementLoopAddLocation(NPC, 41.12, -13.53, -9.79, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 49.2, -13.82, -3.9, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 40.5, -14.13, -4.06, 2, 0)
  31. MovementLoopAddLocation(NPC, 28.72, -13.74, -6.6, 2, math.random(10, 20))
  32. end