diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9640219 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +FreshShit/RaiderlosSA/out +.vscode/ diff --git a/Complete Projects/Legion/PersonalCooldownAnnouncer/event2.lua b/Complete Projects/Legion/PersonalCooldownAnnouncer/event2.lua deleted file mode 100644 index 10a4cf7..0000000 --- a/Complete Projects/Legion/PersonalCooldownAnnouncer/event2.lua +++ /dev/null @@ -1,12 +0,0 @@ --- PLAYER_ENTERING_WORLD GUILD_ROSTER_UPDATE -function(e) - if aura_env.debug then print(string.format("Current ticker: %s", tostring(aura_env.ticker))) end - if aura_env.ticker == nil then - if aura_env.debug then print("Creating ticker") end - local aura_env = aura_env - aura_env.ticker = C_Timer.NewTicker(0.5, function() - if aura_env.debug then print("Ticker calling CYKA_EVENT_TICKER") end - WeakAuras.ScanEvents("CYKA_EVENT_TICKER") - end) - end -end \ No newline at end of file diff --git a/Complete Projects/Legion/RaiderlosSA 2.0.lua b/Complete Projects/Legion/RaiderlosSA 2.0.lua deleted file mode 100644 index 645c43e..0000000 --- a/Complete Projects/Legion/RaiderlosSA 2.0.lua +++ /dev/null @@ -1,12 +0,0 @@ ---COMBAT_LOG_EVENT_UNFILTERED -function(...) - local se = select(3, ...) - if se == "SPELL_CAST_START" or se == "SPELL_CAST_SUCCESS" then - local spell = select(14, ...) - spell = spell:gsub("%s", "_") - local soundfile = "Interface\\Sounds\\" .. spell .. ".ogg" - local success = PlaySoundFile(soundfile, "Master") - end -end - ---INIT diff --git a/Complete Projects/Legion/PersonalCooldownAnnouncer/event.lua b/FreshShit/PersonalCooldownAnnouncer/event.lua similarity index 83% rename from Complete Projects/Legion/PersonalCooldownAnnouncer/event.lua rename to FreshShit/PersonalCooldownAnnouncer/event.lua index e263b39..91a0f26 100644 --- a/Complete Projects/Legion/PersonalCooldownAnnouncer/event.lua +++ b/FreshShit/PersonalCooldownAnnouncer/event.lua @@ -1,4 +1,4 @@ --- CYKA_EVENT_TICKER +-- TICKER_500 function(e) for _, spell in ipairs(aura_env.spells) do ---@cast spell Spell diff --git a/Complete Projects/Legion/PersonalCooldownAnnouncer/init.lua b/FreshShit/PersonalCooldownAnnouncer/init.lua similarity index 98% rename from Complete Projects/Legion/PersonalCooldownAnnouncer/init.lua rename to FreshShit/PersonalCooldownAnnouncer/init.lua index e6e5b2d..5b52246 100644 --- a/Complete Projects/Legion/PersonalCooldownAnnouncer/init.lua +++ b/FreshShit/PersonalCooldownAnnouncer/init.lua @@ -69,5 +69,4 @@ aura_env.spells = { Spell.new(205545, "OdynsFury"), Spell.new(26297, "Berserking"), Spell.new(12292, "Bloodbath"), - Spell.new(23881, "Bloodthirst") }