Thread Tools Display Modes
05-29-10, 05:22 AM   #1
Jokkl
A Kobold Labourer
Join Date: May 2010
Posts: 1
RecRunes

Just a quick question:

can somebody help me and show me what i have to do so that the runes are in the blizzlike order?

http://www.wowinterface.com/downloads/index.php?cid=112

this is from the comments... but i dont know what i have to do.

Quote:
Originally posted by peewee_sweden
local runeOrder = {1,2,5,6,3,4}
rune[runeOrder[i]]

Would that work?
In a basic sense, yes. This is kinda what Blizzard does, actually. They created the runes in the order RRGGBB, referenced with 123456. Then they created extra code to change the order back to RRBBGG - which I can only guess is to match the order of the talent trees.

FrameXML\RuneFrame.lua:
Code:

function RuneFrame_FixRunes(runeFrame)
local temp;

temp = runeFrame.runes[3];
runeFrame.runes[3] = runeFrame.runes[5];
runeFrame.runes[5] = temp;

temp = runeFrame.runes[4];
runeFrame.runes[4] = runeFrame.runes[6];
runeFrame.runes[6] = temp;
end

With recRunes, you can easily change the order using various methods, as long as the indexes all match up the way you want them to appear. For recRunes, as default, the order is 123456, and it's that way on purpose - but you can use 125634 in your own copy if you like. =3 I may at some point add a toggle for it, but I have always preferred my runes in the logical RGB order for readability/quick mental processing - and I find it quite silly to add extra overhead to put the runes out of order like Blizzard's.
would be nice if someone could help me with this.

and sry for me bad english
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » RecRunes

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off