aSabertoothminerPath2.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/aSabertoothminerPath2.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.05.01 04:05:57
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/SabertoothGnoll2.lua")
  9. local TheChomper = 5696
  10. function spawn(NPC)
  11. AddTimer(NPC, 6000, "waypoints")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 16.22, -9.73, -88.86, 2, 6)
  20. MovementLoopAddLocation(NPC, 9.96, -9.73, -89.47, 2, 0)
  21. MovementLoopAddLocation(NPC, 9.96, -9.73, -89.47, 2, math.random(6,9))
  22. MovementLoopAddLocation(NPC, 10.59, -9.64, -87.36, 2, 0)
  23. MovementLoopAddLocation(NPC, 10.59, -9.64, -87.36, 2, math.random(6,9))
  24. MovementLoopAddLocation(NPC, 12.39, -9.73, -87.62, 2, 0)
  25. MovementLoopAddLocation(NPC, 12.39, -9.73, -87.62, 2, math.random(6,9))
  26. MovementLoopAddLocation(NPC, 16.89, -9.73, -88.04, 2, 0)
  27. MovementLoopAddLocation(NPC, 16.89, -9.73, -88.04, 2, math.random(6,9))
  28. MovementLoopAddLocation(NPC, 16.82, -9.71, -86.03, 2, 0)
  29. MovementLoopAddLocation(NPC, 16.82, -9.71, -86.03, 2, math.random(6,9))
  30. MovementLoopAddLocation(NPC, 16.25, -9.73, -87.21, 2, 0)
  31. MovementLoopAddLocation(NPC, 13.75, -9.89, -87.46, 2, 0)
  32. MovementLoopAddLocation(NPC, 13.75, -9.89, -87.46, 2, math.random(6,9))
  33. MovementLoopAddLocation(NPC, 13.05, -9.69, -85.21, 2, 0)
  34. MovementLoopAddLocation(NPC, 13.05, -9.69, -85.21, 2, math.random(6,9))
  35. MovementLoopAddLocation(NPC, 12.44, -9.41, -85.75, 2, 0)
  36. MovementLoopAddLocation(NPC, 13.51, -9.86, -89.83, 2, 0)
  37. MovementLoopAddLocation(NPC, 13.51, -9.86, -89.83, 2, math.random(6,9))
  38. MovementLoopAddLocation(NPC, 15.53, -9.73, -87.26, 2, 0)
  39. MovementLoopAddLocation(NPC, 15.53, -9.73, -87.26, 2, math.random(6,9))
  40. MovementLoopAddLocation(NPC, 13.79, -9.77, -88.4, 2, 0)
  41. MovementLoopAddLocation(NPC, 13.79, -9.77, -88.4, 2, math.random(6,9))
  42. end