Download
(49 Kb)
Download
Updated: 06/25/22 02:12 PM
Pictures
File Info
Compatibility:
High Isle (8.0.0)
Updated:06/25/22 02:12 PM
Created:04/21/16 01:48 PM
Monthly downloads:70
Total downloads:30,407
Favorites:35
MD5:
Aetherius Badge Filter  Popular! (More than 5000 hits)
Version: 1.11.0
by: sirinsidiator [More]
Originally a simple addon to filter the different badges on the Aetherius Trade guild roster it has now evolved a bit and is usable for any guild that has an interest in using badges.

The addon will add a new button on the guild roster right of the "Filter By" label, which toggles the badge filter window. It is possible to select multiple badges in the filter list by pressing and holding shift when clicking on an entry.

The slash command "/abf" allows to toggle the window.
It also accepts an additional parameter to access different functions:
  • /abf toggle/show/hide - controls whether the filter window should be shown
  • /abf lock/unlock - allows to (un)lock the position and dimension of the window
  • /abf reset - resets the position and dimension to the default values
  • /abf mode - switches between showing defined and scanned badges
  • /abf help - shows a short summary of available commands
What are badges?

Badges are simply labels with a color format placed in the notes of a guild member. For example |cFF0000My Badge|r is a badge. It is important that it has a "|c", 6 hexadecimal values for the color and the "|r" after the label.
Unlike ranks, badges are a lot more transient and versatile as they are not limited in their number*. They also do not require you to set up any permissions and thanks to the description property you can confer more information about a badge than you can add about a rank. With a good set of badges you can add a lot of value to your guild.

Some examples:
  • Crafting badges allow to easily discern which types of items a member can craft
  • Werewolf and Vampire badges let members know who they can ask when they need a bite
  • An officer badge lets members filter for the upper echelons of the guild
  • Activity based badges can be used to keep track of members that participate in the guild
*Only the number you can award to a single member is limited by the character count of the note

Dependencies:
Make sure to install the following required libraries in order to use Aetherius Badge Filter.
Creating badges for your guild

There are two ways to activate the filter for your guild.

1) You can simply add the name of the addon - Aetherius Badge Filter - with or without spaces to the MotD or About Us section in your guild.
The addon will then activate itself upon detection and show all badges that are found in the roster.
To deactivate it again, you just need to remove the text and it will simply disappear on the next UI reload.
This mode is convenient if you don't want to create a data file, but due to the way it all works you won't be able to define a description for a badge and groups will also be unavailable.

2) You can create a data file that registers your guild name for a server. The filter then automatically scans for these badges and lists them in alphabetic order when the "Show scanned badges" mode is active.
Lua Code:
  1. AetheriusBadgeFilter:RegisterGuild(AetheriusBadgeFilter.SERVER_NA, "Your Guild Name")

In addition you can also define a list of badges with custom order, groups and descriptions in said file, which allows for a more elaborate badge setup in the "Show defined badges" mode.
Lua Code:
  1. AetheriusBadgeFilter:RegisterGuild(AetheriusBadgeFilter.SERVER_EU, "Your Guild Name", {
  2.     {
  3.         badges = {
  4.             {
  5.                 name = "MyBadge", -- mandatory field, this name must match what is used in the badge list
  6.                 description = "My Description", -- optional, shows a tooltip when hovering the mouse over the entry in the filter list
  7.                 color = "FF0000", -- optional, if not specified it will use the first color found in the notes, or a grey color if the badge is not in use
  8.                 relations = {"MyOtherBadge"}, -- optional, allows to show other badges simultaneously when this badge is selected
  9.                 limit = 1, -- optional, sets an upper limit for the member badge editor when incrementing badges. Defaults to 1 and can be turned off by setting it to false
  10.                 turnsInto = "MyOtherBadge", -- optional, tells the member badge editor that the badge should turn into a different badge when the limit is reached
  11.             },
  12.             {
  13.                 name = "MyOtherBadge",
  14.                 limit = false,
  15.             },
  16.         }
  17.     },
  18.     {
  19.         name = "MyGroup", -- optional, groups without a name do not have a header. This is only really useful for the first group in the list.
  20.         description = "My Group Description", -- optional, shows a tooltip when hovering the mouse over the entry in the filter list
  21.         badges = {
  22.             {
  23.                 name = "MyGroupBadge",
  24.             },
  25.         }
  26.     },
  27. })
