If you wish to help support this site please disable your adblock program.


Click here to become a Premium Member : No ads site-wide : Forum privileges : Upgraded services : Giveaway & moreSupport the Site! Support Us!
Tukui » Tukui » Questions » Buffs per row?
  1. Rival Edine
    offline
    Donor
    Posts: 435

    I cant seem to find the command to change how many buffs u get per row. Used to be able to do it with v12. Anyone that can help me in the right direction?

    Posted 2 years ago - #1

    Permalink



  2. If you wish to help support this site please disable your adblock program.


    Rival Edine
    offline
    Donor
    Posts: 435

    Bump.

    Each row is only 8 buffs atm, i want it to be way more :) Anyone that can help?

    Posted 2 years ago - #2

    Permalink

  3. Challenger Navia
    offline
    Member
    Posts: 8

    I would also like to know how to fix this.

    Posted 2 years ago - #3

    Permalink

  4. Rival Edine
    offline
    Donor
    Posts: 435

    After a while of trying and a night of sleep i fixed my problem. '

    I found this code

    -- create our aura
    local start = CreateFrame("Frame")
    start:RegisterEvent("VARIABLES_LOADED")
    start:SetScript("OnEvent", function(self)
    	local frames = {TukuiPlayerBuffs,TukuiPlayerDebuffs}
    	for i = 1, getn(frames) do
    		local frame = frames[i]
    		local position = frame:GetPoint()
    		if position:match("TOPLEFT") or position:match("BOTTOMLEFT") or position:match("BOTTOMRIGHT") then
    			frame:SetAttribute("point", position)
    		end
    		if position:match("LEFT") then
    			frame:SetAttribute("xOffset", 36)
    		end
    		if position:match("BOTTOM") then
    			frame:SetAttribute("wrapYOffset", 68)
    		end
    		if T.lowversion then
    			frame:SetAttribute("wrapAfter", 12)
    		end
    	end
    end)

    at the bottom it said

    if T.lowversion then
    			frame:SetAttribute("wrapAfter", 8)

    i simpley changed it to

    		if T.lowversion then
    			frame:SetAttribute("wrapAfter", 12)

    and it worked, this is ofc in Lowress version

    But you must likely just need t o change some of the other numbers if u use highress.

    Posted 2 years ago - #4

    Permalink

  5. Challenger Airfrischung
    offline
    Member
    Posts: 27

    In which file do I have to look for that code?

    Posted 2 years ago - #5

    Permalink

  6. Challenger Syk
    offline
    Member
    Posts: 34

    World of Warcraft\Interface\Addons\Tukui\modules\buffs at the very bottom

    Posted 2 years ago - #6

    Permalink

RSS feed for this topic

Reply

You must log in to post.