What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Extender, extends HB functionality (answers whispers, ...)!

Not sure on the version number I only downloaded it an hour ago from this post?
 
Not sure on the version number I only downloaded it an hour ago from this post?
Ok, it sounds like a bug. Please restart WoW and HB and try whispering yourself or check what happens after you receive whispers.
Blacklisting is coming soon.
 
It will be extended soon with a XML configuration file, stay tuned ;)

cool ... this will make the plugin truely useable then, IMO.
keep up the good work, it's off to a good start = )
\
 
great idea, just needs to be able to add hundreds of responses, preferably with a nice gui
 
got a whisper today from someone simply saying "bot" and Extender did not reply. I can think of 2 reasons why.

1.Maybe the coding of Extender only reads default tabs for tells and as I use a custom "whisper" tab it didn't see it.

2.The ASCII code in the guys name messed up Extender
 
Do you not support this anymore Keanu? Sad to see this one go. It was my favorite :(
 
butmenot and Spammenot are two good addons two I'm using both as a standard.
 
is it working?
It seems that no events from WoWChat.WoWChat are fire.
I tried it with Honorbuddy 1.245
 
In the new release of HB 1.246, these events are working properly. But there are some other problem with the WoWChat class.
Sometimes without apparently reason they stopped to work and you have to recompile your plugin in order to get it works again.
I'm trying to implement a messenger plugin to forward each whisper messages to your msn account and also to have some sort
of control of your wow toon by the msn chat.
 
Last edited:
read the post above yours, it does indeed work with hb 1.246. i haven't noticed any issues with wowchat yet though.
 
Does this react on specific words when someone whispers? example: "bot".. And if it does, does it make a sound? TIA
 
this plugin give me following error:
Plugin Extender.cs could not be compiled! Compiler errors:
File: Extender.cs Line: 461 Error: 'WoWChat.ChatType' indeholder ikke en definition af 'Whisper'
File: Extender.cs Line: 473 Error: 'WoWChat.ChatType' indeholder ikke en definition af 'Whisper'

how can i fix this?
 
ChatType.Whisper is not longer exists in hb 1.246, you should use another enum, i forgot the name.
Anyway, at least in the 1.246 you will get another error also with this new enum when you will try to use it (lua error).

Code:
This is a simple work around for 1.246:

       private static void Whisper(string message, string to)
        {
            // if language is nil or omitted the default language will be used: 
            // "ORCISH" for the Horde, and "COMMON" for the Alliance, as returned by GetDefaultLanguage("player")

            if (!string.IsNullOrEmpty(to))
            {
                if (message.Length > 255)
                {
                    message = message.Substring(0, 254);
                }
                string luascript = string.Format("SendChatMessage(\"{0}\", \"WHISPER\", \"Common\", \"{1}\");",
                                                 message, to);
                Lua.DoString(luascript);
                
            }
        }
 
Last edited:
Hi Keanu. I have put extender in plugins's folder , i have save it but my caracher don't answear when wisper it. What i must to do?
 
Back
Top