asawtoothshark427412.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427412.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427412.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:34:17
  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, 22.9, -13.75, -1.35, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 37.57, -11.83, -12.33, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 22.51, -11.95, -6.57, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 46.31, -13.86, -6.88, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 39.55, -14.24, -8.15, 2, 0)
  22. MovementLoopAddLocation(NPC, 34.48, -14.68, -9.47, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 36.93, -14.33, -7.68, 2, 0)
  24. MovementLoopAddLocation(NPC, 43.87, -12.67, -0.76, 2, 0)
  25. MovementLoopAddLocation(NPC, 47.21, -12.56, 5.84, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 39.27, -13.2, -2.22, 2, 0)
  27. MovementLoopAddLocation(NPC, 32.69, -13.68, -8.85, 2, 0)
  28. MovementLoopAddLocation(NPC, 25.1, -13.77, -14.44, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 23.78, -13.96, -8.25, 2, 0)
  30. end