In this mode the order of badges and groups entirely depends on the order you use in the data file.
The example can also be found in _Example.lua in the data folder.

In order to test a newly created data file for yourself, you need to add the path to the end of AetheriusBadgeFilter.txt in the addon folder. Otherwise the game won't load the new file in the data folder. Afterwards you need to reload the UI with the /reloadui slash command. Once you finished testing, upload it somewhere and send me a link. I will then proceed to upload a new version of the addon which contains the data file for your guild.

Member Badge Editor
When editing a note on the guild roster of a guild with Aetherius Badges, the editor dialog will be extended with new elements.
On the left side of the textarea, the list of available badges will appear, on the right side you can see a preview of the note and below the note you see how many characters you have left.
When you click a badge in the list on the left side, it will automatically be added if it is not present in the note.
You can also left click the badges in the preview on the right to increment them, or decrement them while holding shift if applicable. Right clicking will open a menu which offers several options based on how the badge is defined:
  • Increment - This entry shows up for badges with a limit (>1 or false). When the limit is reached and turnsInto is defined, the other badge will automatically get added or incremented.
  • Decrement - Same as the Increment entry, this will only show up for badges with a limit. It will never decrement the count below 0.
  • Update Color - This will show up for badges with a defined color when the entry in the note uses a different color.
  • Remove - Is always available and will delete the line with the badge.
The editor only recognizes one badge per line, so make sure that you do not have more than one. When the badge count is changed, it will try to parse the part after the badge and update any number it finds.

The following things will work:
Code:
|cffffffMyBadge|r x1\n
|cffffffMyBadge|rx 1 \n
|cffffffMyBadge|r times 2\n
This won't work:
Code:
2x |cffffffMyBadge|r\n
|cffffffMyBadge|r x2 |cffffffMyOtherBadge|r\n
|cffffffMyBadge|r x one\n
It also won't recognize more than one of the same badge in one note and might do unexpected things in that case.
Before pressing save, check the generated note text for any errors. You can always just press cancel and start again when something went wrong.

Supported guilds

EU Megaserver
  • Aetherius Eight
  • Aetherius Guard
  • Aetherius Trade
  • ALDMERI
  • Ars Necandi
  • Black Horse Courier
  • Boethiah's Reapers
  • Constellation
  • Eternal Forest Merchantry
  • Flipping Coins
  • Hanedan
  • Haus Winterfell
  • Imperial Trading Company
  • Inevitable
  • Just Traders
  • Nirn Traders
  • Rolling Coins
  • Shining Coins
  • Siyah Atlı Kurye
  • Tamriel Stock Exchange
  • Tamriels Emporium
  • TESAll
  • The Noble Merchants
  • Zenithar's Trading House
NA Megaserver
  • Black Horse Courier
  • Hunger Force
  • Nightingale's Utopia
  • World Auction House

Translations:
Translations are managed with the help of Weblate. Click the graphic below if you want to learn more.
v1.11.0 ~ sirinsidiator
  • brought addon code up to current standards
  • switched to LibGetText for translations
  • added compatibility for patch 8.0: High Isle

v1.10.0 ~ sirinsidiator
  • added feature to allow one data file for multiple guilds
  • updated data for Eternal Forest Merchantry
  • updated data for Imperial Trading Company
  • updated data for The Noble Merchants
  • merged and updated data for Coins guilds
  • added compatibility for patch 7.3: Ascending Tide

v1.9.4 ~ sirinsidiator
  • updated data for Eternal Forest Merchantry
  • updated data for Tamriels Emporium
  • updated data for The Noble Merchants
  • added compatibility for patch 7.2: Deadlands

