asawtoothshark427385.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427385.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427385.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:12:41
  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, 84.63, -10.98, -45.91, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 79.34, -11.01, -46.87, 2, 0)
  19. MovementLoopAddLocation(NPC, 63.91, -11.8, -60.41, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 65.37, -11.92, -67.69, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 58.82, -11.73, -60.01, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 55.79, -11.18, -51.68, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 48.28, -10.7, -57.43, 2, 0)
  24. MovementLoopAddLocation(NPC, 40.69, -10.7, -69.89, 2, 0)
  25. MovementLoopAddLocation(NPC, 30.27, -10.7, -79.5, 2, 0)
  26. MovementLoopAddLocation(NPC, 24.75, -11.06, -87.84, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 49.81, -11.7, -74.52, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 69.21, -11.87, -80.12, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 73.55, -11.79, -48.34, 2, 0)
  30. MovementLoopAddLocation(NPC, 77.63, -11.96, -35.76, 2, 0)
  31. MovementLoopAddLocation(NPC, 78.08, -11.76, -29.88, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 80.69, -11.28, -41, 2, 0)
  33. MovementLoopAddLocation(NPC, 85.95, -11, -43.95, 2, 0)
  34. MovementLoopAddLocation(NPC, 94.21, -11.22, -43.57, 2, math.random(10, 20))
  35. end