arazortoothshark428496.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428496.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428496.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:29:18
  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, 10.13, -10.74, -81.17, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 12.14, -10.7, -77.98, 2, 0)
  19. MovementLoopAddLocation(NPC, 14.5, -10.7, -66.96, 2, 0)
  20. MovementLoopAddLocation(NPC, 23.79, -10.7, -37.43, 2, 0)
  21. MovementLoopAddLocation(NPC, 32.79, -10.7, -22.97, 2, 0)
  22. MovementLoopAddLocation(NPC, 34.34, -11.85, -1.14, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 48.48, -13.02, -24.64, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 42.01, -13.01, -16.55, 2, 0)
  25. MovementLoopAddLocation(NPC, 39.12, -13.25, -11.77, 2, 0)
  26. MovementLoopAddLocation(NPC, 33.46, -13.4, -5.32, 2, 0)
  27. MovementLoopAddLocation(NPC, 31.21, -13.44, -1.03, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 32.26, -12.5, 0.47, 2, 0)
  29. MovementLoopAddLocation(NPC, 34.01, -12.1, 5.17, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 32.58, -12.22, 0.26, 2, 0)
  31. MovementLoopAddLocation(NPC, 31.21, -12.27, -15.21, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 23.99, -12.81, -29.24, 2, 0)
  33. MovementLoopAddLocation(NPC, 20.97, -12.67, -39.51, 2, 0)
  34. MovementLoopAddLocation(NPC, 15.67, -11.81, -48.42, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 8.61, -11.36, -52.18, 2, 0)
  36. MovementLoopAddLocation(NPC, -3.33, -11.38, -57.05, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 6.66, -11.36, -75.34, 2, 0)
  38. MovementLoopAddLocation(NPC, 8.65, -10.75, -78.89, 2, 0)
  39. end