Download
(10 Kb)
Download
Updated: 12-01-11 04:43 PM
Pictures
File Info
Tested:Hour of Twilight 4.3
Updated:12-01-11 04:43 PM
Created:unknown
Downloads:9,965
Favorites:98
MD5:
This AddOn is 4.3 compatible
Redeemer  Popular! (More than 5000 hits)
Version: 0.8.0
by: Ryplinn [More]
Redeemer
by Ryplinn-Kargath(US)

Welcome to Redeemer! This mod makes you say humorous messages whenever you cast a resurrection spell and serves purely to entertain you and annoy others.

Enjoy!

To select which channels to send Redeemer quotes to, use the /redeemer command.

If you'd like to add in your own messages, feel free to edit the RedeemerQuotes.lua file.

If you make changes to the RedeemerQuotes.lua file, make sure to delete your per-server SavedVariables (World of Warcraft/WTF/Account/[your account]/SavedVariables/Redeemer.lua). This will become unnecessary in future versions.

Quotes? Questions? Bug reports? I'd love to hear them!
New Quotes are added with every version!

v0.8.0-12/01/2011
-Added Options Panel for message display settings
-fixed empty message categories causing Lua errors
-Updated TOC for 4.3
-Structural changes in preparation for future updates

v0.7.0-09/25/2011
-Added Mass Resurrection

v0.6.4-09/25/2011
-Fixed unkown pet name bug
-updated TOC for 4.2.2

v0.6.3-10/22/2010
-Updated for 4.0

v0.6.2-4/19/2010
-Changed Warlock quote to reflect cooldown changes
-Updated .toc for version 3.3

v0.6.1-8/6/2009
-Fixed Ghoul quotes issue
-Updated for 3.2

v0.6.0-11/12/2008
-Added option for whispering quotes to the target of the rez
-Added Death Knight quotes

v0.5.0-10/27/2008
-Added Revive support
-Added Warlock and self-rez quotes

v0.4.0-6/25/2008
-Added options for saying quotes in party and raid chat through slash commands

v0.3.3-6/1/2008
-Fixed Hunter pet quotes
-Fixed an issue with no-target quotes

v0.3.1-3/25/2008
-updated for patch 2.4

v0.3.0a-3/5/2008
-added Hunter messages

v0.2.0a-2/24/2008
-added Engineering messages

v0.1.1a-2/20/2008
-removed debugging messages (oops)

v0.1.0a-2/20/2008
-first version uploaded
Archived Files (5)
File Name
Version
Size
Author
Date
0.7.0
9kB
Ryplinn
09-25-11 01:25 PM
0.6.4
9kB
Ryplinn
09-25-11 12:33 PM
0.6.3
9kB
Ryplinn
10-21-10 11:24 PM
0.6.2
10kB
Ryplinn
04-18-10 11:29 PM
0.6.1
10kB
Ryplinn
08-06-09 06:34 PM


Post A Reply Comment Options
Old 12-18-11, 01:35 PM  
Maelynn
A Deviate Faerie Dragon
 
Maelynn's Avatar

Forum posts: 15
File comments: 154
Uploads: 0
A really minor thing, but something that is still a bit off so I reckoned I'd mention it...

Apparently, the quotes for "when casting Rebirth" also trigger when you put the Glyph of Rebirth (Major) into an empty glyph slot.
__________________
Just remember... if the world didn't suck, we'd all fall off.
Maelynn is offline Report comment to moderator  
Reply With Quote
Old 12-01-11, 04:45 PM  
AlmaSebosa
A Kobold Labourer

Forum posts: 1
File comments: 27
Uploads: 0
Any chance to work with ptBR client?
Last edited by AlmaSebosa : 12-01-11 at 04:46 PM.
AlmaSebosa is offline Report comment to moderator  
Reply With Quote
Old 09-07-11, 12:31 PM  
SDPhantom
A Molten Giant
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 586
File comments: 54
Uploads: 15
Originally posted by Ryplinn
Originally posted by Maelynn
I had emptied the self-ressing part of the quote .lua, and it used to work just fine. However, lately I've been getting an error every time I use my Ankh: ...
It looks like the random() function now needs a non-null argument
It's running when the variable selfQuotes is empty, returning 0 as its length to random() and causing that error.
This would be a little hack, but put a null string into selfQuotes in RedeemerQuotes.lua. It should look something like this after you're done.
Code:
selfQuotes = {		--Used when self-rezzing, as from a soulstone
	"",
}

