Download
(5Kb)
Download
Updated: 01-19-12 07:54 PM
Pictures
File Info
Updated:01-19-12 07:54 PM
Created:unknown
Downloads:30,453
Favorites:224
MD5:

IgnoreMore  Popular! (More than 5000 hits)

Version: 1.1.1-40300
by: mikk [More]

IgnoreMore will:

  • Let you ignore more than 49 players
  • Share the same ignore list between all players on the same realm (and faction).
  • See when someone was ignored
  • Give a reason for why the person is ignored
  • NOT respond with "X is ignoring you" (unless the person was initially added to the system Ignore list before IgnoreMore was installed)

The "/ignore" command is also extended with a second parameter giving a reason directly, e.g. "/ignore Mikk : loudmouthed guy". You can also double-click lines in your ignore list to edit these comments.

Post A Reply Comment Options
Unread 03-21-08, 05:46 AM  
Amitaya
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
An option to let the ignored ones know that they're ignored is really important, as one keeps getting messages from strangers asking why one doesnt answer to this or that guy (wich is ignored, and doesn't know...).

Please please implement this. If you don't like it yourself, you could make it optional so everyone is satisfied
Report comment to moderator  
Reply With Quote
Unread 04-19-08, 03:40 AM  
Olison
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 19
Uploads: 2
Originally posted by Amitaya
An option to let the ignored ones know that they're ignored is really important, as one keeps getting messages from strangers asking why one doesnt answer to this or that guy (wich is ignored, and doesn't know...).

Please please implement this. If you don't like it yourself, you could make it optional so everyone is satisfied
Oh i frikkin love the fact that they don't know that they are "hard-ignored"
Because that will often cause a lot of drama etc, while their messages being discarded silently won't give them a reason to attack you
Report comment to moderator  
Reply With Quote
Unread 04-28-08, 11:13 PM  
Amitaya
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Originally posted by Olison
Oh i frikkin love the fact that they don't know that they are "hard-ignored"
Because that will often cause a lot of drama etc, while their messages being discarded silently won't give them a reason to attack you
Thats why I'd like to have it optional... but it appears that this mod is dead :S
Or does someone know an alternative or have a link to an up-to-date-version?
Report comment to moderator  
Reply With Quote
Unread 04-29-08, 07:38 AM  
mikk
A Deviate Faerie Dragon
 
mikk's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 43
Uploads: 5
Originally posted by Amitaya
but it appears that this mod is dead :S
Or does someone know an alternative or have a link to an up-to-date-version?
Hardly dead. I just haven't been bothered to upload a version that changes a single character in the .toc when checking the "[x] Load out-of-date addons" box works fine
Report comment to moderator  
Reply With Quote
Unread 05-04-08, 07:33 AM  
Amitaya
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Originally posted by mikk
Hardly dead. I just haven't been bothered to upload a version that changes a single character in the .toc when checking the "[x] Load out-of-date addons" box works fine


Then, could you pleeeeease implement the optional ignore-message?
Pretty please?
Report comment to moderator  
Reply With Quote
Unread 05-04-08, 02:02 PM  
Hbard
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I am pretty sure I have the up to date version, I am having issues with servers with really long or separate names. For instance, Khaz Modan will only register Khaz and therefore not register at all, while Thoriumbrotherhood will not either. This is one of my favorite mods, I could make a book with all the names on my list lol. I just find it frustrating when I cant ignore jerks in bgs under certain servers.
Report comment to moderator  
Reply With Quote
Unread 05-04-08, 04:58 PM  
Eargon
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Originally posted by Amitaya
Thats why I'd like to have it optional... but it appears that this mod is dead :S
Or does someone know an alternative or have a link to an up-to-date-version?
i have no idea (yet) how to make it optional (never made a mod before), but i have been waiting for this feature for a long time myself.. so i decided to try implement it myself..

I am not the author of this addon, i dont give support, if you want to change this, its on your own risk.. it works for me tho :P
But incase someone wants it, here is what i changed in IgnoreMore.Lua:

added:
-------
function Respond(sender,msg_type)
local timeDiff=time()-lastTimeMsg;
if(timeDiff <=10) then return; end
if(msg_type=="CHAT_MSG_WHISPER") then
ChatThrottleLib:SendChatMessage("NORMAL", nil, " --- You are on my ignore list !!! --- ", "WHISPER", nil, sender);
DEFAULT_CHAT_FRAME:AddMessage(sender.." is being ignored and notified ("..timeDiff..")");
else
DEFAULT_CHAT_FRAME:AddMessage(sender.." is being ignored ("..timeDiff..")");
end
lastTimeMsg=time();
end
------

The respond function will send a whisper to the blocked person only if he sends you a msg via whisper (i used this mod for to long to remember how blizz handled originally blocked msg from trade channel for instance .. do you get a 'you are being ignored' then too?? )
It will notify yourself as well when someone is ignored (i added this for testing purpose) if you dont want that put a -- infront of the two lines starting with:
DEFAULT_CHAT_FRAME:AddMessage(



in function IgM_Init() added line after 'local realm = GetRealmName() .. "-" .. UnitFactionGroup("player");' :
-------
lastTimeMsg=time();
-------

added in top of file, after: 'local list; -- will be pointed to the relevant realm entry inside IgM_SV.list on init (if IgM is enabled)'
-------
local lastTimeMsg;
-------

changed all 3 chat_event funtions into:
-------
function ChatFrame_OnEvent(event)
if(list and strsub(event,1,9)=="CHAT_MSG_" and type(arg2)=="string" and arg2~="" and type(list[arg2])=="table") then
Respond(arg2,event);
return;
end
return orig_ChatFrame_OnEvent(event);
end

-- And Chatr: Chatr_Event
if(Chatr_Event) then
local orig_Chatr_Event = Chatr_Event;
function Chatr_Event()
if(list and strsub(event,1,9)=="CHAT_MSG_" and type(arg2)=="string" and arg2~="" and type(list[arg2])=="table") then
Respond(arg2,event);
return;
end
return orig_Chatr_Event(event);
end
end

-- And ForgottenChat: FC_OnEvent
if(FC_OnEvent) then
local orig_FC_OnEvent = FC_OnEvent;
function FC_OnEvent(event)
if(list and strsub(event,1,9)=="CHAT_MSG_" and type(arg2)=="string" and arg2~="" and type(list[arg2])=="table") then
Respond(arg2,event);
return;
end
return orig_FC_OnEvent(event);
end
end
-------
Report comment to moderator  
Reply With Quote
Unread 05-19-08, 10:12 AM  
Amitaya
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
This works perfectly! Thanks!!!
Report comment to moderator  
Reply With Quote
Unread 08-08-08, 09:26 PM  
phobie
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I've been using this mod for a while, and I love it!

There's one feature I'd like to request though, and thats an ability to block an entire guild using the guildname, instead of having to enter them in one at a time.
Report comment to moderator  
Reply With Quote
Unread 08-09-08, 04:16 PM  
Buio
A Kobold Labourer

Forum posts: 0
File comments: 150
Uploads: 0
I like this mod, as the standard ignore list is to short especially when "funny" people on the server starts to spam trade with whatever is the latest spam fad.

Anyway, I'd wish there was a switch to temporarily not ignore anyone at all on the list. This would come in handy when looking for some enchant or trade and you risk having ignored a potential trader. I know it's a bit of double moral, but when $$ is involved morals are off for a short time. So sort of "ignore all off, trade, ignore all on".
Report comment to moderator  
Reply With Quote
Unread 09-23-08, 10:23 AM  
JMHammer
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 309
Uploads: 1
Update coming for the 3.02 patch?

I love this mod! It has completely saved my sanity. After just a few days rigorously putting all the jerks and stream-of-consciousness-spewers on my IgnoreMore list (hundreds and hundreds of them on my High Population server), I can actually use LFG and Trade again, and don't have to turn off General channel when I'm in the Barrens or Karazhan.

Please tell me you are still maintaining this mod and will have an update for the 3.02 patch, currently on the PTR and coming to the retail servers within a few weeks.
Last edited by JMHammer : 09-23-08 at 10:25 AM.
Report comment to moderator  
Reply With Quote
Unread 09-23-08, 06:23 PM  
mikk
A Deviate Faerie Dragon
 
mikk's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 43
Uploads: 5
Re: Update coming for the 3.02 patch?

Originally posted by JMHammer
Please tell me you are still maintaining this mod and will have an update for the 3.02 patch, currently on the PTR and coming to the retail servers within a few weeks.
You betcha. I couldn't play a day without it.
Report comment to moderator  
Reply With Quote
Unread 10-15-08, 01:22 PM  
Buio
A Kobold Labourer

Forum posts: 0
File comments: 150
Uploads: 0
This mod breaks the whole Chat system in 3.0.2. I didn't see anything at all in the chat window. Then I started resetting configurations and removing mods, but not until I removed IgnoreMore the Chat started working again.
Report comment to moderator  
Reply With Quote
Unread 10-15-08, 02:23 PM  
stqn
A Deviate Faerie Dragon

Forum posts: 11
File comments: 67
Uploads: 0
Thanks, and BTW...

Just wanted to say thanks for IgnoreMore, a much needed and appreciated addon.

Well, while I'm here, I could as well suggest one feature... Time-limited ignore (one day, one week, one month) would be nice to have!
Last edited by stqn : 10-15-08 at 03:57 PM.
Report comment to moderator  
Reply With Quote
Unread 10-17-08, 02:41 AM  
sietelle
A Kobold Labourer

Forum posts: 1
File comments: 37
Uploads: 0
Please update this for 3.0.2 I just can't play WoW without it, I love this addon. The only thing that bothered me about it was that I couldn't ignore people from servers with spaces in its name (ie. The Venture Co) because it would cause the "Venture Co" part to become the ignore comment...

but please update this, at least enough so that it doesn't destroy my chat box lol
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.