Download
(2MB)
Download
Updated: 09-08-18 08:25 AM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:09-08-18 08:25 AM
Created:09-19-10 11:32 AM
Downloads:60,506
Favorites:133
MD5:
Categories:Minimalistic Compilations, Graphical Compilations, Class Compilations, DPS Compilations, Tank Compilations, Generic Compilations

Rufio UI Classic  Popular! (More than 5000 hits)

Version: 5.2
by: Rufio [More]

Info
just like the standard ui but smaller and darker

Install
please remove all addons/textures from previous installations
unzip in \World of Warcraft\Interface (not addons)
rename \WTF\Account\ACCOUTNAME
select RufioUI as profile for easyframes, kui_nameplates

Info
NOT included addons from the image:
Bufftracking from Weak Auras 2
Bossmod is BigWigs
Bossmod barskin is nibRealUI_BossSkins

You can use the twitchapp/curse updater! Just don't update addons taggeg as "modified".

Known bugs/issues
exp bar texture is a bit off

Addonlist
AutoHideRightBar - right actionbars on mouseover
Badboy - less chat spam
BuyEmAll - i like to buy more than one stack at a time
EasyFrames - unitframes /ef
HGarri - minimap orderhallicon is now mouseover
HideMicroButtonAndBags - fly out bags/micro bar
Higher HotKey - hotkeys visible all the time
Kui_Nameplates - nameplates
ls_Toasts - reskins the toasts window /lstoasts -> Interface -> Addons to edit & move
LucyRaidFrames - standard raidframe styling
LynStats - fps/ms info (bottom right)
nBuff - style those buffs
PlusNothing - no more healing spam in combat text
rButtonTemplate - button skinning
rCombatText - styles the combat text (enable combat text for self in the settings)
rufioMedia - just a bartexture atm
rufioSettings - merged addons and ui scripts

  • Bossframes - resized & scaled
  • Castbars - castbar styling
  • Chat - clean chat
  • Classcolors - on units
  • Classicons - on untis
  • CopyUrl - url copy from chat
  • Durability - on charscreen by tek
  • Guildtab - i need my guild on "o"
  • Hotkey - renaming keybinds
  • Minimap - clean minimap
  • noError - no red errors in the middle of the screen
  • RaidFrameReSizer - even more scaleable raidframes
  • NumQuest - how many quests are in my questlog - X/25
  • Repair - repairs your gear
  • rufioSettings - rescale, reposition, hiding petname, slash commands, moveable questtracker etc.
  • Tooltip - tooltip
TargetPercent - adds 100.0% target/focus/boss frames (you should choose "none" for statustext in the default settings if you want to use this)
teksErr - show me those bugs
tullaCC - nicer number on CDs (modified coloring)
tullaRange - OOR coloring on buttons

Credits
nothing from the code is by myself so thanks to all the authors (especially roth/Lyn/Tekkub/haste/alza/neal/dawn/monolit/evl/Aprikot)
textures are from ThuBzBlizzUI by Thubz
class icons from Flat Player Icons by gossipgirlxo

Moving Unitframes
right click player/targetframe and click Unlock Frame

and drag them. Rightclick and Lock Frame to lock them in position.

5.2
updates
+LucyRaidFrames
+PlusNothing
5.1.1
now with Kui_Nameplates config
updated credits
5.1
back to blizzard bars!
+rButtonTemplate
+AutoHideRightBar
+HideMicroButtonAndBags
+Higher HotKey
+tullaRange
5.0
BFA pre-patch update
4.6
7.2x fixes
*new* HGarri - mouseover Orderhallicon on minimap
*new* rufioSettings/JunkSeller - sells junk
*new* rufioSettings/Repair - repairs your gear - moved from rufioSettings to own file
!BugGrabber + BugSack - removed
4.5
7.1x fixes
4.4
7.1 updates
4.3
addon updates
ls_Toasts, PhotoRobot, rCombatText, TargetPercent are new
4.2
bossframes moved
arenaframe edits disabled (got some errors)
4.1
error text removed
old tooltip
stuff
4.0
legion prerelease
fixed stuff, thx 2 sticklord & Kkthnx
Optional Files (1)
File Name
Version
Size
Author
Date
Type
1.8.1
2MB
02-20-12 07:30 AM
Addon


Post A Reply Comment Options
Unread 11-08-12, 10:16 AM  
Rufio
A Murloc Raider
 
Rufio's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 289
Uploads: 5
Originally Posted by goinglohan
Hey, just want to say great compilation! Only thing I am not a fan of the auto repair, any way to disable it?
Ty, delete this code in rufiosettings\rufiosettings.lua
Lua Code:
  1. --[[ iRepair -- VARIABLES CAN BE CHANGED AS YOU WANT ]]--
  2. local   iRepair_Chatter     = true
  3. local   iRepair_GRF     = true
  4. local   iRepair_ROGR        = false
  5.  
  6. --[[ AUTO REPAIR SERVICES ]]--
  7. local iRepair = CreateFrame("Frame", "iRepair")
  8.     iRepair:RegisterEvent("MERCHANT_SHOW")
  9.     iRepair:SetScript("OnEvent", function()
  10.     local cost = GetRepairAllCost()
  11.     local function iRepair_Guild()
  12.         if iRepair_Chatter then
  13.             print(" Guild Bank Auto Repair for: ".. GetCoinTextureString(cost) )
  14.         end
  15.         RepairAllItems(1)
  16.     end
  17.     local function iRepair_Self()
  18.         if iRepair_Chatter then
  19.             print(" Auto Repair Service You payed: ".. GetCoinTextureString(cost) )
  20.         end
  21.         RepairAllItems()
  22.     end
  23.     if IsModifierKeyDown() then
  24.         return
  25.     elseif CanMerchantRepair() and cost ~= 0 then
  26.         if iRepair_GRF and CanGuildBankRepair() and cost <= GetGuildBankMoney() and (cost <= GetGuildBankWithdrawMoney() or GetGuildBankWithdrawMoney() == -1) then
  27.             if iRepair_ROGR and GetNumRaidMembers() ~= 0 then
  28.                 iRepair_Guild()
  29.             elseif not iRepair_ROGR then
  30.                 iRepair_Guild()
  31.             elseif cost <= GetMoney() then
  32.                 iRepair_Self()
  33.             else
  34.                 print(" Not enough Guild Funds to Auto Repair, Please Try Manually.")
  35.             end
  36.         elseif cost <= GetMoney() then
  37.             iRepair_Self()
  38.         else
  39.             print(" Darn you don't have enough cash to Auto Repair. You need "..GetCoinTextureString(cost).." total to repair." )
  40.         end
  41.     end
  42. end)

Line 46-87
Report comment to moderator  
Reply With Quote
Unread 11-11-12, 12:23 PM  
Toidi2k
A Murloc Raider
AddOn Compiler - Click to view compilations

Forum posts: 6
File comments: 33
Uploads: 1
One of the bloodrune is under the unitframe an not in the middle, what can i do to fix that?
Report comment to moderator  
Reply With Quote
Unread 11-14-12, 05:26 PM  
Rufio
A Murloc Raider
 
Rufio's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 289
Uploads: 5
Originally Posted by Toidi2k
One of the bloodrune is under the unitframe an not in the middle, what can i do to fix that?
my bad haven't played my dk...

go to whounitframes\whounnitframes.lua and delete
Lua Code:
  1. ---------------------------------------------------
  2. -- DK RUNES
  3. ---------------------------------------------------
  4. if class == "DEATHKNIGHT" then
  5.     RuneButtonIndividual1:ClearAllPoints()
  6.     RuneButtonIndividual1:SetPoint("TOPLEFT", PlayerFrameManaBar, "BOTTOMLEFT", -1, -5)
  7. end

line 21-28 will include this in my next update.

Ty 4 info!
Report comment to moderator  
Reply With Quote
Unread 11-20-12, 06:22 PM  
llerelol
A Murloc Raider

Forum posts: 7
File comments: 45
Uploads: 0
hi, i really want to position my unitframes via lua editing, if i got this right the problem is that player frame resets after some certain events, so i found this code on Mystery UI and want to know if its ok to use it atm.

local function ScrewYouPlayerFrame()
PlayerFrame:ClearAllPoints()
PlayerFrame:SetPoint("CENTER", -200, -165)
end

hooksecurefunc("PlayerFrame_AnimateOut", function() PlayerFrame:SetAlpha(0); ScrewYouPlayerFrame() end)
hooksecurefunc("PlayerFrame_SequenceFinished", function() PlayerFrame:SetAlpha(1); ScrewYouPlayerFrame() end)
hooksecurefunc("PlayerFrame_UpdateStatus", ScrewYouPlayerFrame)
the reason i ask is that i'm pretty sure you've used it before, but then you switched to layout-local.txt file instead, so is there any proper reason? taints or anything?
Last edited by llerelol : 11-20-12 at 06:22 PM.
Report comment to moderator  
Reply With Quote
Unread 11-21-12, 11:08 AM  
Rufio
A Murloc Raider
 
Rufio's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 289
Uploads: 5
Originally Posted by llerelol
hi, i really want to position my unitframes via lua editing, if i got this right the problem is that player frame resets after some certain events, so i found this code on Mystery UI and want to know if its ok to use it atm.



