arazortoothshark428456.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428456.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428456.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 08:53:29
  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, -42.09, -12.72, 32.24, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -38.49, -12.35, 27.32, 2, 0)
  19. MovementLoopAddLocation(NPC, -27.51, -11.53, 12.87, 2, 0)
  20. MovementLoopAddLocation(NPC, -20.17, -12.55, 0.52, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -30.07, -11.96, 10.93, 2, 0)
  22. MovementLoopAddLocation(NPC, -36.24, -12.02, 16.03, 2, 0)
  23. MovementLoopAddLocation(NPC, -37.56, -12.15, 17.91, 2, 0)
  24. MovementLoopAddLocation(NPC, -40.36, -12.74, 22.21, 2, 0)
  25. MovementLoopAddLocation(NPC, -43.09, -12.72, 26.73, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -45.98, -12, 25.03, 2, 0)
  27. MovementLoopAddLocation(NPC, -50.49, -10.95, 23.79, 2, 0)
  28. MovementLoopAddLocation(NPC, -54.53, -10.7, 22.49, 2, 0)
  29. MovementLoopAddLocation(NPC, -63.24, -10.7, 15.87, 2, 0)
  30. MovementLoopAddLocation(NPC, -69.84, -10.7, 11.09, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -63.52, -10.7, 8.47, 2, 0)
  32. MovementLoopAddLocation(NPC, -24.51, -10.7, -8.04, 2, 0)
  33. MovementLoopAddLocation(NPC, -12.84, -11.58, -11.97, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -37.79, -11.47, -28.33, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -31.68, -12.94, -33.67, 2, 0)
  36. MovementLoopAddLocation(NPC, -26.54, -13.37, -38.38, 2, 0)
  37. MovementLoopAddLocation(NPC, -26.42, -13.32, -43.13, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, -30.71, -12.36, -45.25, 2, 0)
  39. MovementLoopAddLocation(NPC, -36.82, -10.7, -47.95, 2, 0)
  40. MovementLoopAddLocation(NPC, -44.9, -10.7, -50.38, 2, math.random(10, 20))
  41. MovementLoopAddLocation(NPC, -43.86, -10.7, -28.26, 2, 0)
  42. MovementLoopAddLocation(NPC, -36.48, -10.7, 8.09, 2, 0)
  43. MovementLoopAddLocation(NPC, -33.75, -11.9, 20.28, 2, math.random(10, 20))
  44. MovementLoopAddLocation(NPC, -33.26, -12.04, 27.11, 2, math.random(10, 20))
  45. MovementLoopAddLocation(NPC, -27.7, -12.72, 19.84, 2, math.random(10, 20))
  46. MovementLoopAddLocation(NPC, -33.95, -12.48, 22.94, 2, 0)
  47. end