arazortoothshark428445.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428445.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428445.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:16:16
  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, -11.16, -12.6, -15.68, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -13.24, -12.23, -17.61, 2, 0)
  19. MovementLoopAddLocation(NPC, -21.75, -12.12, -30.64, 2, 0)
  20. MovementLoopAddLocation(NPC, -22.19, -12.06, -34.45, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -16.16, -11.76, -46.52, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -18.94, -11.97, -44.25, 2, 0)
  23. MovementLoopAddLocation(NPC, -43.75, -10.7, -33.7, 2, 0)
  24. MovementLoopAddLocation(NPC, -52.33, -10.7, -31.18, 2, 0)
  25. MovementLoopAddLocation(NPC, -57.16, -10.7, -23.94, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -52.98, -10.7, -19.28, 2, 0)
  27. MovementLoopAddLocation(NPC, -53.05, -10.7, -7.59, 2, 0)
  28. MovementLoopAddLocation(NPC, -55.99, -11.04, 3.64, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -62.01, -10.7, -0.04, 2, 0)
  30. MovementLoopAddLocation(NPC, -77.99, -10.7, -9.04, 2, 0)
  31. MovementLoopAddLocation(NPC, -90.37, -10.7, -11.15, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -91.29, -11.36, 5.87, 2, 0)
  33. MovementLoopAddLocation(NPC, -89.87, -11.15, 18.72, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -92.74, -11.54, -16.75, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -82.24, -11.74, 10.8, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -68.4, -10.7, 15.58, 2, 0)
  37. MovementLoopAddLocation(NPC, -51.38, -10.7, 17.27, 2, 0)
  38. MovementLoopAddLocation(NPC, -45.15, -11.32, 15.19, 2, 0)
  39. MovementLoopAddLocation(NPC, -41.1, -11.04, 11.66, 2, 0)
  40. MovementLoopAddLocation(NPC, -34.92, -10.7, 6.98, 2, 0)
  41. MovementLoopAddLocation(NPC, -28.07, -11.55, 0.11, 2, 0)
  42. MovementLoopAddLocation(NPC, -20.28, -12.02, -3.74, 2, 0)
  43. MovementLoopAddLocation(NPC, -15.4, -11.9, -6.12, 2, math.random(10, 20))
  44. MovementLoopAddLocation(NPC, -8.06, -11.75, -30.89, 2, math.random(10, 20))
  45. MovementLoopAddLocation(NPC, -8.03, -12.35, -22.76, 2, 0)
  46. end