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

WowChat API questions

bloodlove

Member
Joined
Mar 27, 2010
Messages
91
Reaction score
1
ok a few months ago we used to be able to do these calls

Code:
WoWChat.NewWhisperFromMessage
WoWChat.NewGuildMessage 
WoWChat.NewOfficerMessage 
WoWChat.NewPartyMessage 
WoWChat.NewRaidMessage
WoWChat.NewSayMessage
and also call
Code:
public ChatType varname
have these been changed to something else or removed completely?

while looking i found

Code:
WoWChat.ChatGuildEventArgs
WoWChat.ChatWhisperEventArgs
so on and so on
and
Code:
            WoWChat.Guild 
            WoWChat.Officer
            WoWChat.Party
            WoWChat.Raid 
            WoWChat.Say 
            WoWChat.Whisper
            WoWChat.Yell
So the question is are any of these replacements and if so how are they handled? Where did ChatType go to? or is there a new way of parsing chat and getting chat channels/types and if so can you point me in the correct direction? Thanks for your help in advance.
 
One way you can use this is:
Code:
        static void Whisper(WoWChat.ChatWhisperEventArgs msg)
        {
            if (msg.Message.Contains("blabla"))
            {
                blabla
            }
         }

Theres a bunch of other ways, depends exactly on what you want to achieve.
 
Baxter do you have any time to chat? and if so whats your preferred method?
 
If you don't know how to use events in C#, you probably shouldn't be trying to hook them!
 
i know how to use events i was making sure these are the right ones maybe i don't communicate well enough
 
Back
Top