Download
(110Kb)
Download
Updated: 12-25-08 03:57 AM
Pictures
File Info
Updated:12-25-08 03:57 AM
Created:10-30-08 04:27 AM
Downloads:28,279
Favorites:179
MD5:

Bison  Popular! (More than 5000 hits)

Version: 1.4.3
by: TimTaler [More]

Customizing your buff display.

Features

  • free position of all buff buttons
  • support up to 40 buff buttons
  • individual selection of rows and cols for all buff bars
  • individual selection of scale for all buff bars
  • added ButtonFacade support

Acknowledgement
The addon based on Nimbal Buffalo2.

Commands
/bison or /bi
  • /bi - open blizzard configuration for Bison
  • /bi lock - lock the buttons on the screen
  • /bi enable - enable or disable Bison
  • valid values for bar: buff, debuff, weapon
    • /bi bar show - show or hide the bar (default: show)
    • /bi bar flashing - enable flashing for the bar (default: enabled)
    • /bi bar timer - select the timer for the bar (default: Bison style)
    • /bi bar scale value - the scale for the bar buttons (default: 100%)
    • /bi bar rows value - the rows for the bar
    • /bi bar cols value - the cols for the bar
    • /bi bar horizontal - the first direction for the bar buttons (default: horizontal)
    • /bi bar xPadding value - the horizontal space between the buttons (default: 5)
      a negativ value change the direction of the bar
    • /bi bar yPadding value - the vertical space between the buttons (default: 15)
      a negativ value change the direction of the bar

1.4.3
- setting max buffs to 40, but more is allowed, perhaps a setting for this?
- tweak some localization
- add sorting by Duration
- use Blizzard's UI flash method to perform the frame flashing
- handle flashing of < BUFF_WARNING_TIME timed buffs
- border implementation corrected

1.4.1
- wrong toc corrected

1.4.0
- implementation of ButtonFacade support

1.3.1
- problem with sorting and icon of weapon enchants

1.3.0
- added sorting for bars (duration inc and dec, alphabetical)
- minor changes

1.2.2
- minor changes
- fix for probable race condition on initiation

1.2.0
- minor changes
- toc changed to 30003

1.1.2
- missing first db defaults

1.1.1
- added profile
- changed zip structure

1.0.0
- first stable version
Post A Reply Comment Options
Unread 11-30-12, 04:31 PM  
redworm
A Defias Bandit