This will cause the addon to load the null string and try to send it. The following call to SendChatMessage() will do nothing, continuing without error.
__________________
When WoW gives you [Supermassive Fail], [Summon Angry Programmer].
Last edited by SDPhantom : 09-07-11 at 12:43 PM.
SDPhantom is offline Report comment to moderator  
Reply With Quote
Old 09-06-11, 01:25 PM  
SDPhantom
A Molten Giant
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 586
File comments: 54
Uploads: 15
If you open Redemer.lua in something like Notepad, find line 78. It should look like this.
To find a line number in Notepad, you need to have Word Wrap turned off in the Format menu so you can turn on the status bar in the View menu. When done, this will show something like "Ln X, Col Y" at the bottom of the window, this would show the line number where "X" is.
Code:
	if (event == "COMBAT_LOG_EVENT_UNFILTERED") then
		local arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 = ...;
		--[[DEFAULT_CHAT_FRAME:AddMessage(tostring(event));
		DEFAULT_CHAT_FRAME:AddMessage(tostring(arg2));
		DEFAULT_CHAT_FRAME:AddMessage(string.format("0x%x",tostring(arg8)));
		DEFAULT_CHAT_FRAME:AddMessage(tostring(arg7));
		]]--
		--if pet dies, gets pet's name
		if (arg2 == "UNIT_DIED") then
			if (arg8 == 0x1111) then
				PET_NAME = arg7;
			end
		end
	end


Change that block of code to look like this.
Code:
	if (event == "COMBAT_LOG_EVENT_UNFILTERED") then
		local arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10 = ...;
		--[[DEFAULT_CHAT_FRAME:AddMessage(tostring(event));
		DEFAULT_CHAT_FRAME:AddMessage(tostring(arg2));
		DEFAULT_CHAT_FRAME:AddMessage(string.format("0x%x",tostring(arg8)));
		DEFAULT_CHAT_FRAME:AddMessage(tostring(arg7));
		]]--
		--if pet dies, gets pet's name
		if (arg2 == "UNIT_DIED") then
			if (arg10 == 0x1111) then
				PET_NAME = arg9;
			end
		end
	end


That should fix the hunter problem, I'm looking into a way to work around the error for shamans. I don't have a way to test it so I'll have to look at the error itself and determine what's going on.
__________________
When WoW gives you [Supermassive Fail], [Summon Angry Programmer].
Last edited by SDPhantom : 09-06-11 at 01:37 PM.
SDPhantom is offline Report comment to moderator  
Reply With Quote
Old 07-16-11, 02:11 AM  
chicknlil25
A Defias Bandit

Forum posts: 2
File comments: 16
Uploads: 0
Any hope for some love for this addon for 4.2? Hunter pets are definitely broken - any attempt to rez gets "pet name unknown" as what is said. If what I've read on the curse comments for this addon are correct, Mass Rezz doesn't quite function right either - wouldn't know, don't have access to that yet.

Anyways, love this addon and can't tell you how many laughs and/or whispers I've gotten, particularly when it spouts off the "Y'know, it took Jesus 3 days to do this?" line.

Regards.
chicknlil25 is offline Report comment to moderator  
Reply With Quote
Old 05-09-11, 03:17 AM  
Maelynn
A Deviate Faerie Dragon
 
Maelynn's Avatar

Forum posts: 15
File comments: 154
Uploads: 0
Hrm, I can't seem to find that line. Wordpad - I have no coding programs - doesn't show line numbers, and the search function brings nothing - neither in Redeemer.lua nor in Redeemerquotes.lua (not sure which one I had to edit, so I tried both). :s
__________________
Just remember... if the world didn't suck, we'd all fall off.
Maelynn is offline Report comment to moderator  
Reply With Quote
Old 05-08-11, 05:44 PM  
Ryplinn
A Kobold Labourer
 
Ryplinn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 17
Uploads: 1
Originally posted by Maelynn
I had emptied the self-ressing part of the quote .lua, and it used to work just fine. However, lately I've been getting an error every time I use my Ankh:
It looks like the random() function now needs a non-null argument. If you'd like to turn off self-rez quotes, I recommend commenting out line 106:


RedeemerHasQuotes("Self","self")

to

--RedeemerHasQuotes("Self","self")
Last edited by Ryplinn : 05-08-11 at 06:11 PM.
Ryplinn is offline Report comment to moderator  
Reply With Quote
Old 04-10-11, 05:53 AM  
Maelynn
A Deviate Faerie Dragon
 
Maelynn's Avatar

Forum posts: 15
File comments: 154
Uploads: 0
I had emptied the self-ressing part of the quote .lua, and it used to work just fine. However, lately I've been getting an error every time I use my Ankh:

Date: 2011-04-10 10:44:05
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\Redeemer\Redeemer.lua line 124:
bad argument #1 to 'random' (interval is empty)
Debug:
(tail call): ?
[C]: ?
[C]: random()
Redeemer\Redeemer.lua:124: Redeemer_Quotes()
Redeemer\Redeemer.lua:102: Redeemer_OnEvent()
[string "*:OnEvent"]:1:
[string "*:OnEvent"]:1
AddOns:
<snip>
__________________
Just remember... if the world didn't suck, we'd all fall off.
Maelynn is offline Report comment to moderator  
Reply With Quote
Old 10-21-10, 05:32 PM  
Ryplinn
A Kobold Labourer
 
Ryplinn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 17
Uploads: 1
Originally posted by Maelynn
Yes, I do get that message. But for the rest I get no sign of life from Redeemer.
Thanks for the info. This should shorten update time significantly.
Ryplinn is offline Report comment to moderator  
Reply With Quote
Old 10-21-10, 03:11 AM  
Maelynn
A Deviate Faerie Dragon
 
Maelynn's Avatar

Forum posts: 15
File comments: 154
Uploads: 0
Originally posted by Ryplinn
Does the "Redeemer is locked and loaded!" chat message display when you log in?
Yes, I do get that message. But for the rest I get no sign of life from Redeemer.

(initially I wrote I didn't, but later on I noticed that I had disabled the addon for that character)
__________________
Just remember... if the world didn't suck, we'd all fall off.
Last edited by Maelynn : 10-21-10 at 04:11 AM.
Maelynn is offline Report comment to moderator  
Reply With Quote
Old 10-20-10, 11:48 AM  
Ryplinn
A Kobold Labourer
 
Ryplinn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 17
Uploads: 1
Originally posted by Maelynn
Since 4.0.1, this addon doesn't seem to work anymore. I don't get any error messages, but the quotes just won't be said in /s whenever I cast a ressurrection spell. I'm sad, because I can always count on a few laughs when randomly spouting a funny/weird quote.
I have not yet had a chance to test Redeemer with 4.0.1 or the Cataclysm beta. Once I do, I'll release an update.

Does the "Redeemer is locked and loaded!" chat message display when you log in?
Ryplinn is offline Report comment to moderator  
Reply With Quote
Old 10-20-10, 07:11 AM  
Maelynn
A Deviate Faerie Dragon
 
Maelynn's Avatar

Forum posts: 15
File comments: 154
Uploads: 0
Since 4.0.1, this addon doesn't seem to work anymore. I don't get any error messages, but the quotes just won't be said in /s whenever I cast a ressurrection spell. I'm sad, because I can always count on a few laughs when randomly spouting a funny/weird quote.
__________________
Just remember... if the world didn't suck, we'd all fall off.
Maelynn is offline Report comment to moderator  
Reply With Quote
Old 07-12-10, 10:25 PM  
Ryplinn
A Kobold Labourer
 
Ryplinn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 17
Uploads: 1
Originally posted by Dulcea
I'm still getting a "Pet Name Unknown" every time my hunter rez's her pet, and its still nearby, so the pet frame says dead. It works just fine when I rez him when he has no body. I completely remove the Redeemer folder every time I update, and I haven't made any modifications. Help?
I'm having trouble reproducing this. The "Pet Name Unknown" message should only show up if your pet is already dead when you log in.

Can you provide details on what zone you're in, which pet you have, and how far away from your pet you are when you rez?

Thanks!
Ryplinn is offline Report comment to moderator  
Reply With Quote
Old 07-12-10, 04:27 PM  
Ryplinn
A Kobold Labourer
 
Ryplinn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 17
Uploads: 1
Originally posted by Dulcea
I'm still getting a "Pet Name Unknown" every time my hunter rez's her pet, and its still nearby, so the pet frame says dead. It works just fine when I rez him when he has no body. I completely remove the Redeemer folder every time I update, and I haven't made any modifications. Help?
Thanks for the report. I'll look into this.
Ryplinn is offline Report comment to moderator  
Reply With Quote
Old 06-06-10, 08:44 PM  
Dulcea
A Murloc Raider

Forum posts: 4
File comments: 19
Uploads: 0
I'm still getting a "Pet Name Unknown" every time my hunter rez's her pet, and its still nearby, so the pet frame says dead. It works just fine when I rez him when he has no body. I completely remove the Redeemer folder every time I update, and I haven't made any modifications. Help?
__________________
Meddle not in a Dulcea's affairs for you are crunchy and my pet is hungry. ^_^
Last edited by Dulcea : 06-07-10 at 02:18 AM.
Dulcea is offline Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: