1. #1

    Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    I currently use MSBT for my main in raids, but I have many alts which do not need it. It is getting quite annoying going into interface every time I log onto that toon and turning combat text off. So.. I'm looking for a macro to do so. Does anyone know of one? I googled it but no such luck.


    http://www.wowarmory.com/character-sheet.xml?r=Draenor&cn=Holyxfire

  2. #2

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    In your addons list when logging on, you can set addons for each individual char
    Quote Originally Posted by kasath
    is anyone in this group under 18? my parole officer says I'm not allowed to play wow with anyone under 18

  3. #3

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    Quote Originally Posted by xux
    In your addons list when logging on, you can set addons for each individual char
    Regardless if you turn off the blizzard Combat Text one one toon, you turn it off for them all.


    http://www.wowarmory.com/character-sheet.xml?r=Draenor&cn=Holyxfire

  4. #4

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    Quote Originally Posted by Holyxfire
    Regardless if you turn off the blizzard Combat Text one one toon, you turn it off for them all.
    Toggle Damage
    Code:
    /run SetCVar("CombatDamage", (abs(GetCVar("CombatDamage")-1)))
    Toggle Healing
    Code:
    /run SetCVar("CombatHealing", (abs(GetCVar("CombatHealing")-1)))

  5. #5

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    Quote Originally Posted by Shamtasticle
    Toggle Damage
    Code:
    /run SetCVar("CombatDamage", (abs(GetCVar("CombatDamage")-1)))
    Toggle Healing
    Code:
    /run SetCVar("CombatHealing", (abs(GetCVar("CombatHealing")-1)))
    Any way to have them both in one macro for them both to work at the same time On/Off


    http://www.wowarmory.com/character-sheet.xml?r=Draenor&cn=Holyxfire

  6. #6

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    Quote Originally Posted by Holyxfire
    Any way to have them both in one macro for them both to work at the same time On/Off
    Yea just add them to the same macro.

    Alternatively if you want an "off" macro and an "on" macro:

    ON
    Code:
    /run SetCVar("CombatDamage", 1)
    /run SetCVar("CombatHealing", 1)
    OFF
    Code:
    /run SetCVar("CombatDamage", 0)
    /run SetCVar("CombatHealing", 0)
    Combined Toggle:
    Code:
    /run SetCVar("CombatDamage", (abs(GetCVar("CombatDamage")-1)))
    /run SetCVar("CombatHealing", (abs(GetCVar("CombatHealing")-1)))

  7. #7

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    Quote Originally Posted by Shamtasticle
    Yea just add them to the same macro.

    Alternatively if you want an "off" macro and an "on" macro:

    ON
    Code:
    /run SetCVar("CombatDamage", 1)
    /run SetCVar("CombatHealing", 1)
    OFF
    Code:
    /run SetCVar("CombatDamage", 0)
    /run SetCVar("CombatHealing", 0)
    Combined Toggle:
    Code:
    /run SetCVar("CombatDamage", (abs(GetCVar("CombatDamage")-1)))
    /run SetCVar("CombatHealing", (abs(GetCVar("CombatHealing")-1)))
    Sweet, thank you very much bud ;D


    http://www.wowarmory.com/character-sheet.xml?r=Draenor&cn=Holyxfire

  8. #8

    Re: Macro to disable and enable Blizzard Combat Text (ALL OF IT)

    Quote Originally Posted by Holyxfire
    Sweet, thank you very much bud ;D
    np

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •