Ok, it sounds like a bug. Please restart WoW and HB and try whispering yourself or check what happens after you receive whispers.Not sure on the version number I only downloaded it an hour ago from this post?
It will be extended soon with a XML configuration file, stay tuned![]()
Same problem here..is it working?
It seems that no events from WoWChat.WoWChat are fire.
I tried it with Honorbuddy 1.245
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);
}
}