arazortoothshark428508.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428508.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428508.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:36:02
  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, 41.27, -12.89, -10.41, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 44.1, -12.75, -17.84, 2, 0)
  19. MovementLoopAddLocation(NPC, 47.13, -11.89, -29.52, 2, 0)
  20. MovementLoopAddLocation(NPC, 49.73, -11.91, -40.44, 2, 0)
  21. MovementLoopAddLocation(NPC, 49.54, -12, -45.73, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 44.92, -11.87, -40.46, 2, 0)
  23. MovementLoopAddLocation(NPC, 17.5, -11.95, -19.26, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 22.55, -12.83, -3.86, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 45.97, -13.35, 0.51, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 36.98, -13.68, -16.23, 2, 0)
  27. MovementLoopAddLocation(NPC, 26.55, -12.7, -27.93, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 24.15, -13.44, -9.58, 2, 0)
  29. MovementLoopAddLocation(NPC, 17.38, -12.78, -1.7, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 43.09, -12.11, -22.48, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 52.91, -12.31, -21.16, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 61.35, -11.45, -19.5, 2, 0)
  33. MovementLoopAddLocation(NPC, 70.48, -11.89, -16.11, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 60.19, -12.26, -15.9, 2, 0)
  35. end