This site makes extensive use of JavaScript.
Please
enable JavaScript
in your browser.
Classic Theme
Thottbot Theme
Adjusting Spell detail via macro
Post Reply
Return to board index
Post by
mrwuss
I am wanting to adjust spell detail from max to lowest and lowest to max depending on the current setting via a macro.
If Spelldetail(max) set spelldetail(lowest)
If Spelldetail(lowest) set spelldetail(max)
I do not see anything listed on the API page at wowwiki for interacting with this setting, but I have seen addons with the ability to set and change the settings.
Post by
Neffi
/run local c="spellEffectLevel" if GetCVar(c)=="0" then SetCVar(c,
9
) else SetCVar(c,0) end
9 appears to be the maximum the options panel will go to, but values higher than that might be accepted. Try changing the underlined 9 to a higher number to see if it makes any difference.
Post by
mrwuss
thanks a ton
Post Reply
You are not logged in. Please
log in
to post a reply or
register
if you don't already have an account.