| Tested: | Hour of Twilight 4.3 |
| Updated: | 12-01-11 04:43 PM |
| Created: | unknown |
| Downloads: | 9,965 |
| Favorites: | 98 |
| MD5: |

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 |
![]() |
Comment Options |
|
|
|
|
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.
|
|
|
|
|
|
|
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.
Last edited by SDPhantom : 09-06-11 at 01:37 PM.
|
|
|
|
|
|
|
|
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. |
|
|
|
|
|
|
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. |
|
|
|
|
|
||
RedeemerHasQuotes("Self","self") to --RedeemerHasQuotes("Self","self")
Last edited by Ryplinn : 05-08-11 at 06:11 PM.
|
||
|
|
|
|
|
|
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. |
|
|
|
|
|
||
|
||
|
|
|
|
||
(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.
|
||
|
|
|
|
||
Does the "Redeemer is locked and loaded!" chat message display when you log in? |
||
|
|
|
|
|
|
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. |
|
|
|
|
|
||
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! |
||
|
|
|
|
||
|
||
|
|
|
|
|
|
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.
|
|
|
![]() |