v1.9.3 ~ sirinsidiator
  • added badge definitions for Flipping Coins
  • added badge definitions for Rolling Coins
  • added badge definitions for Shining Coins
  • added badge definitions for Tamriels Emporium
  • updated data for Aetherius Trade
  • updated data for Eternal Forest Merchantry
  • updated data for Nirn Traders
  • updated data for The Noble Merchants
  • removed badge definitions for Sovngarde Traders
  • added compatibility for patch 6.3: Flames of Ambition

v1.9.2 ~ sirinsidiator
  • added badge definitions for The Misadventurers League
  • added compatibility for patch 6.2: Markarth

v1.9.1 ~ sirinsidiator
  • updated data for Imperial Trading Company
  • added compatibility for patch 6.1: Stonethorn

v1.9 ~ sirinsidiator
  • changed left clicking an existing badge in the edit window to increment it directly and holding shift while doing so to decrement it (right click opens the context menu like before)
  • updated data for Eternal Forest Merchantry
  • updated data for Aetherius Trade
  • added badge definitions for The Noble Merchants
  • added badge definitions for Nirn Traders
  • added badge definitions for Sovngarde Traders
  • added compatibility for patch 6.0: Greymoor
  • removed LibStub (and sadly LibCustomTitles as a result)
  • removed Arkadius from team as he is no longer active

v1.8.4 ~ sirinsidiator
  • updated data for Black Horse Courier

v1.8.4 ~ sirinsidiator
  • updated data for Inevitable

v1.8.3 ~ sirinsidiator
  • added badge definitions for Eternal Forest Merchantry
  • added compatibility for patch 5.1: Scalebreaker

v1.8.2 ~ sirinsidiator
  • updated data for TESAll
  • updated libraries

v1.8.1 ~ sirinsidiator
  • updated data for Aetherius Trade
  • added compatibility for patch 4.3: Wrathstone and patch 5.0: Elsweyr

v1.8 ~ sirinsidiator
  • updated data for Aetherius Trade
  • removed nested LibStub and LibCustomMenu (make sure you install and enable them as separate addons!)

v1.7.15 ~ sirinsidiator
  • updated data for Aetherius Trade
  • updated libraries
  • added compatibility for patch 4.2: Murkmire

v1.7.14 ~ sirinsidiator
  • added new constant SERVER_ALL for guilds that exist on NA and EU and use the same badges
  • updated data for Black Horse Courier
  • updated data for Siyah Atlı Kurye

v1.7.13 ~ sirinsidiator
  • updated data for TESAll

v1.7.12 ~ sirinsidiator
  • removed badge definitions for Bait Trading House
  • added badge definitions for Black Horse Courier
  • added badge definitions for Siyah Atlı Kurye
  • updated libraries
    • make sure to enable the dependencies LibStub and LibCustomMenu in your addon menu!
  • added compatibility for patch 4.1: Wolfhunter

v1.7.11 ~ sirinsidiator
  • updated data for Constellation
  • updated libraries

v1.7.10 ~ sirinsidiator
  • updated data for Ars Necandi
  • added compatibility for patch 3.3: Dragon Bones

v1.7.9 ~ sirinsidiator
  • updated data for Constellation

v1.7.8 ~ sirinsidiator
  • updated data for Aetherius Trade

v1.7.7a ~ sirinsidiator
  • added badge definitions for Inevitable
  • (reuploaded to fix some typos)

v1.7.6 ~ sirinsidiator
  • updated data for Just Traders

v1.7.5 ~ sirinsidiator
  • added badge definitions for Constellation

v1.7.4 ~ sirinsidiator
  • added badge definitions for TESAll
  • added compatibility for patch 3.2: Clockwork City
  • updated libraries

v1.7.3 ~ sirinsidiator
  • updated data for ALDMERI

v1.7.2 ~ sirinsidiator
  • added badge definitions for Boethiah's Reapers
  • added compatibility for patch 3.1: Horns of the Reach
  • updated libraries

