Download
(1Kb)
Download
Updated: 06-16-11 08:34 AM
Pictures
File Info
Updated:06-16-11 08:34 AM
Created:unknown
Downloads:66,957
Favorites:343
MD5:

pError  Popular! (More than 5000 hits)

Version: 40100.5-Release
by: p3lim [More]

This addon is discontinued.


Description:
pError is a simple addon to filter out spam in the UIErrorsFrame.
Its designed to be robust and easy to use.
If you're not exactly sure about what it does, take a look at the screenshot to the right.


FAQ:
How do I filter more errors?
Simple, just use the '/perror' slash command to add error strings.
Example: '/perror spell is not ready yet'

This takes a long time! Can't I do this faster?
You can make pError listen to the UIErrorsFrame and put anything that shows into the database.
Usage: '/perror listen'

How do I remove error filters?
Just use the '/perror' slash command like you added it.

How can I see what errors I filter out?
Use '/perror list' and the saved list will be printed out.

How can I reset the whole list?
Use '/perror reset' to reset the database.

How can I remove all errors at once?
This addon does not do this, look for a different one.

Full changelog can be found on GitHub:
http://github.com/p3lim/pError/commits/master/
Post A Reply Comment Options
Unread 03-16-10, 09:26 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Valandris
Does this have Spanish localization or does it work in esMX version of WoW?
You add your own filters, which matches localization, so yes, its localized (apart from the config printing)
Report comment to moderator  
Reply With Quote
Unread 03-15-10, 06:16 PM  
Valandris
A Fallenroot Satyr
 
Valandris's Avatar

Forum posts: 22
File comments: 14
Uploads: 0
Does this have Spanish localization or does it work in esMX version of WoW?
Report comment to moderator  
Reply With Quote
Unread 02-04-10, 09:49 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by tlund
As of version 30300.4 this does not seem to be the case?
Just havent bothered updating the info.
Report comment to moderator  
Reply With Quote
Unread 02-03-10, 05:51 PM  
tlund
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 8
Uploads: 2
The addon comes with few errors filtered out, but you are free to add as many as you like yourself.
As of version 30300.4 this does not seem to be the case?
Report comment to moderator  
Reply With Quote
Unread 01-04-10, 08:48 PM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by ricks322
Great addon, but if I could suggest SavedVariablesPerCharacter.
I would say no.
Report comment to moderator  
Reply With Quote
Unread 01-04-10, 07:35 PM  
ricks322
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 154
File comments: 153
Uploads: 1
Great addon, but if I could suggest SavedVariablesPerCharacter.
Report comment to moderator  
Reply With Quote
Unread 12-15-09, 11:31 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
The 'all' feature was removed, because I had no personal need of it, and its not part of the addon idea.

pError is supposed to filter the errors not hide/remove them.
Report comment to moderator  
Reply With Quote
Unread 12-15-09, 01:08 AM  
borbies
A Fallenroot Satyr
 
borbies's Avatar

Forum posts: 21
File comments: 43
Uploads: 0
Originally posted by heidaro
To get rid of all the errors you can just run:

/run UIErrorsFrame:UnregisterAllEvents()

But you would have to run it every time you load your UI. Would be nice to have this option in this addon though.

Thanks for all the great addons p3lim, love your code.
eError on curse does this. If you want only specific things filtered it is not for you.
Last edited by borbies : 12-15-09 at 01:08 AM.
Report comment to moderator  
Reply With Quote
Unread 10-04-09, 09:01 AM  
Randlore
A Murloc Raider

Forum posts: 8
File comments: 2
Uploads: 0
hi all

sorry to be a nuter butin ver 30100.17 the /perror all commdo put on/off of all the Red text

here look in the lua it says this

local function slashCommand(str)
str = lower(str)

if(str == 'reset') then
pErrorDB = {all = false, blacklist = {}}
msg('Savedvariables are now reset to default')
elseif(str == 'all') then
pErrorDB.all = not pErrorDB.all
msg(format('Filtering all events turned %s', pErrorDB.all and 'on' or 'off'))
elseif(str == 'list') then
if(pErrorDB.all) then
msg('Filtering all events!')
elseif(not pErrorDB.blacklist[1]) then
msg('Database is empty')
else
msg('Listing database of events:')

for k, v in next, pErrorDB.blacklist do
msg(format('|cff95ff95 \'%s\'|r', v))
end
end
elseif(#str > 0) then
if(pErrorDB.all) then
msg('Can\'t add to database, pError is filtering all events')
else
for k, v in next, pErrorDB.blacklist do
if(find(str, v)) then
tremove(pErrorDB.blacklist, k)
return msg(format('Removed |cff95ff95\'%s\'|r from the database', v))
end
end

tinsert(pErrorDB.blacklist, str)
msg(format('Added |cff95ff95\'%s\'|r to the database', str))
end
else
msg('Please provide an error string')
end


plz can it be put back in my speelling is not good and sometime righting down the red texts to hard for mee ty
Report comment to moderator  
Reply With Quote
Unread 09-06-09, 12:51 PM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by xtoq
Does Art of War proc in the errors frame? Is it supposed to?
He probably have some addon of some sort that pops messages in the UIErrorFrame when it procs
Report comment to moderator  
Reply With Quote
Unread 09-06-09, 09:11 AM  
xtoq
An Aku'mai Servant
 
xtoq's Avatar
AddOn Author - Click to view AddOns

Forum posts: 32
File comments: 642
Uploads: 4
Originally posted by Xacreus
Great addon, I can now see when Art of War procs now with out all the clutter.
Does Art of War proc in the errors frame? Is it supposed to?
__________________
There is absolutely no evidence to support the theory that life is serious.
Report comment to moderator  
Reply With Quote
Unread 09-06-09, 08:59 AM  
Xacreus
A Kobold Labourer
 
Xacreus's Avatar

Forum posts: 0
File comments: 2
Uploads: 0
Great addon, I can now see when Art of War procs now with out all the clutter.
Report comment to moderator  
Reply With Quote
Unread 09-06-09, 07:08 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by heidaro
To get rid of all the errors you can just run:

/run UIErrorsFrame:UnregisterAllEvents()

But you would have to run it every time you load your UI. Would be nice to have this option in this addon though.

Thanks for all the great addons p3lim, love your code.
I will be adding this back soon(tm)
Report comment to moderator  
Reply With Quote
Unread 09-05-09, 06:19 AM  
heidaro
A Defias Bandit

Forum posts: 2
File comments: 3
Uploads: 0
To get rid of all the errors you can just run:

/run UIErrorsFrame:UnregisterAllEvents()

But you would have to run it every time you load your UI. Would be nice to have this option in this addon though.

Thanks for all the great addons p3lim, love your code.
Report comment to moderator  
Reply With Quote
Unread 08-29-09, 04:01 PM  
Dajova
A Wyrmkin Dreamwalker
 
Dajova's Avatar
AddOn Author - Click to view AddOns

Forum posts: 58
File comments: 787
Uploads: 5
Originally posted by blastermaster
Why was the "all" feature removed? I can't keep track of all the annoying red errors to write down to add. /sigh
Well, the old versions still works tho, im using it and it's only a very few errors that pops up there, like "Insignia Taken" from a BG and likewise...
__________________
Livestream | Twitter | YouTube
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: