I died during the horse phase in PDC (challenge of champions in english??, the "new" 5 man instance). when i mount up on a new horse, the error occued. the bar for all horse attacks disappeared and didn't show up again
Добрый день,возникла проблемка с установкой данной версии сборки.
Если Русскоговорящии и кому не сложно откликнитесь помогите
icq 597847 зарание спасибо.
Originally posted by conman92 Im just wondering If there is a way for me to move the raid frames. I would like to relocate them to the upper left hand corner.
go to oUF_Freebgrid folder and open config.lua and freebgrid.lua both of 'em have all te configuration for raid frames, open 'em with an .lua editor of course
first to tell, this UI is awesome, I really like the way how it looks, it simple and precise, but, I would like to modify some smaller things, for example texture of bars, move minimap etc., but I have one big problem - where do I configure all these addons? Do I have to configure everything in lua in notepad or is there any way, how to configure the addons ingame?
Thanks very much for answering me and for great UI.
Originally posted by vaplis Hello, i have few questions about this nice compilation. First, in my screen you may see some overlayed chat channels thing just above chat window, and i can't remove it. How could it be done?
Second, raid frame displays russian words when member is dead or offline. I would like to change that.
And third thing, when i log my shaman, i can't see this new totem bar.
Thanks in advance.
The chat 'bug'. Is because in WTF the chat-cache isn't right. It worked when I deleted it and redownloaded the chat-cache file.
Quote:
Originally posted by conman92 I want to change my keybindings. Do i just have to go into the original Blizz Keybindings screen and figure it out?
It's also possible to download BindPad. Very good addon for keybindings.
Hey Alekk,
First of all, I love you UI! Congratulations!
Now to my Problems:
I have the same issue with aLoot like the one some posts before, when I want to give the people their items a error message displays and i have to log out deactivate aLoot and log in again.
And sometimes when the actionbars should switch, per example when I sit on a wolf in Trial of the Champion, they don't switch and a error message displays in my chat.
Please can you fix at least the 1. one? You could release it as extern dl independent from the compilation.
thx
Hello, i have few questions about this nice compilation. First, in my screen you may see some overlayed chat channels thing just above chat window, and i can't remove it. How could it be done?
Second, raid frame displays russian words when member is dead or offline. I would like to change that.
And third thing, when i log my shaman, i can't see this new totem bar.
Hey, I recently made a DK and I got a question on the rune bar. The rune bar shows all 6 runes, but only the blood runes are in color. The unholy and frost runes stay grey. Anyone know how to solve this? Or is this just normal and I lack knowlegde of DKs?
Edit: Nevermind, I fixed it my self by editing the ouf_alekk.lua code stuff. I don't know if the code is right, but it does work for me. This is what I did to fix it. replace
Code:
if(i == 1) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -4, 4)
else
self.RuneBar[i]:SetPoint('TOPRIGHT', self.RuneBar[i-1], 'TOPLEFT', -7, 0)
end
with
Code:
for i = 1, 6 do
self.RuneBar[i] = CreateFrame('StatusBar', nil, self)
if(i == 1) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -4, 4)
end
if(i == 2) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -16, 4)
end
if(i == 3) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -28, 4)
end
if(i == 4) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -40, 4)
end
if(i == 5) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -52, 4)
end
if(i == 6) then
self.RuneBar[i]:SetPoint('BOTTOMRIGHT', self, 'BOTTOMLEFT', -64, 4)
end
Last edited by DurkaDurka : 10-21-2009 at 09:00 AM.
can we not come up with a texture for the tracking border?! everything else in the entire UI has matching textures and borders and looks awesome and the tracking for the minimap stands out like a sore thumb.
aside from that annoying me i think this is an outstanding UI and useful for teaching myself more about how to do lua