asawtoothshark427445.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427445.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427445.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:22: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, -21.07, -13.33, 34.51, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -13.68, -12.15, 44.95, 2, 0)
  19. MovementLoopAddLocation(NPC, -6.03, -11.66, 51.1, 2, 0)
  20. MovementLoopAddLocation(NPC, 0.64, -12.14, 53.64, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 4.01, -12.11, 49.92, 2, 0)
  22. MovementLoopAddLocation(NPC, 8.73, -12.1, 40.87, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 19.68, -12.92, 34.34, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 13.67, -11.89, 36.86, 2, 0)
  25. MovementLoopAddLocation(NPC, 7.1, -11.81, 42.05, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 32.19, -12.05, 51.03, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 38.54, -11.8, 43.15, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 4.52, -13.62, 32.67, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -12.1, -13.81, 32.52, 2, 0)
  30. end