v1.7.1 ~ Arkadius
  • updated data for Aetherius Trade
  • updated data for Aetherius Eight

v1.7 ~ sirinsidiator
  • implemented member badge editor
  • added limits for the editor to badge definitions where applicable
  • added badge definitions for Hunger Force
  • added badge definitions for World Auction House
  • added compatibility for patch 3.0: Morrowind
  • updated libraries

v1.6.14 ~ Arkadius
  • added badge definitions for Haus Winterfell

v1.6.13 ~ Arkadius
  • updated data for Bait Trading House
  • updated data for Just Traders
  • updated data for Tamriel Stock Exchange

v1.6.12 ~ Arkadius
  • added compatibility for patch 2.7: HomeStead

v1.6.11 ~ Arkadius
  • updated data for Ars Necandi
  • updated data for Just Traders
  • updated data for Tamriel Stock Exchange

v1.6.10 ~ sirinsidiator
  • updated data for Aetherius Trade

v1.6.9 ~ sirinsidiator
  • added data for Hanedan
  • updated libraries

v1.6.8 ~ sirinsidiator
  • updated data for Imperial Trading Company

v1.6.7 ~ sirinsidiator
  • added badge definitions for ALDMERI

v1.6.6 ~ Arkadius
  • updated data for Bait Trading House

v1.6.5 ~ sirinsidiator
  • updated data for Aetherius Eight

v1.6.4 ~ sirinsidiator
  • added badge definitions for Zenithar's Trading House

v1.6.3 ~ Arkadius
  • added badge definitions for Ars Necandi
  • added badge definitions for Just Traders
  • added badge definitions for Tamriel Stock Exchange
  • added German translations

v1.6.2 ~ sirinsidiator
  • added badge definitions for Bait Trading House
  • updated API version for update 12

v1.6.1 ~ sirinsidiator
  • added badge definitions for Aetherius Guard
  • updated data for Aetherius Eight

v1.6 ~ sirinsidiator
  • fixed badge definition getting wiped when the About Us section or MotD contains "Aetherius Badge Filter" when it is updated
  • updated data for Aetherius Trade
  • updated API version


v1.5.4 ~ sirinsidiator
  • added badge definitions for the Imperial Trading Company

v1.5.3 ~ sirinsidiator
  • updated data for Aetherius Trade

v1.5.2 ~ sirinsidiator
  • updated data for Aetherius Eight

v1.5.1 ~ sirinsidiator
  • updated data for Aetherius Eight
  • updated data for Nightingale's Utopia

v1.5 ~ sirinsidiator
  • added badge filter usage without a data file
    • to activate it, just add "Aetherius Badge Filter" (with or without spaces) somewhere in the MotD or About Us for your guild
    • if you want to deactivate it again, remove the string and reload the UI
    • the filter will automatically show all found badges
    • if you want description tooltips or groups for your badges, you still need to create and send me a data file
  • added message when no badges are visible in the filter list
  • added option to hide the number of badges in the filter list
  • added support for different servers
  • fixed filter entry not being deselected when clicking it again
  • updated data for Nightingale's Utopia

v1.4.3 ~ sirinsidiator
  • updated data for Aetherius Trade

v1.4.2 ~ sirinsidiator
  • updated data for Nightingale's Utopia
  • fixed filters not showing up on the first guild the first time the roster is opened after the UI has been reloaded

v1.4.1 ~ sirinsidiator
  • added badge definitions for Nightingale's Utopia

v1.4 ~ sirinsidiator
  • refactored majority of code
  • made filter window adjustable
  • added member count for each badge
    • NOTE: the shown number may differ from the amount of filter results, because it does not include related badges
  • added button to toggle filter window visibility
  • added menu to switch between scanned and defined badges
  • added support for color field in badge data
  • improved /abf slash command
    • added show, hide, toggle, lock, unlock, mode, refresh, reset and help
    • changed default command to toggle window visibility
  • updated compatibility
    • NOTE: the addon works on live and pts

v1.3: ~ sirinsidiator
  • renamed the addon to "Aetherius Badge Filter" (formerly "Aetherius Trade Badge Filter")
    • IMPORTANT: make sure you remove the old addon folder to avoid conflicts!
  • added multi guild support and moved badge data into dedicated files
  • added badge groups

v1.2: ~ sirinsidiator
  • added descriptions to badges and hid all badges without a description per default
  • added relations to badges (e.g. Craft God will show when filtering for any crafting badge like Master Crafter)
  • added slash command /atbf to toggle showing all badges in the filter list

v1.1: ~ sirinsidiator
  • fixed compatibility issue with Sisshu's Guild Tools
Optional Files (0)


Archived Files (57)
File Name
Version
Size
Uploader
Date
1.10.0
48kB
sirinsidiator
03/14/22 02:49 PM
1.9.4
49kB
sirinsidiator
11/01/21 09:56 AM
1.9.3
50kB
sirinsidiator
02/04/21 02:39 PM
1.9.2
46kB
sirinsidiator
11/07/20 03:18 PM
1.9.1
45kB
sirinsidiator
09/11/20 02:49 PM
1.9
45kB
sirinsidiator
05/28/20 02:36 PM
1.8.5
60kB
sirinsidiator
08/01/19 01:58 PM
1.8.4
60kB
sirinsidiator
07/18/19 03:20 PM
1.8.3
60kB
sirinsidiator
07/08/19 02:54 PM
1.8.2
59kB
sirinsidiator
05/21/19 09:43 AM
1.8.1
53kB
sirinsidiator
04/28/19 01:59 PM
1.8
53kB
sirinsidiator
11/02/18 07:49 AM
1.7.15
61kB
sirinsidiator
10/23/18 02:05 PM
1.7.14
66kB
sirinsidiator
09/13/18 12:29 PM
1.7.13
66kB
sirinsidiator
08/29/18 12:34 PM
1.7.12
66kB
sirinsidiator
08/19/18 08:50 AM
1.7.11
49kB
sirinsidiator
03/04/18 06:51 AM
1.7.10
48kB
sirinsidiator
02/19/18 01:38 PM
1.7.9
48kB
sirinsidiator
01/28/18 04:09 PM
1.7.8
49kB
sirinsidiator
01/28/18 08:09 AM
1.7.7a
49kB
sirinsidiator
01/21/18 07:44 AM
1.7.7
49kB
sirinsidiator
01/21/18 07:00 AM
1.7.6
48kB
sirinsidiator
01/16/18 08:22 AM
1.7.5
48kB
sirinsidiator
01/13/18 01:24 PM
1.7.4
47kB
sirinsidiator
01/02/18 09:27 AM
1.7.3
45kB
sirinsidiator
08/06/17 02:11 AM
1.7.2
45kB
sirinsidiator
07/23/17 10:02 AM
1.7.1
43kB
sirinsidiator
05/10/17 08:08 AM
1.7
43kB
sirinsidiator
05/07/17 06:14 AM
1.6.14
38kB
Arkadius
04/22/17 08:11 AM
1.6.13
37kB
Arkadius
03/06/17 03:13 PM
1.6.12
37kB
Arkadius
02/06/17 02:14 PM
1.6.11
37kB
Arkadius
02/01/17 04:08 PM
1.6.10
36kB
sirinsidiator
01/18/17 02:43 PM
1.6.9
36kB
sirinsidiator
11/22/16 11:46 AM
1.6.8
35kB
sirinsidiator
11/01/16 02:22 PM
1.6.7
35kB
sirinsidiator
10/14/16 02:41 PM
1.6.6
33kB
Arkadius
09/19/16 07:06 AM
1.6.5
32kB
sirinsidiator
09/16/16 02:55 AM
1.6.4
32kB
sirinsidiator
09/14/16 03:21 AM
1.6.3
32kB
sirinsidiator
09/10/16 05:31 PM
1.6.2
27kB
sirinsidiator
09/08/16 02:03 PM
1.6.1
26kB
sirinsidiator
08/23/16 02:41 PM
1.6
25kB
sirinsidiator
07/20/16 07:14 AM
1.5.4
25kB
sirinsidiator
06/27/16 08:56 PM
1.5.3
24kB
sirinsidiator
06/13/16 08:43 AM
1.5.2
24kB
sirinsidiator
06/09/16 10:14 AM
1.5.1
24kB
sirinsidiator
06/03/16 04:19 AM
1.5
23kB
sirinsidiator
06/02/16 10:25 AM
1.4.3
22kB
sirinsidiator
05/27/16 01:46 PM
1.4.2
22kB
sirinsidiator
05/27/16 05:33 AM
1.4.1
21kB
sirinsidiator
05/23/16 01:17 PM
1.4
19kB
sirinsidiator
05/21/16 07:17 AM
1.3
7kB
sirinsidiator
05/19/16 10:14 AM
1.2
5kB
sirinsidiator
05/04/16 01:01 PM
1.1
4kB
sirinsidiator
04/23/16 06:49 AM
1.0
4kB
sirinsidiator
04/21/16 01:48 PM


