Tumble files around a bit

This commit is contained in:
2025-05-16 10:20:19 +02:00
parent 0e3166a410
commit 003f90126d
1595 changed files with 75381 additions and 70006 deletions

View File

@@ -0,0 +1,25 @@
EVERY FRAME TRIGGER
function()
local charges = GetSpellCharges("Shield of the Righteous")
if charges ~= aura_env.oldcharges then
aura_env.time = (GetTime() * 1000) + 250
aura_env.oldcharges = charges
return true
end
aura_env.oldcharges = charges
if aura_env.time > GetTime() * 1000 then
return true
else
return false
end
end
DISPLAY
function()
local charges = GetSpellCharges("Shield of the Righteous")
return charges
end
INIT
aura_env.time = GetTime()
aura_env.oldcharges = 0