Download
(3Kb)
Download
Updated: 08-16-18 01:28 PM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:08-16-18 01:28 PM
Created:11-17-10 04:06 PM
Downloads:28,833
Favorites:126
MD5:

rBuffFrame  Popular! (More than 5000 hits)

Version: 800.20180816
by: zork [More]


Intro

rBuffFrame is a framework for Blizzard player aura buttons. It does nothing on its own, needs a layout like rBuffFrame_Zork.
API documentation
rBuffFrame API documentation
Quick-Links
rActionBar, rActionBar_Zork, rBuffFrame, rBuffFrame_Zork, rButtonTemplate, rButtonTemplate_Zork
Requires
rLib
Git
https://github.com/zorker/rothui/tre...8.0/rBuffFrame

Optional Files (2)
File Name
Version
Size
Author
Date
Type
800.20180816
972B
08-16-18 01:30 PM
Addon
700.20161004
975B
10-04-16 06:16 AM
Addon


Post A Reply Comment Options
Unread 09-21-13, 07:21 PM  
Sauerkraut
A Wyrmkin Dreamwalker
 
Sauerkraut's Avatar
AddOn Author - Click to view AddOns

Forum posts: 52
File comments: 267
Uploads: 8
Zork is there a way to change the text color for buff duration? I would like to change it from the current yellow to white. I can't seem to find any where I could do so.
Report comment to moderator  
Reply With Quote
Unread 09-02-13, 01:06 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Re: moving the frame

The aura direction is hard coded. It can only be changed by adjusting the corresponding SetPoint() calls in core/core.lua. Advanced only.
http://code.google.com/p/rothui/sour.../core/core.lua

To give you a starter...search for "TOPRIGHT". If you have no clue better stay away from it and use another buff mod. This mods main purpose is to style the default aura icons.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 09-02-13 at 01:09 AM.
Report comment to moderator  
Reply With Quote
Unread 09-01-13, 07:59 PM  
In3DGuy
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
moving the frame

Hi nice job on the add-on. I was wondering if it's possible to move the buffs and rebuff frame to the top left of the screen and have buttons add towards the right instead of going to the left? If it can be done could you show me how? thanks.
Report comment to moderator  
Reply With Quote
Unread 08-29-13, 05:02 AM  
Langepac
A Kobold Labourer

Forum posts: 0
File comments: 134
Uploads: 0
Thanks for the help given by this addon
You have so kindly helped me lol
Report comment to moderator  
Reply With Quote
Unread 07-22-13, 03:49 AM  
Alenari
A Defias Bandit

Forum posts: 2
File comments: 39
Uploads: 0
if you do /rbfs reset it will popup at the new location. At least it does for me. A /reload hides the buff frame and the /rbfs reset shows them again.

Originally Posted by Greensleeper
something is very wrong.
When I make changes in the lua, save the file and do a /reload ... nothing happens. it takes a logoff - logon for the changes to apply o_O.
I've disabled all other addons .... very strange. never had such behaviour with your mods, so it must be on my end something, somewhere, somehow ^^

I'll play with it more tomorrow.
Report comment to moderator  
Reply With Quote
Unread 06-09-13, 03:31 PM  
Greensleeper
A Defias Bandit

Forum posts: 2
File comments: 29
Uploads: 0
something is very wrong.
When I make changes in the lua, save the file and do a /reload ... nothing happens. it takes a logoff - logon for the changes to apply o_O.
I've disabled all other addons .... very strange. never had such behaviour with your mods, so it must be on my end something, somewhere, somehow ^^

I'll play with it more tomorrow.
Report comment to moderator  
Reply With Quote
Unread 06-09-13, 02:51 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Make sure you saved the file and typed in /reload ingame.
From my standpoint it does work as intended.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 06-09-13 at 02:51 PM.
Report comment to moderator  
Reply With Quote
Unread 06-09-13, 10:20 AM  
Greensleeper
A Defias Bandit

Forum posts: 2
File comments: 29
Uploads: 0
Hey Zork,

For me the resizing of buffs / debuffs does nothing.
The size stays on 28 for me (buffs), even if i set it to eg 36 or 40 ... it stays 28.

didnt try with debuffs yet, but I guess it will be the same problem.

any ideas?

sad panda
Report comment to moderator  
Reply With Quote
Unread 05-27-13, 07:02 AM  
Langepac
A Kobold Labourer

Forum posts: 0
File comments: 134
Uploads: 0
Originally Posted by zork
Currently I really don't understand what you are trying to achieve. By default rBuffFrameStyler will display buffs and debuffs like the standard display. The only difference is that debuffs are bigger.

If size is your problem you can resize the debuff size in the config.lua. To do that scroll down to line 75 and change the value of size to the size of the buff icons which is 28.

So find this
Lua Code:
  1. button = {
  2.       size              = 40,
  3.     },

and make it
Lua Code:
  1. button = {
  2.       size              = 28,
  3.     },

Once you edited the file save it and type in /reload in the game.
http://imageshack.us/photo/my-images/12/25713076.png/

http://imageshack.us/photo/my-images/845/13021645.png/
in order to understand what I mean - you can use http://translate.google.lt/?q=l&oe=u...&tab=wT#ru/en/
Last edited by Langepac : 05-28-13 at 02:32 AM.
Report comment to moderator  
Reply With Quote
Unread 05-27-13, 01:53 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Currently I really don't understand what you are trying to achieve. By default rBuffFrameStyler will display buffs and debuffs like the standard display. The only difference is that debuffs are bigger.

If size is your problem you can resize the debuff size in the config.lua. To do that scroll down to line 75 and change the value of size to the size of the buff icons which is 28.

So find this
Lua Code:
  1. button = {
  2.       size              = 40,
  3.     },

and make it
Lua Code:
  1. button = {
  2.       size              = 28,
  3.     },

Once you edited the file save it and type in /reload in the game.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 05-27-13 at 01:57 AM.
Report comment to moderator  
Reply With Quote
Unread 05-26-13, 05:32 PM  
Langepac
A Kobold Labourer

Forum posts: 0
File comments: 134
Uploads: 0
Originally Posted by zork
Check the rBuffFrameStyler/config.lua it should have all the config settings you need.
Thanks for the feedback
How to block debuff?
Slash through the command does not work
Report comment to moderator  
Reply With Quote
Unread 05-26-13, 05:42 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Check the rBuffFrameStyler/config.lua it should have all the config settings you need.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 05-26-13, 05:08 AM  
Langepac
A Kobold Labourer

Forum posts: 0
File comments: 134
Uploads: 0
tell me how to put debuffs in standard location
http://imageshack.us/content_round.p...4/65483437.png
Report comment to moderator  
Reply With Quote
Unread 04-11-13, 09:16 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Wär ich nie drauf gekommen.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 04-11-13, 07:59 AM  
klickybunty
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
ok, problem gelöst - hab das hier gefunden: http://eu.battle.net/wow/en/forum/topic/5208433858#2

das wurde wohl irgendwann mal durch ein anderes addon umgeschrieben.
Last edited by klickybunty : 04-11-13 at 07:59 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: