== GLOBAL IGNORE LIST AND SPAM FILTER
Global Ignore List is a quality of life addon that provides a greatly enhanced (unlimited) character ignore system, and has a robust chat/spam filtering engine to eliminate gold sellers/spammers, guild recruitment, community recruitment, annoying trends like Thunderfury, non-latin text, and more. All of these can be enabled or disabled as you please or you can even create your own:
Global Ignore also gives you full access to its chat filtering engine so you can create your own filters whether they are as simple as a single word or complex statements that requirement boolean evaluations.
* Unlimited ignore list size, synchronized across all characters, factions, and servers
* Account wide ignore system
* Ability to ignore players, NPCs, monsters, and entire servers
* Ability to set notes for ignored entries, and expiration times for automatic removal from ignore
* Chat spam filtering with robust chat spam filter editor, allowing players to create their own custom filters.
* Default spam filters catch the majority of gold sellers and spammers (defaults for English servers) including gold spam, Guild recruitment, community invites, Asian languages, political spam, and so on.
* Warnings to prevent inviting or being a member of a group with a player on your ignore list
* Automatic decline of duels and party invites from ignored players
* Greatly improved UI over the default
* Enhancements to existing UI such as being able to ignore by right clicking target or from raid frames
* Small and efficient created with pure WoW API only (no libs like ACE)
Type /gi in game for chat help, or open your ignore list for features and options
**NOTES, ISSUES, AND FREQUENT QUESTIONS**
* Unfortunately I cannot add guild-wide ignores. Blizzard does not supply guild information with the chat data and they've limited the ability for addons to collect their own data on guilds (Census addons were causing server lag). If I can find a way to do it properly in the future I will try to add it in.
* There is a bug where WoW sometimes reports all members of the ignore list as "Unknown" during login which prevents GIL from synchronizing your character ignore lists. If this happens, GIL will print a message duing login and then attempt to synchronize when you open the GIL UI. You can also force a sync by a chat command line.
* There is an issue where WoW reports the wrong server name when ignoring someone from right clicking chat. When a character with no server name is reported, GIL will search the members of your current raid, battleground, instance, and so on to try to find someone with that name. It will check your chat tab history and search for any reference of the name in order to determine the server. If no data is found during this search, GIL will ultimately assume the person is on your server.
* Account wide ignore only works for up to 50 accounts per character due to a WoW limitation. GIL uses logic to select the "best" 50 players on a per-character basis, in an attempt to maximize usefulness of account wide ignore limitations. No other ignore addon can do this. This is significant because it prevents you from messages, duel requests, being grouped in a dungeon, BG, or LFR queue system for not only their main character but for their alts that you don't know about too. GIL will also perform all of those same checks and warnings for non-account wide ignore.
----
== HOW TO CREATE SPAM FILTERS
GIL has a series of default spam filters that will be periodically updated as
new annoying chat spam is encountered, but it also allows you to create your
own custom chat filters! Filters can be edited by double clicking them, or
added and deleted with UI buttons.
Each chat filter consists of a series of tags which define what to "search" for
in each chat message. When one of these tags is "TRUE" in a chat message, then
the message will be filtered. The filter system also allows for built in logic
to create complex filters, but more on that later.
Tags are enclosed within [] characters and can be used to filter items, spells,
achievements, word matches, partial word matches, and any link. The following
tags are available to perform each of those types of filtering:
**[word]**
The word tag looks for a whole word within the chat message. The word to search
for must be provided within the tag with an equals sign such as: "[word=anal]".
Word and partial word matches are case insensitive, so ANAL anal and AnAL will
all match the tag shown above.
**[contains]**
The contains tag is similar to the word filter, but performs a partial match of
a word instead of a whole word match. If for example, you see people spamming
analanalanal [Thunderfury], then you might want to add a tag with something like
[contains=analan] so that it will catch people who do that sort of spam.
**[link]**
The link tag matches if the chat contains any linked content at all, which can
mean a spell, item, achievement, etc.
**[spell]**
The spell tag allows one to filter out specific spell links or all spell links
from chat. If the spell tag exists with no equals, then it will filter when
the message contains ANY spell link at all. For example "[spell]". If the
equals sign is provided and followed by a Spell ID, then only that specific
spell ID will be filtered. Such as "[spell=17]" would filter any message with
the Power Word Shield spell linked in it.
**[item]**
The item tag allows one to filter out all item links or specific item links.
This tag works in the same way that the spell tag does. For example "[item]"
will filter if any item at all is linked, whereas "[item=19019]" would filter
any chat message that contained a link for Thunderfury.
**[talent]**
The talent tag works just the same as the spell and item tags.
**[achievement]**
The achievement tag works just the same as the spell and item tags. For the
sake of trying to keep this short and refer you to the item and spell examples
above.
**[pet]**
The pet tag works just the same as the spell and item tags. For the
sake of trying to keep this short and refer you to the item and spell examples
above.
**[icon]**
The icon tag allows filtering based on raid icons in the chat text. The
"[icon]" tag by itself will result in a filtered message if the chat message
has any icon at all in the text. A number can also be provided to filter
based on if a message has a specific number or greater of raid icons. For
example "[icon=3]" would filter if the message has 3 or more raid icons in
it.
**[community]**
This tag allows filters to be created to filter out community Join requests.
No other data is used for this tag; If you wish to filter anything that
contains a Join request, simply include this tag
**[nonlatin]**
This tag allows filters messages that contain Chinese/Japanese/Korean characters
for those who play on English servers that have a strong native Asian speaking
community
**[words]**
This tag allows filters to test that a line of text contains only a specific number
of words. For example: [words=2] would be true only if the text contained only two
words.
**[channel]**
This tag allows filters to test that a line of text sourced from a specific channel
number. For example, channel 1 would be zone, 2 would be city/trade, and so on. If
you wanted a filter to apply only to trade chat you could do "[channel=2]" somewhere
in your filter.
**SPECIAL CHARACTERS IN FILTERS**
Spaces can be used in a [Contains] tag by escaping the character by putting a
forward slash before the space (\). Other characters can be escaped the same
way: parenthesis (), brackets [], and backslash. For example:
[contains=Filter\ this]
Here are some other examples:
\( would mean (
\) would mean )
\[ would mean [
\] would mean ]
\\ would mean \
**USING LOGICAL EVALUATION:**
Chat filters can include some logical evaluations by enclosing tags within
parenthesis and using boolean "and or not" keywords. This is really what can
tie everything together and allow for some pretty nice filters to be created.
For example, here is the default "Anal" spam filter which comes with GIL:
([word=anal] or [contains=analan]) and [link]
The parenthesis and the or keyword allow the filter to specify that if the
chat message has a complete word match of "anal" OR it contains a partial
word match with "analan" AND the chat message contains any link meaning
any item spell or achievement, then the filter is TRUE and the message
will be filtered by GIL
any option to use [word= two words] ?
This is a great add-on, it really helps!
Can you auto ignore level 10s?
Anyone know how to setup a spam filter for only stuff in yell? something like:
[word=gdkp][channel=yell]
but this doesn't seem to work for me. I have tried:
[word=gdkp][channel=yell]
[word=gdkp] and [channel=yell]
[contains=gdkp] and [channel=yell]
I don't know if abandoned is the right word. I just don't have a subscription to wow or an account with the latest expansion to work on it right now. :(
I will definitely update it if/when I play again but I don't know when that will be. I don't want to invest in the expansion and monthly sub if I can barely play.
When I do play again I'll also put it up on whatever the new addon sites are, as some have asked.
I see one or two people mention it erases their ignore list so if anyone can find a way to reproduce that problem reliably please let me know.
Thanks!
I
realize this hasn't been updated in a year. Although the ignore functions work. the chat filters do not work. FYI.Editing the default filter got it working.
It still works for me.
Though it hasn't been mentioned in the description:
The addon is at least translated into german.
- At least the main text, because some original text has been added in english
since the translation has been made by me in the year 2016,
but was later added in 2020.
Hi Team, any plans to integrate with a non curseforge provider?
https://www.wowhead.com/news/ads-revenue-and-api-wowup-and-overwolf-split-over-addon-development-325912
https://www.patreon.com/posts/curseforge-62354064
https://wowup.io/guide/wowup/curseforge-migration
In reply to NoctusMirus:
Seconding this request.
In reply to Andmyaxe90:
Thirded!
In reply to NoctusMirus:
Adding my name to this request as well.
In reply to NoctusMirus:
Pretty sure at this point the add-on is abandoned :-( Which is a shame it's the only one of its kind that I know of and very important.
In reply to Binhex:
agreed
This addon appears to be abandoned. A shame. It was quite good. I'm not aware of any other addon that can maintain infinite ignore lists.
Does anyone know an addon like this, but that actually works?
What I mean is that I'm tired of having to manually add everyone I ignored again because something happened and global ignore list decides to wipe the entire god damn list when I log into the game, as shown below:
https://imgur.com/WhZT3R4
That is just the top of the list, I had almost 100 people in there
This happened MULTIPLE TIMES already, so frustrating
In reply to walayimuna:
Far as I know this is the only one and it may be abandoned.
In reply to walayimuna:I
If you are able to pinpoint how this happens so I can reproduce it please let me know. Is it possible you are deleting any of the folders in your wow install where the addon saves its data? I'll gladly find a way to fix it up if I can find out what is happening to cause this.
I agree, I don't need to be messaged when someone is blocked, that's the entire point of them being blocked.
This hasn't been updated since 9.0.5 is there a new app?
Is there a way to change the auto-message that gets sent when someone you have on ignore sends you a tell? It currently says "[Global Ignore List] You are being ignored" and I'd like to edit it slightly.
In reply to Crysteria:
In your Interface\Addons\GlobalIgnoreList folder, there is a file called GIL_Localization.lua, open this file with Notepad and inside the file you will see this line:
L["MSG_1"] = "[Global Ignore List] You are being ignored"
Edit it to how you like =)