Questions & Answers

Did rogue stealth detection got any form of nerf recently? been seeing 24 rogues saping me and i couldn't even hear em close in range.
Before latest patch could macro sap em easy. now kinda feels like before bg scaling.

Any got same shit?


Can someone tell me steps to link my account to my other account on battle.net, those who done it before
Open ticket, say u wanna link 2 acc
add in ticket all info on both accounts.
Names emails adress secret question and answer. then wait.
Make sure mention account you want to have as "main" after transfer.

If name you used on those 2 accs are not same - they wont help u. in most cases..
 
Last edited by a moderator:
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.
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.

To prevent wasting any of that tasty woodchuck flesh, you got to get that meat temperature down, and keep the flies away from your kill as you're skinning it. You don't want to come back to your food cache weeks later to find it infested with maggots—like what happened to that guy in Into the Wild—and you might want to bring an extra-big bag of rice just in case.
 
Last edited by a moderator:
Turns out he was a she. Skinned and cleaned. I'll let the meat dry for 48 hours and apparently you can prepare it in the same manner as rabbit. I still have to figure out how to make use of the pelt. Currently it's laying in the grass preparing for some sun in the morning. ^^

And no I am not going to do anything with the entrails [MENTION=13311]srsbsns[/MENTION] but thanks. :p
 
So this is the code to show micro menu on mouseover, otherwise hidden.

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

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?
 
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)
 
Whoops. Did not see this before posting in UI thread. ^^ You figured it out already!

MainMenuBarBackpackButton and CharacterBag0Slot (up to 3)

Sadly that does not work, I need the name for the entire group of bags, all 5 of them. The one I did for the Micromenu, was for the whole menu, and not the individual names for each button. Still looking for an answer! Good try Yde.
 
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.
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?
 

Users who are viewing this thread

Top