1. #10301
    Quote Originally Posted by Sedivy View Post
    There are many, too many to list, but here are a few very different designs to give you some ideas of the kinds of UI out there:
    http://www.wowinterface.com/download...ronUIGen2.html
    http://www.wowinterface.com/download...1920x1080.html
    http://www.wowinterface.com/download...nnsAionUI.html
    http://www.wowinterface.com/download...lysm2.0UI.html
    To get a list of them all search for your resolution in addon descriptions in advanced search.

    Thanks a ton.

  2. #10302
    Deleted
    I'm trying to move my oUF GCD bar, but I can't for the life of me find the bit of code that dictates the positioning on the screen. Any help would be much appreciated.

    PHP Code:
    local _ns = ...
    local oUF ns.oUF or oUF

    local referenceSpells 
    = {
        
    45902,            -- Death Knight
        1978
    ,            -- Hunter
        21562
    ,            -- Priest
        635
    ,            -- Paladin
        686
    ,            -- Warlock
        133
    ,            -- Mage
        7386
    ,            -- Warrior
        331
    ,            -- Shaman
        1752
    ,            -- Rogue
        1126
    ,            -- Druid
    }


    local GetTime GetTime
    local BOOKTYPE_SPELL 
    BOOKTYPE_SPELL
    local GetSpellCooldown 
    GetSpellCooldown


    local spellid 
    nil


    --
    -- 
    find a spell to use.
    --
    local Init = function()
        
    local FindInSpellbook = function(spell)
            for 
    tab 1do
                
    local __offsetnumSpells GetSpellTabInfo(tab)
                for 
    = (1+offset), (offset numSpells) do
                    
    local bspell GetSpellInfo(iBOOKTYPE_SPELL)
                    if (
    bspell == spellthen
                        
    return i   
                    end
                end
            end
            
    return nil
        end

        
    for _lspell in pairs(referenceSpells) do
            
    local na GetSpellInfo (lspell)
            
    local x FindInSpellbook(na)
            if 
    ~= nil then
                spellid 
    lspell
                
    break
            
    end
        end

        
    if spellid == nil then
            
    -- XXX: print some error ..
            print (
    "Foo!")
        
    end

        
    return spellid
    end


    local OnUpdateGCD 
    = function(self)
        
    local perc = (GetTime() - self.starttime) / self.duration
        
    if perc 1 then
            self
    :Hide()
        else
            
    self:SetValue(perc)
        
    end
    end


    local OnHideGCD 
    = function(self)
         
    self:SetScript('OnUpdate'nil)
    end


    local OnShowGCD 
    = function(self)
        
    self:SetScript('OnUpdate'OnUpdateGCD)
    end


    local Update 
    = function(selfeventunit)
        if 
    self.GCD then
            
    if spellid == nil then
                
    if Init() == nil then
                    
    return
                
    end
            end

            local start
    dur GetSpellCooldown(spellid)

            if (
    not startthen return end
            
    if (not durthen dur 0 end

            
    if (dur == 0then
                self
    .GCD:Hide() 
            else
                
    self.GCD.starttime start
                self
    .GCD.duration dur
                self
    .GCD:Show()
            
    end
        end
    end


    local Enable 
    = function(self)
        if (
    self.GCDthen
            self
    .GCD:Hide()
            
    self.GCD.starttime 0
            self
    .GCD.duration 0
            self
    .GCD:SetMinMaxValues(01)

            
    self:RegisterEvent('ACTIONBAR_UPDATE_COOLDOWN'Update)
            
    self.GCD:SetScript('OnHide'OnHideGCD)
            
    self.GCD:SetScript('OnShow'OnShowGCD)
        
    end
    end


    local Disable 
    = function(self)
        if (
    self.GCDthen
            self
    :UnregisterEvent('ACTIONBAR_UPDATE_COOLDOWN')
            
    self.GCD:Hide()  
        
    end
    end


    oUF
    :AddElement('GCD'UpdateEnableDisable
    Last edited by lawomous; 2012-08-20 at 05:44 PM.

  3. #10303
    Bloodsail Admiral Zapgreen's Avatar
    15+ Year Old Account
    Join Date
    Jan 2009
    Location
    The pumpkin patch
    Posts
    1,000
    Anyone know of a good addon that shows who's attacking your target?

    I do a lot of RBGs and we're not doing as well as I think we should be, probably because the people we get all seem to have difficulty understanding hard swtiching. I know BGtargets shows the number of people targeting, but not specific names. It also shows people who target them from anywhere, like if the tank is in our flag room but watching the enemy tanks HP. I want to be able to call people out by name who aren't on the target. I tried Xperl, they had some sort of raid assist thing, but I don't like it. I just want a simple box that I can put in a corner of my screen, a stand alone assist addon or whatever.

  4. #10304
    Quote Originally Posted by Roangut View Post
    Anyone know of a good addon that shows who's attacking your target?

    I do a lot of RBGs and we're not doing as well as I think we should be, probably because the people we get all seem to have difficulty understanding hard swtiching. I know BGtargets shows the number of people targeting, but not specific names. It also shows people who target them from anywhere, like if the tank is in our flag room but watching the enemy tanks HP. I want to be able to call people out by name who aren't on the target. I tried Xperl, they had some sort of raid assist thing, but I don't like it. I just want a simple box that I can put in a corner of my screen, a stand alone assist addon or whatever.
    http://www.wowace.com/addons/magic-targets/
    (mouse over the target bars to see who's targetting them)
    or
    http://www.wowinterface.com/download...93-TipTac.html
    (when you mouse over the mob)

    ---------- Post added 2012-08-13 at 04:38 PM ----------

    I'm trying to move my oUF GCD bar, but I can't for the life of me find the bit of code that dictates the positioning on the screen. Any help would be much appreciated.
    I don't think the positioning code is in that bit...

  5. #10305
    Deleted
    That's all of the code there is

  6. #10306
    oUF GCD is a plugin for oUF and usually used in conjunction with specific oUF layouts. oUF layout specific files is where I'd look first.

  7. #10307
    Are there any mods that allow you to reskin recount and/or Omen?

  8. #10308
    Quote Originally Posted by rayden54 View Post
    Are there any mods that allow you to reskin recount and/or Omen?
    http://www.wowace.com/addons/skinner...-with-skinner/

  9. #10309

  10. #10310
    I'm currently redoing my unit frames with PitBull, but it blocks the function for sending the pet away. Is there any way around this? I tried Stuf before PitBull but it was the same.
    (Apart from sending it away by casting the spell)

  11. #10311
    Check the latest alphas. A lot of fixes were done lately on Pitbull though some of them have to do with MoP.
    http://www.wowace.com/addons/pitbull4/files/

  12. #10312
    Hi,

    i am using a self-build UI with addons like Bartender, Skinner, Bazooka, Bagnon, SUF, Quartz etc.
    There are two problems:
    My Grid works fine, configuration of indicators etc. But my Grid doesn`t save settings of background colour and the colour of the frame of the skada window.
    I make my settings, confirm everything with ok, log out, log in and the changes aren`t no more active.

    plz help

    edit: all addons are up to date by curse client
    edit2: profile resetting doesn`t help
    Last edited by Kigama; 2012-08-16 at 01:25 PM.

  13. #10313
    That's probably Skinner. Disable it's skinning of Grid and Skada.

  14. #10314
    yes thx. skinner was the bad guy causing the problems^^

  15. #10315
    Deleted
    anyone know the full list of addons that ELVUI uses?? iva had a fukk full of elvui and reloading my ui every 5 mins cos its a buggy pile of crap ;p so im goin back to blizz ui but would like a list of easy to configure addons for stuff like buffs/debuffs etc. thx

  16. #10316
    is there an addon to organize the inventory, kinda like ElvUI and TukUI have?

  17. #10317
    Quote Originally Posted by Zaak View Post
    is there an addon to organize the inventory, kinda like ElvUI and TukUI have?
    Genie
    10char....

  18. #10318

    anyone know the full list of addons that ELVUI uses?? iva had a fukk full of elvui and reloading my ui every 5 mins cos its a buggy pile of crap ;p so im goin back to blizz ui but would like a list of easy to configure addons for stuff like buffs/debuffs etc. thx
    You might be using a wrong version. If you downloaded a MoP version and are trying to use it on live, that might be the reason you're seeing errors.
    As for individual addons, ElvUI and TukUI aren't compilations made up of various addons. Every mini addon within them is specifically coded only for that UI so they can't be extracted as separate addons. You can find on wowinterface similar looking UIs that are compilations and use that instead if that's what you want.
    Last edited by Sedivy; 2012-08-17 at 07:46 PM.

  19. #10319
    Deleted
    http://i.imgur.com/x8UJF.png
    Can anyone send me something similar to this one (the unit frames) ? I'd really like to have such unit frames,but cant seem to be able to make it

  20. #10320
    Quote Originally Posted by Techno View Post
    http://i.imgur.com/x8UJF.png
    Can anyone send me something similar to this one (the unit frames) ? I'd really like to have such unit frames,but cant seem to be able to make it
    That's one of the ElvUI configurations. You can make similar layouts using popular unitframes like pitbull and STUF but it needs quite a bit of tinkering. There is no premade layout that's exactly the same. The closest would be getting oUF and one of somewhat similar looking layouts:
    http://www.wowinterface.com/download...F_Itrulia.html
    http://www.wowinterface.com/download...tomMenace.html
    http://www.wowinterface.com/download...4-oUF_Drk.html
    http://www.wowinterface.com/download...UF_Barbol.html

Posting Permissions

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