Uploading this on request from a random forum alt. So it probably won't be updated very often, if at all.
99% of the AddOns in this UI have no in-game configuration and must be edited directly through the Lua.
Things you'll need to change first:
oBindings: Interface\Addons\oBindings\custom.lua (use the ones I already have as a reference)
Code:
m| = new macro (enter macro text)
s| = spell (enter spell name)
M| = existing macro (enter macro name)
i| = item (enter item name)
c| = command (complicated, wouldn't try this if I were you)
gTweaks: Hides MainMenuBar, gives buffs their skins, changes Aura duration and count fonts, movable bags, hides the filter bar on the Combat Log, Unlock button on Trade Frame (rogues only), OpenAllBags at Mailbox, Bank and Merchant. If you want to change any of these things, that's where you need to go.
Things to look for that aren't obvious:
Double click the blue panel at the bottom of the screen to enlarge your ChatFrames (NOTE: You can't do this in combat!)
To apply temp enchants (poisons, oils, etc.), simply hold ALT, mouseover the item in your bag then left (MH) or right (OH) click the item to apply it
/frame to print the name of the frame your mouse is hovering over. /rl to ReloadUI.
If you are not a developer:
Do not load DevTools
These lists will grow as I spontaneously remember more crap.
The newest version is set up for a 1024x768 resolution monitor (I had to switch) See the Change Log on things you might want to change if you use a different resolution.
Change Log - gUI
Version 4
- Added raid frames
- I'm using a 1024x768 resolution now (yuck, I know) so a lot of stuff changed to scale everything down, so depending on your resolution you'll probably have to fiddle with some things (just search for :SetScale( in oUF_Lighterfluid/layout.lua, gTweaks/core.lua and change some of the font sizes in Fane, gTweaks, gDPS, gPeen and LynStats
Version 3
- Changed gPeen and gDPS to be slightly more efficient and to work better with LynStats
- Lots of oUF changes
Party frames work
Textures changed
Buff & debuff outlines work
Focus & Target frames moved
- NOTE: I still have no clue how the DruidMana, pet frames or raid frames works, so these will probably not work or act real funny. (I'll join some BGs to work on the raid frames)
- NinjaYell was recoded to be more efficient (memory usage practically cut in half, yay!)
- Added alot of crap to gTweaks. The Unlock button for Rogues is now included in there (this may act weird, haven't gotten to really test it out yet), movable bags and OpenAllBags events are in there as well now too.
Version 2
- Fixed a few of addons that were broken.
Optional Files - gUI
Sorry, there are currently no optional files available.
__________________
-A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs.
-Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes.
-Borrow money from a pessimist, they don't expect it back.
I actually fixed everything before but these commands before you had time to post, but i appreciate that you took the time to write this since others might have the same questions. Love the sleek ui =)
Originally posted by hipjipp Hi mate, nice ui, could you re-post the code you used to bind the AutoHP and AutoMP macros? I'm getting annoyed with pushing my right-bar..
I could also use some help making gDPS and gPeen work with LynStats, since i havn't figured it out yet.. It installs properly, but it doesn't show up. I'll look into it later..
Actually, you can use oBindings to set up the bindings for AutoHP and AutoMP, which I didn't know before.
Assuming your AutoHP and AutoMP macros are already created, open the custom.lua file in the oBindings folder, and somewhere in the group you use (or the "base" section) add
Code:
F5 = "M|AutoHP",
F6 = "M|AutoMP",
Obviously changed to whatever binding you use. You MUST capitalize the M, or it will attempt to create a new macro with "AutoHP" as its text.
As for the LynStats problem, if you re-downloaded LynStats then you will be having this problem. You can fix it by opening up the core.lua file in the LynStats folder and changing:
Code:
local addon = CreateFrame("Button", nil, UIParent)
to
Code:
local addon = CreateFrame("Button", "LynStats", UIParent)
gDPS uses getfenv(0) to get a pointer to the LynStats frame since it doesn't use a global, and if it doesn't find the frame then it will act funny.
I'll upload another version right now, with some bug fixes and other changes.
__________________
-A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs.
-Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes.
-Borrow money from a pessimist, they don't expect it back.
Hi mate, nice ui, could you re-post the code you used to bind the AutoHP and AutoMP macros? I'm getting annoyed with pushing my right-bar..
I could also use some help making gDPS and gPeen work with LynStats, since i havn't figured it out yet.. It installs properly, but it doesn't show up. I'll look into it later..
__________________
-A lot of people are like Slinkies; they're not really good for anything but you can't help but laugh when you see them tumble down the stairs.
-Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes.
-Borrow money from a pessimist, they don't expect it back.