1. #1

    Roth UI Interface problems

    I've been trying to customize Roth UI, but it's just not coming together...I must be missing a step somewhere.

    I'm trying to change the colors of the globes, but it never works...it just always loads the default colors.

    Here is a screenshot of my config file...any help would be appreciated http://i.imgur.com/pQQXSyJ.jpg

    (I'll be out for an hour or so, will return to reply then)

  2. #2
    The section you took a picture of doesn't involve the colors per se --- probably gotta scroll down more. Just saying, I haven't looked at RothUI before and it looks like you can configure quite a lot, author or more experienced users might be able to come with more helpful feedback.

    Also just a tip, I'd ask at wowinterface.com RothUI comment section, or forums, as it's where the addon is hosted, so you can get help there as well.

  3. #3
    Thanks! I'll check out that comments section.

  4. #4
    Code:
      cfg.animClassOverride = {
        ["DEATHKNIGHT"]   = { enable = true, animhealth = 13, animmana = 4,   classcolored = true,  powertypecolored = true,  healthmultiplier = 0.5,  manamultiplier = 1,  healthdecreasealpha = true, manadecreasealpha = true, },
        ["DRUID"]         = { enable = true, animhealth = 18, animmana = 9,   classcolored = true,  powertypecolored = true,  healthmultiplier = 0.4,  manamultiplier = 0.4,  healthdecreasealpha = false, manadecreasealpha = false, },
        ["HUNTER"]        = { enable = true, animhealth = 20,  animmana = 6,  classcolored = false, powertypecolored = false, healthmultiplier = 0.13,    manamultiplier = 0.13,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["MAGE"]          = { enable = true, animhealth = 4,  animmana = 6,   classcolored = true,  powertypecolored = true, healthmultiplier = 0.4,  manamultiplier = 0.4,    healthdecreasealpha = true, manadecreasealpha = true,  },
        ["MONK"]          = { enable = true, animhealth = 4,  animmana = 6,   classcolored = true,  powertypecolored = true, healthmultiplier = 0.4,  manamultiplier = 0.4,    healthdecreasealpha = true, manadecreasealpha = true,  },
        ["ROGUE"]         = { enable = true, animhealth = 3,  animmana = 22,  classcolored = false, powertypecolored = true,  healthmultiplier = 1,    manamultiplier = 0.3,  healthdecreasealpha = true,  manadecreasealpha = false, },
        ["PRIEST"]        = { enable = true, animhealth = 19, animmana = 11,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["PALADIN"]       = { enable = true, animhealth = 1,  animmana = 17,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["SHAMAN"]        = { enable = true, animhealth = 16, animmana = 15,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        --["WARRIOR"]       = { enable = true, animhealth = 2,  animmana = 0,  classcolored = true, powertypecolored = true, healthmultiplier = 0.4,    manamultiplier = 0.4,  healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["WARRIOR"]       = { enable = true, animhealth = 23,  animmana = 20,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,  healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["WARLOCK"]       = { enable = true, animhealth = 26, animmana = 9,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
      }

    For any and all classes that you do not want the orbs to be class colored or powercolor set the value to false. (ie: classcolored = false, powertypecolored = false)
    Then right below that in the config you can alter orb colors by changing cfg.healthcolor and cfg.manacolor.
    Scroll down to line 700 and fiddle around with the rgb values for the animations that you plan on using.
    AddOns: Tim @ WoWInterface
    Characters: Mage, Priest, Devoker, Pally
    Battle Tag: Mysterio#11164
    Current PC Setup: PCPartPicker List

  5. #5
    Quote Originally Posted by Cirax View Post
    Code:
      cfg.animClassOverride = {
        ["DEATHKNIGHT"]   = { enable = true, animhealth = 13, animmana = 4,   classcolored = true,  powertypecolored = true,  healthmultiplier = 0.5,  manamultiplier = 1,  healthdecreasealpha = true, manadecreasealpha = true, },
        ["DRUID"]         = { enable = true, animhealth = 18, animmana = 9,   classcolored = true,  powertypecolored = true,  healthmultiplier = 0.4,  manamultiplier = 0.4,  healthdecreasealpha = false, manadecreasealpha = false, },
        ["HUNTER"]        = { enable = true, animhealth = 20,  animmana = 6,  classcolored = false, powertypecolored = false, healthmultiplier = 0.13,    manamultiplier = 0.13,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["MAGE"]          = { enable = true, animhealth = 4,  animmana = 6,   classcolored = true,  powertypecolored = true, healthmultiplier = 0.4,  manamultiplier = 0.4,    healthdecreasealpha = true, manadecreasealpha = true,  },
        ["MONK"]          = { enable = true, animhealth = 4,  animmana = 6,   classcolored = true,  powertypecolored = true, healthmultiplier = 0.4,  manamultiplier = 0.4,    healthdecreasealpha = true, manadecreasealpha = true,  },
        ["ROGUE"]         = { enable = true, animhealth = 3,  animmana = 22,  classcolored = false, powertypecolored = true,  healthmultiplier = 1,    manamultiplier = 0.3,  healthdecreasealpha = true,  manadecreasealpha = false, },
        ["PRIEST"]        = { enable = true, animhealth = 19, animmana = 11,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["PALADIN"]       = { enable = true, animhealth = 1,  animmana = 17,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["SHAMAN"]        = { enable = true, animhealth = 16, animmana = 15,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
        --["WARRIOR"]       = { enable = true, animhealth = 2,  animmana = 0,  classcolored = true, powertypecolored = true, healthmultiplier = 0.4,    manamultiplier = 0.4,  healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["WARRIOR"]       = { enable = true, animhealth = 23,  animmana = 20,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,  healthdecreasealpha = true,  manadecreasealpha = true,  },
        ["WARLOCK"]       = { enable = true, animhealth = 26, animmana = 9,  classcolored = false, powertypecolored = false, healthmultiplier = 1,    manamultiplier = 1,    healthdecreasealpha = true,  manadecreasealpha = true,  },
      }

    For any and all classes that you do not want the orbs to be class colored or powercolor set the value to false. (ie: classcolored = false, powertypecolored = false)
    Then right below that in the config you can alter orb colors by changing cfg.healthcolor and cfg.manacolor.
    Scroll down to line 700 and fiddle around with the rgb values for the animations that you plan on using.

    Thanks got it!

    Do you know how to remove the right actionbars? I went into the config for the action bars and set bar 4 and 5 enable to false, but they're still there.

  6. #6
    Deleted
    I answered that already in the comments. You can do that directly in the game. Do not fiddle with rActionBarStyler unless you have to.
    http://www.wowinterface.com/portal.p...=faq&faqid=637

  7. #7
    Quote Originally Posted by zorker View Post
    I answered that already in the comments. You can do that directly in the game. Do not fiddle with rActionBarStyler unless you have to.
    http://www.wowinterface.com/portal.p...=faq&faqid=637
    you are the man

    danke!

Posting Permissions

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