arazortoothshark428518.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428518.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428518.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:40:35
  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.36, -11.68, -91.63, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -8.38, -10.7, -83.13, 2, 0)
  19. MovementLoopAddLocation(NPC, -3.2, -10.7, -70.71, 2, 0)
  20. MovementLoopAddLocation(NPC, 0.15, -11.56, -53.51, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 7.11, -11.16, -74.78, 2, 0)
  22. MovementLoopAddLocation(NPC, 8.34, -10.7, -81.83, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 12.38, -10.7, -73.08, 2, 0)
  24. MovementLoopAddLocation(NPC, 14.86, -10.7, -63.58, 2, 0)
  25. MovementLoopAddLocation(NPC, 21.78, -10.7, -47.44, 2, 0)
  26. MovementLoopAddLocation(NPC, 28.2, -11.39, -35.6, 2, 0)
  27. MovementLoopAddLocation(NPC, 32.95, -11.96, -29.02, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 36.23, -13.12, -21.86, 2, 0)
  29. MovementLoopAddLocation(NPC, 39.86, -13.13, -17.77, 2, 0)
  30. MovementLoopAddLocation(NPC, 47.73, -13.08, -15.42, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 53.61, -12.96, -17.72, 2, 0)
  32. MovementLoopAddLocation(NPC, 60.15, -12.71, -18.67, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 52.29, -13.08, -10.58, 2, 0)
  34. MovementLoopAddLocation(NPC, 43.95, -12.95, -7.71, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 42.18, -12.63, -10.01, 2, 0)
  36. MovementLoopAddLocation(NPC, 35.07, -12.44, -16.3, 2, 0)
  37. MovementLoopAddLocation(NPC, 27.18, -12.29, -19.39, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, 27.11, -13.62, -26.78, 2, 0)
  39. MovementLoopAddLocation(NPC, 25, -13.69, -30.58, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, 19.72, -12.61, -36.18, 2, 0)
  41. MovementLoopAddLocation(NPC, 14.43, -12.15, -41.05, 2, 0)
  42. MovementLoopAddLocation(NPC, 8.27, -11.97, -47.71, 2, 0)
  43. MovementLoopAddLocation(NPC, 5.93, -12.14, -50.78, 2, 0)
  44. MovementLoopAddLocation(NPC, 3.25, -13.16, -55.72, 2, 0)
  45. MovementLoopAddLocation(NPC, 1.42, -13.46, -60.3, 2, math.random(10, 20))
  46. MovementLoopAddLocation(NPC, 0.3, -11.18, -69.81, 2, 0)
  47. MovementLoopAddLocation(NPC, -3.32, -11.03, -78.82, 2, 0)
  48. end