Open ticket, say u wanna link 2 accCan someone tell me steps to link my account to my other account on battle.net, those who done it before
If name you used on those 2 accs are not same - they wont help u. in most cases..
Just saw this little beauty dropping...
... wondering if it is BIS?
Onyx Claymore - Item - World of Warcraft
Just saw this little beauty dropping...
... wondering if it is BIS?
Onyx Claymore - Item - World of Warcraft
Possibly stew. Also make a hat.I just shot and killed a woodchuck. He was very cute. How can I feel better about this?
Haha thanks. Let's see if I can figure out how to field dress him.Possibly stew. Also make a hat.
make a hat.
Good luck!Haha thanks. Let's see if I can figure out how to field dress him.
LFH is clearly made of woodchuck leather.nevah, LFH all the way.
For the guilt, you should have none as long as none of the woodchuck goes to waste: eat the meat, make a hat out of the skin, and maybe you could make bowstrings out of the entrails. Afterwards, thank the Woodchuck Spirit for his bounty.Haha thanks. Let's see if I can figure out how to field dress him.
local ignore
local function setAlpha(b, a)
if ignore then return end
ignore = true
if b:IsMouseOver() then
b:SetAlpha(1)
else
b:SetAlpha(0)
end
ignore = nil
end
local function showFoo(self)
for _, v in ipairs(MICRO_BUTTONS) do
ignore = true
_G[v]:SetAlpha(1)
ignore = nil
end
end
local function hideFoo(self)
for _, v in ipairs(MICRO_BUTTONS) do
ignore = true
_G[v]:SetAlpha(0)
ignore = nil
end
end
for _, v in ipairs(MICRO_BUTTONS) do
v = _G[v]
hooksecurefunc(v, "SetAlpha", setAlpha)
v:HookScript("OnEnter", showFoo)
v:HookScript("OnLeave", hideFoo)
v:SetAlpha(0)
end
Whoops. Did not see this before posting in UI thread. ^^ You figured it out already!So this is the code to show micro menu on mouseover, otherwise hidden.
Now I just have to replace the (MICRO_BUTTONS) part with the correct name of the Bag buttons in game, so I can apply the same thing to the bags as the micro menu. Anyone know what that name might be?
Whoops. Did not see this before posting in UI thread. ^^ You figured it out already!
MainMenuBarBackpackButton and CharacterBag0Slot (up to 3)
I know you don't want to use any addons but why don't you use bartender dood? And how do you keep track of interrupts with no addons?Found the action bar script, now I need to find the code to move the exp. bar frame outside the screen, because it's ugly, and just the script to hide bags on mouseover.