asawtoothshark427418.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427418.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427418.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:37:20
  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, 31.49, -12.78, -1.78, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 31.36, -11.39, -15.5, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 23.22, -12.02, -18.85, 2, 0)
  20. MovementLoopAddLocation(NPC, 17.84, -11.98, -22.79, 2, 0)
  21. MovementLoopAddLocation(NPC, 5.88, -11.79, -38.79, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 20.23, -12.08, -32.66, 2, 0)
  23. MovementLoopAddLocation(NPC, 27.45, -11.7, -30.84, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 30.7, -12.23, -23.88, 2, 0)
  25. MovementLoopAddLocation(NPC, 42.07, -13.56, -10.34, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 31.52, -13.78, -22.04, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 37.43, -12.26, -15.19, 2, 0)
  28. MovementLoopAddLocation(NPC, 42.49, -12, -11.48, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 39.53, -12.11, -6.87, 2, 0)
  30. MovementLoopAddLocation(NPC, 35.29, -12.51, -1.76, 2, 0)
  31. MovementLoopAddLocation(NPC, 30.43, -12.7, 5.78, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 31.56, -12.82, -12.1, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 35.91, -12.4, -6.34, 2, 0)
  34. MovementLoopAddLocation(NPC, 41.36, -11.85, 3.52, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 32.45, -12.07, -15.64, 2, math.random(10, 20))
  36. end