Download
(123Kb)
Download
Updated: 05-24-07 11:23 PM
Addon for:
FuBar 3.6.5.
Pictures
File Info
Updated:05-24-07 11:23 PM
Created:unknown
Downloads:37,746
Favorites:274
MD5:

FuBar - RegenFu  Popular! (More than 5000 hits)

Version: 2.1.0 (20100)
by: sylvnaaar [More]

A direct port from TitanRegen/FSRT.

2.0.7 - WoW 2.0 Client

2.0.6a - embedded acedebug

2.0.6 2006/11/14
- Try to fix some of the startup issues

2.0.5 2006/11/08
- Added intelligent setup logic for first the first time you run
the plugin. Druids/Priests get Mana+FSRT+FSRBar, Shaman/Paladin
get Mana+FSRT, the other mana users only get Mana. Also the
settings for the confuration values are stored per class or per
charater
- Added a 5 second rule countdown bar immediately beneath the the
text on the FuBar
- Fixed issue with not thinking we were ooc when zoning out of a bg

2.0.4 2006/10/31
- Added average mana regen
- Fixed fluctiations in MP regen on bar
- Updated translations
- Added S&D Load On Demand Support
- Improved Look of Tooltip

2.0.3 2006/10/31
- Embedded the ACE2 libraries

2.0.2 2006/10/31
- Fix bug in INT->MP5 conversion
- localizations

2.0.1 - 2006/10/25
- New ownership of the code
- Support for FSR tracking

2.0 - 2006/8/30
- FuBar-2.0

1.2.1 - 2006/5/28
- Added German localization.
- Tooltip : Changed the ordering.
- Tooltip : Added "HP Regen in Last Fight".
- Tooltip : Tweaked coloring a bit.
- Option : Added "Show current value".
- Text : Added a % traior for values shown as percentage.

1.2.0 - 2006/5/10
- Changed version numbering method, it is now "FuBarVersion.n", such as "1.2.0", "1.2.1" etc.
- Updated FuBar compatbility to 1.2.
- Removed text coloring option as it is built into FuBar.

0.1.2 - 2006/4/14
- Updated BossPanel comptability to 10000.
- Changed MP display text to a brighter color.

0.1.1 - 2006/4/6
- Changed to per-character saved variables.
- Updated TOC to 11000.
- Updated BossPanel comptability to 0.9.6.
- Renamed BossPanel to FuBar.

0.1 - 2006/3/16
- Initial release: directly ported from TitanRegen.

Post A Reply Comment Options
Unread 12-31-06, 06:31 PM  
dwex
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 91
Uploads: 2
Option for FSR Countdown Bar gets hidden if you uncheck Show FSRT. This can be fixed by a little reordering of the menu code. Change this:
Code:
showFSRB = {
	type = "toggle",
	name = L["FSR Countdown Bar"],
	desc = L["FSR Countdown Bar"],
	set = "ShowFSRBar",
	get = function() return RegenFu.db.char.showFSRBar end,
	order = 31,
	hidden = "IsHideFSRT",
},
fsrtGroup4 = {
	type = 'header',
	order = 40,
	hidden = "IsHideFSRT",			
},		
reset = {
	type = "execute",
	name = L["Reset FSR Data"],
	desc = L["Reset FSR Data"],
	func = "ResetFSRT",
	order = 41,
	hidden = "IsHideFSRT",
},
to
Code:
reset = {
	type = "execute",
	name = L["Reset FSR Data"],
	desc = L["Reset FSR Data"],
	func = "ResetFSRT",
	order = 31,
	hidden = "IsHideFSRT",
},
fsrtGroup4 = {
	type = 'header',
	order = 40,
},		
showFSRB = {
	type = "toggle",
	name = L["FSR Countdown Bar"],
	desc = L["FSR Countdown Bar"],
	set = "ShowFSRBar",
	get = function() return RegenFu.db.char.showFSRBar end,
	order = 41,
},
Last edited by dwex : 12-31-06 at 06:56 PM.
Report comment to moderator  
Reply With Quote
Unread 12-16-06, 06:37 AM  
bunny
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
FuBar_Regen.lua