Forum posts: 2
File comments: 68
Uploads: 0
any updates planned for this one for mop? ;( miss it...
Report comment to moderator  
Reply With Quote
Unread 11-01-10, 10:44 AM  
markhr
A Fallenroot Satyr

Forum posts: 23
File comments: 43
Uploads: 0
gbuff solved right clicking

Maybe you could check their coding as they've solved the right click to remove buffs problem.

http://wow.curse.com/downloads/wow-a...ils/gbuff.aspx

However, their movement/layout (/gbuff lock) just gives a bunch of errors and resets randomly on logging (so don't copy that bit ).
Last edited by markhr : 11-01-10 at 11:26 AM.
Report comment to moderator  
Reply With Quote
Unread 11-01-10, 10:39 AM  
markhr
A Fallenroot Satyr

Forum posts: 23
File comments: 43
Uploads: 0
Update to match curse?

Will the downlaod be updated to match the curse/wowace versions?
Report comment to moderator  
Reply With Quote
Unread 10-24-10, 09:30 PM  
Druzilla
A Kobold Labourer
 
Druzilla's Avatar

Forum posts: 0
File comments: 19
Uploads: 0
Re: Invert

Originally posted by Ipood
Hi

Is there anyway to invert the ordering of the buff, aka making it go from left to right instead of right to left.


making it like this:

1 2 3 4 5 6 7 8 9 10....

instead of :

...10 9 8 7 6 5 4 3 2 1
i agree i would find this much better for my ui setup
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 10:53 PM  
Ipood
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 14
File comments: 10
Uploads: 2
Invert

Hi

Is there anyway to invert the ordering of the buff, aka making it go from left to right instead of right to left.


making it like this:

1 2 3 4 5 6 7 8 9 10....

instead of :

...10 9 8 7 6 5 4 3 2 1
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 09:14 PM  
pking911
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Re: 4.0 update?

there is an update on curse. but I cannot get the buffs to show up. I tried the fixes listed in the comments on curse. but they are not working.
there are debuff buttons and weapon buttons options, but not buff button options.

/shrug
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 07:19 PM  
speak
A Wyrmkin Dreamwalker
 
speak's Avatar

Forum posts: 57
File comments: 186
Uploads: 0
4.0 update?

Hi, hoping for a 4.0 update any chance of this?
Report comment to moderator  
Reply With Quote
Unread 07-24-10, 04:06 AM  
pp0000656
A Kobold Labourer

Forum posts: 0
File comments: 31
Uploads: 0
Hello, very nice addon!!! But to my opinion some features would make it even better :P
Timer text scaling and ability to choose custom fonts
Ability to choose nubmer of buffs\debuffs to be shown
Not so rough flashing :/
Coloring debuffs' borders\timers by debuff type(ex. magic,curse etc.)
Report comment to moderator  
Reply With Quote
Unread 04-25-10, 11:56 AM  
Ferkassus
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
How can I filter out some of the debuffs? I want for example to get rid of "Chill of the throne" and "Sated", how can I do that in lua files so I don't need to wait for updates?

Edit: fixed by myself, without knowing lua, its IZI
If anyone interested, here's the solution. Go to BuffBar.lua and find function BisonButton:Update().
Then find line
Code:
if name then
and replace it with
Code:
if name and not (name == "Sated" or name == "Chill of the Throne" or name == "Weakened Soul") then
you can add more debuffs if you want, by addin more of
Code:
or name == "Debuff Name"
Now you can make debuffs huge and move it to the middle of your screen. Gl!
Last edited by Ferkassus : 04-26-10 at 01:53 AM.
Report comment to moderator  
Reply With Quote
Unread 01-20-10, 06:59 PM  
shinchih2001
A Defias Bandit

Forum posts: 3
File comments: 198
Uploads: 0
Originally posted by shinchih2001
AceConfigDialog-3.0-43:1630: attempt to call method 'IsVisible' (a nil value)

everytime i open bison config
got this error message

i copy AceConfigDialog-3.0 from latest ace3.0 instead into bison
seems to be work
Report comment to moderator  
Reply With Quote
Unread 01-19-10, 03:46 AM  
shinchih2001
A Defias Bandit

Forum posts: 3
File comments: 198
Uploads: 0
AceConfigDialog-3.0-43:1630: attempt to call method 'IsVisible' (a nil value)

everytime i open bison config
got this error message
Report comment to moderator  
Reply With Quote
Unread 01-01-10, 06:24 AM  
detectiveboy
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
How change time font??

I want to change time font...

How can I...;;
Report comment to moderator  
Reply With Quote
Unread 12-19-09, 07:15 PM  
phrozenassid
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 23
Uploads: 2
Originally posted by Therawyn
Anyone know when this addon will be updated? Since it does not yet work with Patch 3.3 I've had to find a temporary replacement.
I initially had some trouble with 3.3 at first also. Just delete all of your saved variables for bison and make sure that the game doesn't have the option to combine buffs in that box enabled. After I did this I reloaded the game and reconfigured bison and it works perfect now.
Report comment to moderator  
Reply With Quote
Unread 12-15-09, 11:49 PM  
ichik
A Murloc Raider
 
ichik's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 263
Uploads: 5
It works like a charm with 3.3, just check “Load out-of-date addons”.
Report comment to moderator  
Reply With Quote
Unread 12-12-09, 08:48 AM  
Therawyn
A Murloc Raider
 
Therawyn's Avatar

Forum posts: 4
File comments: 9
Uploads: 0
Anyone know when this addon will be updated? Since it does not yet work with Patch 3.3 I've had to find a temporary replacement.
Last edited by Therawyn : 12-12-09 at 08:49 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: