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 12-22-10, 07:15 PM  
S@thi
A Theradrim Guardian
 
S@thi's Avatar

Forum posts: 67
File comments: 15
Uploads: 0
*runs in*
*checks*
*runs back out*

I came to check for a infinite x-mas release but nothing..
Ah well another time!
Report comment to moderator  
Reply With Quote
Unread 12-02-10, 11:09 PM  
S@thi
A Theradrim Guardian
 
S@thi's Avatar

Forum posts: 67
File comments: 15
Uploads: 0
Thanks for your reply though!
Goodluck with A+ is that programming or security?
Lol I should ask my BF but he's still asleep..
Anyway i'll just frequently check then miss your addon alot as my ignore list is already filled to the max..
Report comment to moderator  
Reply With Quote
Unread 11-22-10, 11:48 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
No announcements for this as of yet. Been working on an update for another project (which started out simple in concept, pain in the ass to implement) and studying my ass off for my A+ cert test that I should be taking in the next week or so.
Report comment to moderator  
Reply With Quote
Unread 11-22-10, 08:42 PM  
S@thi
A Theradrim Guardian
 
S@thi's Avatar

Forum posts: 67
File comments: 15
Uploads: 0
Any news on a upcoming update?
Goodluck with school and such and keep us posted
Report comment to moderator  
Reply With Quote
Unread 06-11-10, 03:06 PM  
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 680
File comments: 373
Uploads: 15
Originally posted by seraphos
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.
It's actually pretty easy. Everything is displayed in some frame or another. The trick is to get those frame names, replace/suppress them and superimpose yours instead. Same applies for the default buttons.

The more complicated method would be to add an additional tab somewhere dedicated only to the addon with it's own elements.

The most complicated is to make a GUI from the ground up.

There are dozens of ways to do it. It's a matter of what works best for the addon (and for the author to code).
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
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, 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-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-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 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 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-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-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 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
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.