arazortoothshark428535.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428535.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428535.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:27:08
  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, 40.12, -13.72, 15.32, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 57, -12.63, 14.76, 2, 0)
  19. MovementLoopAddLocation(NPC, 69.02, -12.45, 15.26, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 61.58, -12.68, 15.93, 2, 0)
  21. MovementLoopAddLocation(NPC, 46.38, -12.81, 20.7, 2, 0)
  22. MovementLoopAddLocation(NPC, 38.57, -13.17, 24.86, 2, 0)
  23. MovementLoopAddLocation(NPC, 36.26, -13.65, 26, 2, 0)
  24. MovementLoopAddLocation(NPC, 31.92, -13.66, 27.58, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 8.29, -12.29, 27.7, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 4.5, -12.52, 28.7, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 9.22, -13.13, 37.04, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 29.03, -12.92, 18.82, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 16.06, -12.47, 24.83, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 37.57, -11.3, 30.78, 2, 0)
  31. MovementLoopAddLocation(NPC, 46.51, -11.08, 36.8, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 44.6, -11.77, 29.43, 2, 0)
  33. MovementLoopAddLocation(NPC, 41.69, -13.05, 21.4, 2, 0)
  34. end