Post A Reply Comment Options
Unread 05/08/16, 09:01 AM  
Lulu Kreicer

Forum posts: 0
File comments: 1
Uploads: 0
Really helpfull addon, big thx to author.
Report comment to moderator  
Reply With Quote
Unread 05/20/16, 05:26 AM  
mra4nii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 87
Uploads: 2
Cheers for such great addon. Keep up the good work.
Report comment to moderator  
Reply With Quote
Unread 06/03/16, 11:59 AM  
MicaelJM

Forum posts: 0
File comments: 8
Uploads: 0
Thumbs up Awesome!

Awesome addon!
It adds a very useful feature for keeping track of Guildies and it is quite an unique feature for the Guilds that use it.
Thanks a lot for this addon and for supporting other Guilds.
Report comment to moderator  
Reply With Quote
Unread 09/09/16, 06:58 AM  
Verbalinkontinenz
 
Verbalinkontinenz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 247
Uploads: 2
Thanks

For adding us, every guild should have this addon
Report comment to moderator  
Reply With Quote
Unread 09/10/16, 11:35 PM  
Ckau
 
Ckau's Avatar
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 72
Uploads: 4
Возможно ли заставить аддон работать с режимом геймпада?
Report comment to moderator  
Reply With Quote
Unread 09/11/16, 01:58 AM  
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1566
File comments: 1120
Uploads: 41
Originally Posted by Ckau
Возможно ли заставить аддон работать с режимом геймпада?
I don't speak Russian, but if Google Translate is correct, you are asking about a gamepad version?
As I don't play with the gamepad interface myself, I don't have any plans to support it on my own.
If someone wants to contribute gamepad support, they can send a pull request on github.
Report comment to moderator  
Reply With Quote
Unread 03/06/17, 07:27 PM  
Kenza
AddOn Author - Click to view AddOns

Forum posts: 31
File comments: 175
Uploads: 1
Ooo, this looks really neat!
Would it be possible to make a set of generic badges(Crafting, Vamp/WW, etc) that works on all guilds by default, without having to edit luas or motd, to make the addon more plug-and-play friendly so to speak? Or would something like that not work by design?
Report comment to moderator  
Reply With Quote
Unread 03/07/17, 04:29 AM  
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1566
File comments: 1120
Uploads: 41
Originally Posted by Kenza
Ooo, this looks really neat!
Would it be possible to make a set of generic badges(Crafting, Vamp/WW, etc) that works on all guilds by default, without having to edit luas or motd, to make the addon more plug-and-play friendly so to speak? Or would something like that not work by design?
That would not be useful if the guild in question does not actually makes use of the badges and I don't want to force the filters to show up in guilds that do not have an interest in it. Besides a guild can use any badge they want once they add the keywords "Aetherius Badge Filter" into the the MotD or About Us. If they like what they see they can just submit a lua file in order to take full advantage of all features. So no, I do not plan to add a set of default badges that shows up in all guilds.
Report comment to moderator  
Reply With Quote
Unread 05/11/17, 05:02 PM  
Verbalinkontinenz
 
