| Tested: | Hour of Twilight 4.3 |
| Updated: | 01-04-12 11:32 PM |
| Created: | unknown |
| Downloads: | 36,873 |
| Favorites: | 588 |
| MD5: |

File Name |
Version |
Size |
Author |
Date |
4.3 |
147kB |
Gazmik |
11-29-11 12:45 AM |
|
4.2.3 |
147kB |
Gazmik |
07-07-11 01:33 AM |
|
4.2.2 |
161kB |
Gazmik |
07-06-11 07:58 PM |
|
4.2.1 |
147kB |
Gazmik |
07-03-11 07:43 PM |
|
4.2 |
147kB |
Gazmik |
06-28-11 02:01 AM |
|
4.1.3 |
348kB |
Gazmik |
05-16-11 01:45 AM |
|
4.1.2 |
302kB |
Gazmik |
05-02-11 05:35 PM |
|
4.1.1 |
301kB |
Gazmik |
04-28-11 03:32 AM |
|
4.1 |
301kB |
Gazmik |
04-26-11 04:51 PM |
|
4.0.5 |
157kB |
Gazmik |
12-24-10 04:21 AM |
|
4.0.4 |
147kB |
Gazmik |
12-23-10 03:01 AM |
|
4.0.3 |
147kB |
Gazmik |
12-17-10 03:19 AM |
|
4.0.2 |
145kB |
Gazmik |
12-06-10 08:15 PM |
|
4.0.1 |
145kB |
Gazmik |
12-05-10 08:10 PM |
|
4.0 |
149kB |
Gazmik |
10-11-10 11:24 PM |
|
3.3.1 |
151kB |
Gazmik |
04-06-10 12:37 AM |
|
3.3 |
148kB |
Gazmik |
12-08-09 02:14 AM |
|
3.2 |
139kB |
Gazmik |
08-04-09 08:20 PM |
|
3.1 |
138kB |
Gazmik |
04-18-09 01:11 PM |
|
3.0.5 |
51kB |
Gazmik |
02-19-09 02:58 PM |
|
3.0.4 |
50kB |
Gazmik |
01-29-09 05:32 PM |
|
3.0.3 |
49kB |
Gazmik |
01-20-09 06:51 PM |
|
3.0.2 |
49kB |
Gazmik |
10-22-08 05:39 PM |
![]() |
Comment Options |
|
|
|
|
Integrating with <insert 3rd-party total UI makeover here> is a slippery slope I don't have time to deal with, much as I might like to.
However, since FactionFriend provides a somewhat unique service, much of what it does is packaged as an API usable by other addons. Authors interested in integrating its features are encouraged to look at the readme-API.txt file included with FactionFriend.
__________________
Gazmik Fizzwidget's UI Addons: www.fizzwidget.com |
|
|
|
|
|
|
|
How about integration with nUI?
|
|
|
|
|
|
|
|
Horde Expedition to inactive problem
EDIT: This seems to be a bug from Blizzard, not part of your addon. Just thought I'd keep the original message here in case anyone else thought it was.
A topic about it is here: http://us.battle.net/wow/en/forum/topic/1213111404#1 --- I have the addon set to announce in chat when I get reputation and have them moved to inactive when no loner needed. I have the "Show enhanced reputation messages in chat" and "Automatically mark exalted reputations as Inactive". I don't use any other parts of the addon. Here is the problem: Under the sub menu for "Wrath of the Lich King" I still have the "Horde Expedition" reputation listed. (I am exalted with them.) I can not make this inactive since the check boxes for it are grayed out except for showing the reputation bar for it which I don't use. It's not a huge problem, but am wondering why this can't be moved to inactive. ---
Last edited by Kyrgune : 06-15-11 at 08:30 PM.
|
|
|
|
|
|
|
|
When right clicking on the reputation bar, I get the following error below.
Code:
Message: ..\AddOns\GFW_FactionFriend\FactionFriend.lua line 905:
attempt to perform arithmetic on local 'value' (a nil value)
Debug:
[C]: ?
GFW_FactionFriend\FactionFriend.lua:905: FFF_SetupMenuButton()
GFW_FactionFriend\FactionFriend.lua:1125: FFF_ShowMenu()
GFW_FactionFriend\FactionFriend.lua:877: FFF_ReputationWatchBar_OnClick()
Dominos_XP\xp.lua:128: OnClick()
Dominos_XP\xp.lua:118:
Dominos_XP\xp.lua:118
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 1
Uploads: 0
|
I too receive this error, but only on my main character. It might be related to the level bar, but I have not confirmed with any other 80s. I know it occurs without any other addons active. In order to temporarily fix this problem, look for the following code section of FactionFriend.lua:
Code:
-- save attributes for reuse local name = data; if (type(data) == "table") then name = data.name; button.factionName = data.name; button.standing = data.standingID; button.watched = data.isWatched; button.percent = (data.value - data.barMin) / (data.barMax - data.barMin); elseif (name and not (func or isTitle or isHeader)) then local _, _, _, standing, barMin, barMax, value, _, _, isHeader, _, hasRep, isWatched, isChild = FFF_GetFactionInfoByName(name); button.factionName = name; button.standing = standing; button.watched = isWatched; button.percent = (value - barMin) / (barMax - barMin); elseif (func) then button.func = func; end Code:
button.percent = 1; Note: This is not a fix of the problem but a workaround. It is not intended as a permanent fix, but a short term solution until the addon author can resolve this problem.
Last edited by gondemare : 06-07-10 at 12:49 AM.
|
|
|
|
|
||
|
A Fallenroot Satyr
Forum posts: 21
File comments: 34
Uploads: 0
|
Date: 2010-05-05 15:18:16 ID: -1 Error occured in: Global Count: 1 Message: ..\AddOns\GFW_FactionFriend\FactionFriend.lua line 974: TexCoord out of range Debug: [C]: ? [C]: SetTexCoord() GFW_FactionFriend\FactionFriend.lua:974: FFF_MenuButtonSetWidth() GFW_FactionFriend\FactionFriend.lua:1180: FFF_ShowMenu() GFW_FactionFriend\FactionFriend.lua:877: GFW_FactionFriend\FactionFriend.lua:875 |
|
|
|
|
|
|
|
A Murloc Raider
Forum posts: 5
File comments: 45
Uploads: 0
|
When right clicking on the reputation bar, I get the following error below.
[2010/04/17 21:08:02-1322-x1]: GFW_FactionFriend-3.3.1 (r$Revision: 705 $)\FactionFriend.lua:974: TexCoord out of range GFW_FactionFriend-3.3.1 (r$Revision: 705 $)\FactionFriend.lua:974: in function `FFF_MenuButtonSetWidth' GFW_FactionFriend-3.3.1 (r$Revision: 705 $)\FactionFriend.lua:1180: in function `FFF_ShowMenu' GFW_FactionFriend-3.3.1 (r$Revision: 705 $)\FactionFriend.lua:877: in function <Interface\AddOns\GFW_FactionFriend\FactionFriend.lua:875> --- |
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 1
Uploads: 0
|
I love this add on keep up the good work and just wanted to bump this into 2010
![]() |
|
|
![]() |
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.