arazortoothshark428523.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428523.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428523.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:41:49
  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, -5.1, -11.75, -50.79, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 10.99, -11.94, -41.23, 2, 0)
  19. MovementLoopAddLocation(NPC, 15.92, -11.22, -40.84, 2, 0)
  20. MovementLoopAddLocation(NPC, 23.36, -11.07, -41.17, 2, 0)
  21. MovementLoopAddLocation(NPC, 31.56, -10.7, -42.89, 2, 0)
  22. MovementLoopAddLocation(NPC, 41.06, -11.65, -46.6, 2, 0)
  23. MovementLoopAddLocation(NPC, 47.62, -11.89, -46.33, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 44.72, -11.26, -35.91, 2, 0)
  25. MovementLoopAddLocation(NPC, 43.83, -11.27, -28.84, 2, 0)
  26. MovementLoopAddLocation(NPC, 42.55, -11.73, -15.1, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 43.94, -12.47, -9.49, 2, 0)
  28. MovementLoopAddLocation(NPC, 45.65, -12.72, -0.59, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 42.45, -12.92, -11.23, 2, 0)
  30. MovementLoopAddLocation(NPC, 38.25, -12.6, -22.43, 2, 0)
  31. MovementLoopAddLocation(NPC, 35.61, -11.54, -39.18, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 34.95, -12.05, -30.81, 2, 0)
  33. MovementLoopAddLocation(NPC, 31.03, -13.8, -16.86, 2, 0)
  34. MovementLoopAddLocation(NPC, 27.1, -13.77, -6.19, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 23.16, -13.24, -14.19, 2, 0)
  36. MovementLoopAddLocation(NPC, 16.17, -12.42, -22.12, 2, 0)
  37. MovementLoopAddLocation(NPC, 2.98, -12.14, -38.97, 2, 0)
  38. MovementLoopAddLocation(NPC, -1.19, -11.98, -47.18, 2, 0)
  39. end