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.
cool ... this will make the plugin truely useable then, IMO. keep up the good work, it's off to a good start = ) \
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
as crass as it is I have been using this http://wow.curse.com/downloads/wow-addons/details/nowhisper.aspx no-one bothers me after that, very effective. Of course I changed the message
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.
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); } }
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?