arazortoothshark428525.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428525.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428525.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:42:26
  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, 25.59, -14.7, -9.65, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 33.69, -13.8, -13.27, 2, 0)
  19. MovementLoopAddLocation(NPC, 39.39, -13.8, -13.74, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 28.39, -12.58, -10.54, 2, 0)
  21. MovementLoopAddLocation(NPC, 19.52, -11.79, -8.49, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 13.6, -11.79, -9.65, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 16.97, -12, -15.88, 2, 0)
  24. MovementLoopAddLocation(NPC, 21.15, -12, -28.19, 2, 0)
  25. MovementLoopAddLocation(NPC, 25.62, -11.98, -33.64, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 28.8, -13.49, -28.03, 2, 0)
  27. MovementLoopAddLocation(NPC, 30.54, -13.84, -25.92, 2, 0)
  28. MovementLoopAddLocation(NPC, 32.82, -13.84, -22.76, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 35.07, -14.78, -20.22, 2, 0)
  30. MovementLoopAddLocation(NPC, 44.54, -13.36, -11.8, 2, 0)
  31. MovementLoopAddLocation(NPC, 51.9, -12.96, -7.79, 2, 0)
  32. MovementLoopAddLocation(NPC, 56.09, -12.31, -6.29, 2, 0)
  33. MovementLoopAddLocation(NPC, 62.4, -11.99, -4.13, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 57.41, -12.25, -6.04, 2, 0)
  35. MovementLoopAddLocation(NPC, 42.33, -12.4, -16.41, 2, 0)
  36. MovementLoopAddLocation(NPC, 37.64, -12.86, -24.17, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 22.25, -12.28, -26.67, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, 16.36, -11.76, -15.79, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 13.05, -11.91, -19.92, 2, 0)
  40. MovementLoopAddLocation(NPC, 3.54, -11.74, -28.74, 2, math.random(10, 20))
  41. MovementLoopAddLocation(NPC, 12.23, -12.17, -23.17, 2, 0)
  42. MovementLoopAddLocation(NPC, 18.27, -13.3, -18.83, 2, 0)
  43. MovementLoopAddLocation(NPC, 23.17, -14.7, -13.94, 2, 0)
  44. end