change line 312
local n,l = L["FSR"]

to
local n = L["FSR"]
local l = L["FSR"]

last ace updates changed structure
Report comment to moderator  
Reply With Quote
Unread 12-15-06, 03:55 PM  
zcace
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
AceAddon-2.0\AceAddon-2.0.lua:458: Interface\AddOns\FuBar_RegenFu\FuBar_Regen.lua:316: CandyBar-2.0: Bad argument #4 to `Register' (string expected, got nil)

As of today.
Report comment to moderator  
Reply With Quote
Unread 12-14-06, 07:29 AM  
Balsta
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Big Bug report. These are the reports from Bugsack

Code:
[2006/12/14 08:21:30-2-x1]: AceLibrary\AceLibrary.lua:524: ...Ons\FuBar_RegenFu\Libs\CandyBar-2.0\CandyBar-2.0.lua:1280: attempt to concatenate local 'ourpath' (a nil value)
AceLibrary\AceLibrary.lua:524: in function `Register'
CandyBar-2.0\CandyBar-2.0.lua:1319: in main chunk
<in C code>: ?
<in C code>: in function `pcall'
FuBar\FuBar.lua:618: in function <Interface\AddOns\FuBar\FuBar.lua:614>
FuBar\FuBar.lua:890: in function `LoadPlugin'
FuBar\FuBar.lua:1005: in function <Interface\AddOns\FuBar\FuBar.lua:995>
<in C code>: ?
AceEvent-2.0\AceEvent-2.0.lua:402: in function <...Bar_ItemBonusesFu\libs\AceEvent-2.0\AceEvent-2.0.lua:378>

  ---
Code:
[2006/12/14 08:21:30-2-x1]: AceAddon-2.0\AceAddon-2.0.lua:457: ...Ons\FuBar_RegenFu\Libs\CandyBar-2.0\CandyBar-2.0.lua:1247: attempt to index field 'var' (a nil value)
AceAddon-2.0\AceAddon-2.0.lua:457: in function <...Bar_ItemBonusesFu\libs\AceAddon-2.0\AceAddon-2.0.lua:435>
AceAddon-2.0\AceAddon-2.0.lua:569: in function `InitializeAddon'
AceAddon-2.0\AceAddon-2.0.lua:431: in function <...Bar_ItemBonusesFu\libs\AceAddon-2.0\AceAddon-2.0.lua:424>
<in C code>: ?
AceEvent-2.0\AceEvent-2.0.lua:226: in function `TriggerEvent'
AceEvent-2.0\AceEvent-2.0.lua:856: in function <...Bar_ItemBonusesFu\libs\AceEvent-2.0\AceEvent-2.0.lua:849>
<in C code>: ?
<in C code>: in function `pcall'
FuBar\FuBar.lua:618: in function <Interface\AddOns\FuBar\FuBar.lua:614>
FuBar\FuBar.lua:890: in function `LoadPlugin'
FuBar\FuBar.lua:1005: in function <Interface\AddOns\FuBar\FuBar.lua:995>
<in C code>: ?
AceEvent-2.0\AceEvent-2.0.lua:402: in function <...Bar_ItemBonusesFu\libs\AceEvent-2.0\AceEvent-2.0.lua:378>

  ---
Code:
[2006/12/14 08:21:30-2-x1]: AceEvent-2.0\AceEvent-2.0.lua:403: ...Ons\FuBar_RegenFu\Libs\CandyBar-2.0\CandyBar-2.0.lua:122: attempt to index field 'var' (a nil value)

  ---
When I turn RegenFu off they all go away.
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 12-09-06, 03:33 PM  
Domew
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Originally posted by Rutujit
Edit: Just downloaded the updated winAce 2 from http://www.wowace.com/files/ fixed the issue for me hope this helps others.
Which file was it, specifically? Can you provide more detailed instructions about what to do?

I also get a different error when RegenFu attempts to start:

FuBar_RegenFu\Libs\CandyBar-2.0\CandyBar-2.0.lua:1271: attempt to concatenate local 'ourpath' (a nil value)

Edit: Installing Grid appears to fix this problem.
Last edited by Domew : 12-10-06 at 02:48 PM.
Report comment to moderator  
Reply With Quote
Unread 12-09-06, 12:43 PM  
Rutujit
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Originally posted by Domew
I get an odd error with RegenFu enabled.

FuBar_RegenFu\Libs\CandyBar-2.0\CandyBar-2.0.lua:122: attempt to index field 'var' (a nil value)
Aye same thing here on my priest.


Edit: Just downloaded the updated winAce 2 from http://www.wowace.com/files/ fixed the issue for me hope this helps others.
Last edited by Rutujit : 12-09-06 at 12:48 PM.
Report comment to moderator  
Reply With Quote
Unread 12-08-06, 09:41 PM  
Domew
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
I get an odd error with RegenFu enabled.

FuBar_RegenFu\Libs\CandyBar-2.0\CandyBar-2.0.lua:122: attempt to index field 'var' (a nil value)

This seems to prevent it from updating anything, and it doesn't show the 5SR timer bar.
Report comment to moderator  
Reply With Quote
Unread 11-25-06, 09:49 PM  
sylvanaar
A Warpwood Thunder Caller
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 127
Uploads: 12
I assume no news is good news.

The mod is TBC compatible, but you will need updated versions of some of the embedded libraries. I will post a version when 2.0 goes live
Report comment to moderator  
Reply With Quote
Unread 11-23-06, 12:36 PM  
sylvanaar
A Warpwood Thunder Caller
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 127
Uploads: 12
Any updates? Are you able to run now?

If you are still having issues, I suggest you follow the instructions for 'Disembeding' your ace addons - the details are here:

See WinAceUpdater : Without externals (Disembedding)

http://www.wowace.com/wiki/How_To_Update_Beta_Addons
Last edited by sylvanaar : 11-23-06 at 12:37 PM.
Report comment to moderator  
Reply With Quote
Unread 11-15-06, 11:48 AM  
sylvanaar
A Warpwood Thunder Caller
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 127
Uploads: 12
Re: Noob question.

Originally posted by BIAW2
What does FSR stand for, why is it important, and what does the 5 second bar show me?
5 second rule

For 5 seconds after casting a spell which requires mana your regen from spirit is lowered (to 0 without talents/gear). The bar is just a 5 second countdown to represent being "in" the 5 second rule.
Last edited by sylvanaar : 11-15-06 at 11:49 AM.
Report comment to moderator  
Reply With Quote
Unread 11-15-06, 08:44 AM  
BIAW2
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Noob question.

What does FSR stand for, why is it important, and what does the 5 second bar show me?
Last edited by BIAW2 : 11-15-06 at 08:44 AM.
Report comment to moderator  
Reply With Quote
Unread 11-14-06, 10:37 PM  
sylvanaar
A Warpwood Thunder Caller
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 127
Uploads: 12
I'll embed the debug library, but you would be better off just installing ace2

http://www.wowace.com/files/index.php?path=Ace2/
Report comment to moderator  
Reply With Quote
Unread 11-14-06, 06:56 PM  
Mightydre
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Startup error with 2.0.6

With 2.0.6, I'm getting a start up error saying AceDebug does not exist.
Report comment to moderator  
Reply With Quote
Unread 11-14-06, 03:43 PM  
sylvanaar
A Warpwood Thunder Caller
AddOn Author - Click to view AddOns

Forum posts: 92
File comments: 127
Uploads: 12
I spent some time testing startup configuration, and I think I have resolved some of the issues. Also fsr bar placement should be above the bar when on the bottom bar and below when on the top.
Report comment to moderator  
Reply With Quote
Unread 11-14-06, 02:26 AM  
Razalduria
A Kobold Labourer

Forum posts: 0
File comments: 10
Uploads: 0
The Status of the FSB-Bar (switched off) is not saved across sessions. It always is ENabled when logging in.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: