• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Extender, extends HB functionality (answers whispers, ...)!

    Discussion in 'Archives' started by Keanu, Jan 24, 2010.

    1. Nymfry

      Nymfry New Member

      Joined:
      Jan 28, 2010
      Messages:
      57
      Likes Received:
      0
      Trophy Points:
      0
      Not sure on the version number I only downloaded it an hour ago from this post?
       
    2. Keanu

      Keanu Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      871
      Likes Received:
      15
      Trophy Points:
      18
      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.
       
    3. xopherw

      xopherw New Member

      Joined:
      Jan 15, 2010
      Messages:
      180
      Likes Received:
      0
      Trophy Points:
      0


      cool ... this will make the plugin truely useable then, IMO.
      keep up the good work, it's off to a good start = )
      \
       
    4. sfagent07

      sfagent07 New Member

      Joined:
      Jan 15, 2010
      Messages:
      37
      Likes Received:
      0
      Trophy Points:
      0
      great idea, just needs to be able to add hundreds of responses, preferably with a nice gui
       
    5. KillaBuStIn

      KillaBuStIn New Member

      Joined:
      Jan 15, 2010
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      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
       
    6. hokumera

      hokumera New Member

      Joined:
      Jan 18, 2010
      Messages:
      152
      Likes Received:
      0
      Trophy Points:
      0
      Do you not support this anymore Keanu? Sad to see this one go. It was my favorite :(
       
    7. wozoki

      wozoki Banned

      Joined:
      Jan 15, 2010
      Messages:
      580
      Likes Received:
      5
      Trophy Points:
      0
      Just tried it aswell. Its just not replying :/
       
    8. theatristformallyknownasG

      theatristformallyknownasG Active Member

      Joined:
      Jan 16, 2010
      Messages:
      3,041
      Likes Received:
      8
      Trophy Points:
      38
    9. panYama

      panYama Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,629
      Likes Received:
      49
      Trophy Points:
      0
      butmenot and Spammenot are two good addons two I'm using both as a standard.
       
    10. CaOs

      CaOs New Member

      Joined:
      Jan 23, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      is it working?
      It seems that no events from WoWChat.WoWChat are fire.
      I tried it with Honorbuddy 1.245
       
    11. Danne206

      Danne206 New Member

      Joined:
      Jan 15, 2010
      Messages:
      105
      Likes Received:
      1
      Trophy Points:
      0
      Same problem here..
       
    12. hldn

      hldn New Member

      Joined:
      Feb 5, 2010
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      0
      nope, doesn't work at all.
       
    13. CaOs

      CaOs New Member

      Joined:
      Jan 23, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      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: Feb 22, 2010
    14. exosion

      exosion New Member

      Joined:
      Jan 15, 2010
      Messages:
      124
      Likes Received:
      1
      Trophy Points:
      0
      Doesn't work at all. :(
       
    15. hldn

      hldn New Member

      Joined:
      Feb 5, 2010
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      0
      read the post above yours, it does indeed work with hb 1.246. i haven't noticed any issues with wowchat yet though.
       
    16. lynar

      lynar New Member

      Joined:
      Jan 15, 2010
      Messages:
      394
      Likes Received:
      2
      Trophy Points:
      0
      Does this react on specific words when someone whispers? example: "bot".. And if it does, does it make a sound? TIA
       
    17. kralmer

      kralmer New Member

      Joined:
      Jan 15, 2010
      Messages:
      95
      Likes Received:
      0
      Trophy Points:
      0
      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?
       
    18. CaOs

      CaOs New Member

      Joined:
      Jan 23, 2010
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      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: Mar 3, 2010
    19. wozoki

      wozoki Banned

      Joined:
      Jan 15, 2010
      Messages:
      580
      Likes Received:
      5
      Trophy Points:
      0
      Ye, an update would be great :)
       
    20. cuthead

      cuthead Member

      Joined:
      Jan 15, 2010
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      6
      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?
       

    Share This Page