the reason i ask is that i'm pretty sure you've used it before, but then you switched to layout-local.txt file instead, so is there any proper reason? taints or anything?
Yeah i've used this before, mainproblem is that i got problems with the ToT frames as well as vehicles and so on. Using the layout-local.txt solves all my problems with the unitframes you can edit this file as well to get your frames in perfect position
Report comment to moderator  
Reply With Quote
Unread 11-25-12, 06:08 PM  
atomsforpeace
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Question

What addon is responsible for the 'fatality!' noise from worms? Also, how do I change the anchor for the tooltip?
Last edited by atomsforpeace : 11-26-12 at 06:23 AM.
Report comment to moderator  
Reply With Quote
Unread 11-29-12, 07:05 AM  
mapclmao
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
update question

hi, guys, i'm having some annoying problems with whoaUnitFrames (it is part of Rufio UI) and castbar (it has totally disappeared). i guess it's because of outdated version of UI. if not, please, let me know what's wrong with it (if anyone have the same problem). thanks
Last edited by mapclmao : 11-29-12 at 07:09 AM.
Report comment to moderator  
Reply With Quote
Unread 12-02-12, 07:19 AM  
Rufio
A Murloc Raider
 
Rufio's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 289
Uploads: 5
Re: Question

Originally Posted by atomsforpeace
What addon is responsible for the 'fatality!' noise from worms? Also, how do I change the anchor for the tooltip?
should be bugsack


Originally Posted by mapclmao
hi, guys, i'm having some annoying problems with whoaUnitFrames (it is part of Rufio UI) and castbar (it has totally disappeared). i guess it's because of outdated version of UI. if not, please, let me know what's wrong with it (if anyone have the same problem). thanks
enable "load out of date addons"
Report comment to moderator  
Reply With Quote
Unread 12-02-12, 11:55 PM  
Astera
A Kobold Labourer

Forum posts: 1
File comments: 53
Uploads: 0
Great UI!

I use a different castbar addon. How or where can I disable the current one?

Thank you
Report comment to moderator  
Reply With Quote
Unread 12-03-12, 07:53 AM  
jastduet
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Good addon , but how can i replace all things without rewrite LUA file &
Report comment to moderator  
Reply With Quote
Unread 12-05-12, 11:51 AM  
Rufio
A Murloc Raider
 
Rufio's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 289
Uploads: 5
btw update for 5.1 will come, i just fixes the chat so i'm not in hurry

Originally Posted by Astera
Great UI!

I use a different castbar addon. How or where can I disable the current one?

Thank you
disable the default castbars

Originally Posted by jastduet
Good addon , but how can i replace all things without rewrite LUA file &
you can't
Report comment to moderator  
Reply With Quote
Unread 12-11-12, 12:51 AM  
jastduet
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Originally Posted by Rufio
btw update for 5.1 will come, i just fixes the chat so i'm not in hurry

Originally Posted by Astera
Great UI!

I use a different castbar addon. How or where can I disable the current one?

Thank you
disable the default castbars

Originally Posted by jastduet
Good addon , but how can i replace all things without rewrite LUA file &
you can't
now i can (: with MoveAnything MoP
Report comment to moderator  
Reply With Quote
Unread 12-17-12, 04:35 AM  
RaCooN92
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
Buff / Target of the Target

Hey Rufio, your UI is fcking amazing *_* i like it so much.
but i have problems with it.

1. I dont see my Buff Timer's. It means when i buff Battle Shout i dont see any time at Phanxbuff bar.
2. I dont see the Target of the Target, in the interface i choose the option show target of the target, but it doesnt work.

pls help me.
Report comment to moderator  
Reply With Quote
Unread 12-17-12, 10:09 AM  
wowgamerlol
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Target castbar

Hey Rufio, first of all i love your UI, but it seems i got a little problem..
It doesn't show the target castbar :s the other castbars work (my own, focus)
Report comment to moderator  
Reply With Quote
Unread 12-17-12, 10:48 AM  
Rufio
A Murloc Raider
 
Rufio's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 289
Uploads: 5
Re: Target castbar

Originally Posted by wowgamerlol
Hey Rufio, first of all i love your UI, but it seems i got a little problem..
It doesn't show the target castbar :s the other castbars work (my own, focus)


or any castbar addon?

Originally Posted by RaCooN92
Hey Rufio, your UI is fcking amazing *_* i like it so much.
but i have problems with it.

1. I dont see my Buff Timer's. It means when i buff Battle Shout i dont see any time at Phanxbuff bar.
2. I dont see the Target of the Target, in the interface i choose the option show target of the target, but it doesnt work.

pls help me.
1. Out of date addons loaded? Consolixzy Buffs disabled?
2. be sure to NOT move the frame via setpoints use right click and move them
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.