arazortoothshark428550.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428550.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428550.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:49:43
  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, 65.78, -13.69, 42.58, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 57.04, -11.97, 41.93, 2, 0)
  19. MovementLoopAddLocation(NPC, 50.08, -11.44, 41.59, 2, 0)
  20. MovementLoopAddLocation(NPC, 36.14, -12.19, 40.68, 2, 0)
  21. MovementLoopAddLocation(NPC, 12.14, -11.81, 34.86, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 15.4, -13.01, 39.57, 2, 0)
  23. MovementLoopAddLocation(NPC, 17.13, -12.69, 45.81, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 24.29, -13.39, 36.47, 2, 0)
  25. MovementLoopAddLocation(NPC, 33.66, -13.23, 30, 2, 0)
  26. MovementLoopAddLocation(NPC, 36.93, -13.27, 29.12, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 42.13, -12.24, 23.66, 2, 0)
  28. MovementLoopAddLocation(NPC, 54.29, -12.01, 18.14, 2, 0)
  29. MovementLoopAddLocation(NPC, 59.52, -12.34, 13.81, 2, 0)
  30. MovementLoopAddLocation(NPC, 67.36, -13.22, 8.43, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 57.55, -12.71, 10.92, 2, 0)
  32. MovementLoopAddLocation(NPC, 50.24, -12.64, 9.69, 2, 0)
  33. MovementLoopAddLocation(NPC, 45.17, -12.88, 7.07, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 38.46, -12.06, 14, 2, 0)
  35. MovementLoopAddLocation(NPC, 34.39, -12.35, 22.5, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 50.03, -12.55, 18.52, 2, 0)
  37. MovementLoopAddLocation(NPC, 56.7, -12.09, 18.71, 2, 0)
  38. MovementLoopAddLocation(NPC, 61.59, -12.49, 20.29, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 62.04, -11.99, 26.47, 2, 0)
  40. MovementLoopAddLocation(NPC, 62.54, -12.23, 36.34, 2, 0)
  41. MovementLoopAddLocation(NPC, 64.03, -13.12, 41.99, 2, 0)
  42. MovementLoopAddLocation(NPC, 68.6, -13.62, 46.56, 2, math.random(10, 20))
  43. end