aSabertoothminerPath1.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/aSabertoothminerPath1.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.05.01 04:05:17
  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. spawn(NPC)
  18. end
  19. function waypoints(NPC)
  20. MovementLoopAddLocation(NPC, 58.04, -5.25, -67.93, 2, 6)
  21. MovementLoopAddLocation(NPC, 59.69, -5.2, -75.99, 2, math.random(6,9))
  22. MovementLoopAddLocation(NPC, 65.36, -5.24, -70.52, 2, 0)
  23. MovementLoopAddLocation(NPC, 65.53, -5.32, -69.64, 2, 0)
  24. MovementLoopAddLocation(NPC, 65.53, -5.32, -69.64, 2, math.random(6,9))
  25. MovementLoopAddLocation(NPC, 57.71, -5.2, -72.71, 2, 0)
  26. MovementLoopAddLocation(NPC, 57.71, -5.2, -72.71, 2, math.random(6,9))
  27. MovementLoopAddLocation(NPC, 60.77, -5.2, -73.78, 2, 0)
  28. MovementLoopAddLocation(NPC, 60.77, -5.2, -73.78, 2, math.random(6,9))
  29. MovementLoopAddLocation(NPC, 65.96, -5.2, -75.65, 2, 0)
  30. MovementLoopAddLocation(NPC, 65.96, -5.2, -75.65, 2, math.random(6,9))
  31. MovementLoopAddLocation(NPC, 63.94, -5.2, -71.74, 2, 0)
  32. MovementLoopAddLocation(NPC, 61, -5.2, -71.33, 2, 0)
  33. MovementLoopAddLocation(NPC, 61, -5.2, -71.33, 2, math.random(6,9))
  34. MovementLoopAddLocation(NPC, 66.59, -5.2, -76.01, 2, 0)
  35. MovementLoopAddLocation(NPC, 66.59, -5.2, -76.01, 2, math.random(6,9))
  36. MovementLoopAddLocation(NPC, 61.26, -5.2, -74.54, 2, 0)
  37. MovementLoopAddLocation(NPC, 61.26, -5.2, -74.54, 2, math.random(6,9))
  38. MovementLoopAddLocation(NPC, 58.46, -5.3, -68.13, 2, 0)
  39. MovementLoopAddLocation(NPC, 58.46, -5.3, -68.13, 2, math.random(6,9))
  40. end