Results: 3711Comments by: zork
File: rButtonTemplate11-13-12
Good reminder. I think I can spare...
Posted By: zork
Good reminder. I think I can spare some time addons now. Currently all the time got eaten by leveling, gearing up for raids. (Not even thinking about dailies...)
File: rThreat11-13-12
Hiding it in world pvp? Hmmm...I ca...
Posted By: zork
Hiding it in world pvp? Hmmm...I can think of it. Green bars are player pets named as other players. Or players in Vehicles. Thus that is all fine.
File: Roth UI (Diablo)11-13-12
Thanks.
Posted By: zork
Thanks.
File: rButtonTemplate11-12-12
This is no bug. Blizzard never adde...
Posted By: zork
This is no bug. Blizzard never added a grid to the first actionbar. That is because how the MainMenuBar works. It has a texture underneath (with a grid implemented in the background texture), all the other bars don't have that kind of background texture.
File: oUF_SVengeance11-12-12
The idea with new and old max Venge...
Posted By: zork
The idea with new and old max Vengeance per fight is actually quite good. I got rid of the bar and use an aura tracker now instead. UnitAura now delivers the tooltip values. Thus it is possible to track the Vengeance buff and get the current Vengeance value directly from checking UnitAura.
File: Roth UI (Diablo)11-12-12
Re: Question
Posted By: zork
Read about group headers: http://wowprogramming.com/docs/secure_template/Group_Headers There are values for offsetting and columnspacing. Currently I do not need them thus they have to be added in oUF_Diablo/units/party.lua line 214: Change that part to: --spawn local party = oUF:SpawnHeader( "oUF_DiabloPartyHeader",...
File: rBuffFrame11-09-12
Well it is me changing the text str...
Posted By: zork
Well it is me changing the text string a little bit to make the outcome more suitable and Blizzard blaming me for touching their holy grail of global strings. The funny thing is that this only affects arena atm. :) To get rid of the error you could delete this in rBuffFrameStyler/core/core.lua --rewrite the oneletter shortcuts...
File: Roth UI (Diablo)11-08-12
1) Check the aura tooltip. Aura sta...
Posted By: zork
1) Check the aura tooltip. Aura stacks work properly. Not sure what kind of stack that should be. 2) That is one of the DropDownMenu flaws that leap into the CompactRaidFrames...in the end. We cannot do anything about it. /reload and move on.
File: Roth UI (Diablo)11-07-12
Re: debuffs
Posted By: zork
last question i promise, how do i get the ui to show only my debuffs on the target oUF_Diablo/config.lua line 338. Set that value to true. http://code.google.com/p/rothui/source/browse/trunk/wow5.0/oUF_Diablo/config.lua#338
File: Roth UI (Diablo)11-06-12
Re: raid frame
Posted By: zork
There is no command. Download Notepad++ if you are on PC. Open oUF_Diablo/config.lua, scroll down to the raid settings and set show to false.
File: Roth UI (Diablo)11-03-12
Yes I tested it. One of your addons...
Posted By: zork
Yes I tested it. One of your addons changes the default QuestWatchFrame or sth alike. Roth UI works fine in challenge modes. No clue what addon is causing this for you. Test: http://imgur.com/a/zzZNY
File: Roth UI (Diablo)11-02-12
Currently not. Normally I do this i...
Posted By: zork
Currently not. Normally I do this in my free time when I have nothing better to do. That time is eaten by other things atm. But thanks for reminding me. Actually having an ingame option to change the orb animations colors would be a big plus. But to do it I have to rewrite tons of code to make it right and not duck-tape it.
File: Roth UI (Diablo)11-02-12
Re: Just want to hide raid frames on my healer!
Posted By: zork
Open oUF_Diablo/charspecific.lua add this at the bottom: if cfg.playername == "Faultline" and cfg.playerclass == "MONK" then cfg.units.raid.show = false end Open oUF_Diablo/oUF_Diablo.toc . Go to line 22 and remove the "##" infront of the line making it charspecific.lua
File: Roth UI (Diablo)11-01-12
Re: Re: Re: The string can not show chinese character.
Posted By: zork
You want hex colored strings. local color = "0099ff" local string = "|cff"..color..string.."|r" |c = start coloring ff = alpha value (currently unused) 0099ff = color in hex string = the string you want to color |r = close coloring
File: Roth UI (Diablo)11-01-12
Re: The string can not show chinese character.
Posted By: zork
Make sure to save the file in Unicode (UTF-8) file encoding. I think the current charset may be set to Western-European. You need Notepad++ or any other text editor that can handle charsets to do so. http://npp-community.tuxfamily.org/documentation/notepad-user-manual/document-properties/encoding Additionally make sure the font y...
File: Roth UI (Diablo)10-31-12
Re: party frames druid hots
Posted By: zork
AuraWatch is disabled by default. You can enable it in the config. http://code.google.com/p/rothui/source/browse/trunk/wow5.0/oUF_Diablo/config.lua#555
File: Roth UI (Diablo)10-29-12
No those are bundled into the oUF l...
Posted By: zork
No those are bundled into the oUF layout. Currently no other person asked me for permission to use them in a standalone classbar addon and I have no intention of doing one.
File: rActionBar10-29-12
That is in rActionBarStyler/config.lua
Posted By: zork
That is in rActionBarStyler/config.lua
File: Roth UI (Diablo)10-29-12
@twopac187 I haven't tried challen...
Posted By: zork
@twopac187 I haven't tried challenge mode yet. If you got any info on that please let me know. It would be enough if you could do an /fstack and grab the frame names. Then it is possible to find out who the frames are anchored to. @vamipoyo That is bToolTip. I have fixed it already in the PTR version and my local copy. The insp...
File: rActionBar10-29-12
Keybinds = Hotkeys. So set the hotk...
Posted By: zork
Keybinds = Hotkeys. So set the hotkey setting in rActionButtonStyler/config.lua to true.
File: Roth UI (Diablo)10-28-12
@Givenchy Yeah that doesn't look...
Posted By: zork
@Givenchy Yeah that doesn't look right. Make sure you have the latest Roth UI. Those config values you are using are from Roth UI from patch 4.3. oUF_Diablo changed in the time being. @lalcom Open oUF_Diablo/core/lib.lua line 173: Comment in this: http://code.google.com/p/rothui/source/browse/trunk/wow5.0/oUF_Diablo/core/lib.l...
File: Roth UI (Diablo)10-28-12
I just tested it on a new char: htt...
Posted By: zork
I just tested it on a new char: http://imgur.com/a/BE8xE What is your setting for Holy Power? http://code.google.com/p/rothui/source/browse/trunk/wow5.0/oUF_Diablo/config.lua#202 Have you enabled it? Other then that enable "Show Lua errors" in your Interface settings under help/others. Do a /reload and check what you got. N...
File: Roth UI (Diablo)10-27-12
In case someone is on the PTR. You...
Posted By: zork
In case someone is on the PTR. You can use: http://www.wowinterface.com/downloads/fileinfo.php?id=21819
File: oUF_Diablo10-26-12
Re: Orb Resizing
Posted By: zork
Check rBBS.
File: Roth UI (Diablo)10-26-12
Change the parent of the WIM button...
Posted By: zork
Change the parent of the WIM button frame to minimap?