Questions & Answers

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.
What about MainMenuExpBar:Hide() for the exp. bar? Did you try the bag names in table? Don't have WoW installed so I can't try things. ^^

local t = {
"MainMenuBarBackpackButton",
"CharacterBag0Slot",
"CharacterBag1Slot",
"CharacterBag2Slot",
"CharacterBag3Slot",
}

local function showFoo(self)
for _, v in ipairs(t) do
_G[v]:SetAlpha(1)
end
end

local function hideFoo(self)
for _, v in ipairs(t) do
_G[v]:SetAlpha(0)
end
end

for _, v in ipairs(t) do
v = _G[v]
v:SetScript("OnEnter", showFoo)
v:SetScript("OnLeave", hideFoo)
v:SetAlpha(0)
end
 
What about MainMenuExpBar:Hide() for the exp. bar? Did you try the bag names in table? Don't have WoW installed so I can't try things. ^^

local t = {
"MainMenuBarBackpackButton",
"CharacterBag0Slot",
"CharacterBag1Slot",
"CharacterBag2Slot",
"CharacterBag3Slot",
}

local function showFoo(self)
for _, v in ipairs(t) do
_G[v]:SetAlpha(1)
end
end

local function hideFoo(self)
for _, v in ipairs(t) do
_G[v]:SetAlpha(0)
end
end

for _, v in ipairs(t) do
v = _G[v]
v:SetScript("OnEnter", showFoo)
v:SetScript("OnLeave", hideFoo)
v:SetAlpha(0)
end

You are one wonderful wonderful person Yde! Thank you it worked! And I have tried that script to hide exp. bar, but it always shows again whenever I open character pane, and what not.
 
You are one wonderful wonderful person Yde! Thank you it worked! And I have tried that script to hide exp. bar, but it always shows again whenever I open character pane, and what not.
Tricky! :D

Then how about:

MainMenuExpBar:SetScript("OnEvent", nil);
MainMenuExpBar:Hide();
 
Maybe we can move the Experience Bar? I don't know what the code for the script would be.
Maybe that could work:

MainMenuExpBar:ClearAllPoints();
MainMenuExpBar:SetPoint("CENTER",x,y)

with x and y as coordinates. Or, last resort:

MainMenuExpBar::SetAlpha(0)

ExpBar, supervillain...


EDIT: Once you're done, you could compile your own addon for curse called Fael UI :D
 
Maybe that could work:

MainMenuExpBar:ClearAllPoints();
MainMenuExpBar:SetPoint("CENTER",x,y)

with x and y as coordinates. Or, last resort:

MainMenuExpBar::SetAlpha(0)

ExpBar, supervillain...


EDIT: Once you're done, you could compile your own addon for curse called Fael UI :D

The Last resort worked, it was nice knowing you ExpBar.
 
Last edited by a moderator:
So i got Open broadcaster and I can't use it because it says my computer doesn't have DirectX 10 but my WoW game runs on DirectX 9 and DirectX 11 how do fix this?
 
When you are grouped with someone, is it possible for him to share a quest with you while you are in a battleground?

Cheers
Gattuso

If the quest is shareable ofc. Don't have to be in group just bg. That's how the AB quest is still alive.
 
By sheer force of will of course.
 

Users who are viewing this thread

Top