asawtoothshark427409.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427409.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427409.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:29:16
  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, -5.21, -11.85, -86.63, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -1.86, -11.28, -81.38, 2, 0)
  19. MovementLoopAddLocation(NPC, -0.06, -11.34, -76.18, 2, 0)
  20. MovementLoopAddLocation(NPC, 4.95, -12.19, -64.09, 2, 0)
  21. MovementLoopAddLocation(NPC, 7.02, -12.64, -62.04, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 6.3, -12.16, -67.66, 2, 0)
  23. MovementLoopAddLocation(NPC, 0.36, -11.74, -81.63, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -2.54, -11.78, -81.29, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 9.78, -11.77, -73.37, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 6.94, -11.96, -74.92, 2, 0)
  27. MovementLoopAddLocation(NPC, 3.54, -11.83, -78.36, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 3.08, -12.28, -70.44, 2, 0)
  29. MovementLoopAddLocation(NPC, 3.73, -12.78, -62.62, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 2.3, -12.18, -69.53, 2, 0)
  31. MovementLoopAddLocation(NPC, -0.2, -12.16, -78.23, 2, 0)
  32. end