Download
(5Kb)
Download
Updated: 02-21-10 04:47 AM
Pictures
File Info
Updated:02-21-10 04:47 AM
Created:01-17-10 05:04 PM
Downloads:2,969
Favorites:22
MD5:

Infinite Ignore

Version: r3
by: ChaosInc [More]

Tired of watching all the spam in trade chats, but your ignore list is full? This is for you then. Infinite Ignore is exactly that, an ignore list that has no limit.

Features
+ No cap on the number of people ignored.
+ Hooks directly into ignore/unignore commands
+ Ability to import your existing list from WoW
+ Ignore list carries across all toons on the realm
+ If you are sick of the little voices in your head, you can ignore yourself too =D

Slash Commands (/inig)
import - imports your ignore list from Blizz
reset - clears your ignore list
list - lists the names of people you are currently ignoring

To Do
TAKE OVER THE WORLD!!!.... I mean, take over the ignore screen (social frame)
- or -
Create a GUI from the ground up. Haven't decided how I'm gonna go about doing this yet.

r3
"Ubertard is ignored." spam fixed.
Post A Reply Comment Options
Unread 01-17-10, 05:47 PM  
Watercooler423
A Kobold Labourer

Forum posts: 0
File comments: 43
Uploads: 0
i think i love you.
Report comment to moderator  
Reply With Quote
Unread 01-17-10, 07:41 PM  
geeksugar
A Kobold Labourer
 
geeksugar's Avatar

Forum posts: 0
File comments: 34
Uploads: 0
youre my new best friend. <3
Report comment to moderator  
Reply With Quote
Unread 01-18-10, 04:28 AM  
Bhalial
A Murloc Raider
 
Bhalial's Avatar

Forum posts: 6
File comments: 47
Uploads: 0
I love you with mouth
Report comment to moderator  
Reply With Quote
Unread 01-18-10, 10:57 AM  
Inaoe
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Does this work with the LFG tool, as it will try not to group you with players on your ignore list? Or do this kind of "extensions" to the ignore list work client side only?
Report comment to moderator  
Reply With Quote
Unread 01-18-10, 05:52 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
Originally posted by Inaoe
Does this work with the LFG tool, as it will try not to group you with players on your ignore list? Or do this kind of "extensions" to the ignore list work client side only?
Addons work client side only, for the most part. Unfortunately, there is no way to get group info with the LFD system until you get into the dungeon (to my knowledge, that is) due to the other members still being on their respective realms until teleported, making it impossible to screen for ignored players.

Trust me, if it were possible, I'd happily add it.
Last edited by Sythalin : 01-18-10 at 05:52 PM.
Report comment to moderator  
Reply With Quote
Unread 01-18-10, 05:57 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
Slightly modified the mod description (requested) to include:

+ Ignore list carries across all toons on the realm
Report comment to moderator  
Reply With Quote
Unread 02-11-10, 05:34 AM  
ichik
A Murloc Raider
 
ichik's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 263
Uploads: 5
Originally posted by ChaosInc
Addons work client side only, for the most part. Unfortunately, there is no way to get group info with the LFD system until you get into the dungeon (to my knowledge, that is) due to the other members still being on their respective realms until teleported, making it impossible to screen for ignored players.

Trust me, if it were possible, I'd happily add it.
Well, you can make your mod to behave in such way: all chars frome other realms go to Blizz-ignore list, all from yours to addon's. Of course there will be 49 ppl limit for cross-realm ignore but at least it's better than 0.
Report comment to moderator  
Reply With Quote
Unread 02-21-10, 08:17 AM  
8489
A Defias Bandit
 
8489's Avatar

Forum posts: 2
File comments: 37
Uploads: 0
Hmm mine Infinite ignore doesnt seem to be working i keep getting "You can't ignore any more players." with this addon you do just use the default ignore button right? as it doesnt work at all after i get the max ignored. Any help would be greatfull
Report comment to moderator  
Reply With Quote
Unread 02-21-10, 05:39 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
Originally posted by 8489
Hmm mine Infinite ignore doesnt seem to be working i keep getting "You can't ignore any more players." with this addon you do just use the default ignore button right? as it doesnt work at all after i get the max ignored. Any help would be greatfull
You have to use the /ignore function. I haven't hooked it to the ignore button yet.
Report comment to moderator  
Reply With Quote
Unread 02-24-10, 01:59 PM  
Tinuviel
A Defias Bandit
 
Tinuviel's Avatar

Forum posts: 3
File comments: 210
Uploads: 0
Originally posted by ChaosInc
You have to use the /ignore function. I haven't hooked it to the ignore button yet.
What about the right click ignore?

Also, do I have to keep importing characters after I've ignored someone new, or does it pick up from where it was first installed?
Report comment to moderator  
Reply With Quote
Unread 06-03-10, 06:10 PM  
n6478p
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Thank you. I can turn trade back on.
Report comment to moderator  
Reply With Quote
Unread 06-09-10, 10:40 PM  
seraphos
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Hey!

hey, I have a fix that hooks it into the Ignore button.

add this to the lua file

Code:
AddIgnore = function(name)
	InIg:add(name)
end
I was also wondering if you would like help writing with this addon.
Last edited by seraphos : 06-10-10 at 12:07 AM.
Report comment to moderator  
Reply With Quote
Unread 06-10-10, 12:07 AM  
seraphos
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Re: Hey!

another function

Code:
-- This allows you to add or remove from the right click menu on peoples names
AddOrDelIgnore = function(name)
     local exists = false
	for index,value in pairs(InIg_IgList)do
		if value == strlower(name) then
			exists = true
		end
	end
	if (exists) then
		InIg:remove(strlower(name))
	else
		InIg:add(strlower(name))
	end
end
Last edited by seraphos : 06-10-10 at 12:07 AM.
Report comment to moderator  
Reply With Quote
Unread 06-10-10, 02:53 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
Thanks for these mate! I'll add them into the main core, but it probably won't be released for a bit; I've actually been inactive on WoW for the last month or so in order to focus on my schoolwork done before the end of the term. The term ends at the end of this month, at which I'm planning to jump onto WoW (at least for a bit) to do some updates on my projects (including this feature).

The requests haven't been ignored, just been.... busy.
Report comment to moderator  
Reply With Quote
Unread 06-10-10, 03:41 PM  
seraphos
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
I'd be interested as to figuring out how to tie this into the default blizzard UI. Like overriding the default ignore frame. Not sure quite how one does that, as I'm a bit new to UI modding.
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.