Verbalinkontinenz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 247
Uploads: 2
The last ABF update is awesome, thanks!
Report comment to moderator  
Reply With Quote
Unread 11/12/17, 05:52 AM  
Verbalinkontinenz
 
Verbalinkontinenz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 247
Uploads: 2
Hallo Siri,

ein Freund, der Destruent, fragte mich zu einem "Problem" mit ABF.

Er hat es über die Gildennachricht aktiviert, also noch nicht als .lua hinterlegen lassen. Gerne kann ich sie zu gegebenen Zeitpunkt vorbereiten.

Es scheint, als würde ABF ab und an "Badges" aus den Notizen wieder zu entfernen - richtig einordnen kann er das Problem aber noch nicht. Ich gebe es auch nur wieder und habe kaum Handhabe das momentan zu überprüfen.
Last edited by Verbalinkontinenz : 11/12/17 at 06:07 AM.
Report comment to moderator  
Reply With Quote
Unread 11/12/17, 07:00 AM  
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1566
File comments: 1120
Uploads: 41
Originally Posted by Verbalinkontinenz
Hallo Siri,

ein Freund, der Destruent, fragte mich zu einem "Problem" mit ABF.

Er hat es über die Gildennachricht aktiviert, also noch nicht als .lua hinterlegen lassen. Gerne kann ich sie zu gegebenen Zeitpunkt vorbereiten.

Es scheint, als würde ABF ab und an "Badges" aus den Notizen wieder zu entfernen - richtig einordnen kann er das Problem aber noch nicht. Ich gebe es auch nur wieder und habe kaum Handhabe das momentan zu überprüfen.
Das kann ABF nicht. Notizen werden vom Addon nie direkt verändert. Es werden nur im Editor zusätzliche Buttons angezeigt damit man den Inhalt im Eingabefeld verändern kann.
Hat er vielleicht den Mitgliedern nicht das Recht zum Editieren entzogen und irgendjemand löscht sie?
Report comment to moderator  
Reply With Quote
Unread 11/12/17, 08:55 AM  
Verbalinkontinenz
 
Verbalinkontinenz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 247
Uploads: 2
Danke dir, er schließt Trollerei von einem Mitglied nicht aus. Er hat die Notizen auch nachkontrolliert, dass nach Eingabe der Eintrag auch da war. Einen Tag off, am nächsten Tag weg - klingt auch für mich nach Troll.

Ich lass dir die Tage entweder eine oder sogar zwei neue Gilden-Files zukommen.


Zum Problem: Ursache gefunden - guild events.
Last edited by Verbalinkontinenz : 11/12/17 at 09:45 AM.
Report comment to moderator  
Reply With Quote
Unread 03/08/18, 08:10 AM  
Verbalinkontinenz
 
Verbalinkontinenz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 247
Uploads: 2
Bait Trading House kann raus. Ist geschlossen.
Report comment to moderator  
Reply With Quote
Unread 12/24/18, 12:59 PM  
chruikan13

Forum posts: 0
File comments: 3
Uploads: 0
i love this addon but have a few questions

been working on a file for my guild i have a few questions wondering if your still working on this addon and wondering if there are a few things that could be added.

a way to automatically assign badges from donations possibly having a way to label amount of gold per badge and when reached apply the badge

automatically applying badges for guild store sales from the same way a labeled gold amount in the lua file

automatically adding badges for number of days in the guild again labeled in the lua file
Report comment to moderator  
Reply With Quote
Unread 12/24/18, 01:01 PM  
chruikan13

Forum posts: 0
File comments: 3
Uploads: 0
Re: i love this addon but have a few questions

also to add to this if there isn't do you mind if i work on an addon that could add this functionality to your addon as an extension or something
Last edited by chruikan13 : 12/24/18 at 01:02 PM.
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.