This commit is contained in:
2024-08-24 22:41:08 +02:00
parent 77f1ac5d7a
commit c21f59778f
431 changed files with 68581 additions and 68581 deletions

View File

@@ -1,18 +1,18 @@
function() -- 0 - 1 CHARGE
local charges, max, cdstart, cddur = GetSpellCharges(aura_env.spell)
cdstart = cdstart * 1000
cddur = cddur * 1000
if exptime then
exptime = exptime * 1000
end
local time = GetTime() * 1000
if charges >= 1 then --FULL CHARGES RETURNS FULL BAR
return 1, 1, 1
end
if charges == 0 then --CHARGE 1 RECHARGING RETURNS COOLDOWN
local cd = time - cdstart
return cd, cddur, 1
end
end
function() -- 0 - 1 CHARGE
local charges, max, cdstart, cddur = GetSpellCharges(aura_env.spell)
cdstart = cdstart * 1000
cddur = cddur * 1000
if exptime then
exptime = exptime * 1000
end
local time = GetTime() * 1000
if charges >= 1 then --FULL CHARGES RETURNS FULL BAR
return 1, 1, 1
end
if charges == 0 then --CHARGE 1 RECHARGING RETURNS COOLDOWN
local cd = time - cdstart
return cd, cddur, 1
end
end
aura_env.spell= "Judgment"