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

BN Whispers: need to hook outgoing tells

yury2808

New Member
Joined
Jun 30, 2011
Messages
53
Reaction score
0
Heya,

Doing my little chat plugin now, found the problem: while it is possible to catch up with WoW's incoming BN whispers, I'm yet to found how to handle the outgoing ...

For normal whispers, I can hook WoWChat.WhisperTo, but for BN - I could not find either HB's or WoW's analogue for it...

Any ideas?

Best,
Me.
 
Heya,

Doing my little chat plugin now, found the problem: while it is possible to catch up with WoW's incoming BN whispers, I'm yet to found how to handle the outgoing ...

For normal whispers, I can hook WoWChat.WhisperTo, but for BN - I could not find either HB's or WoW's analogue for it...

Any ideas?

Best,
Me.

If you figure out what LUA events that are raised we can add it to the WoWChat class.
Or you could use use those events.
 
If you figure out what LUA events that are raised we can add it to the WoWChat class.
Or you could use use those events.
"CHAT_MSG_WHISPER_INFORM"
Category: Communication


Fired when the player sends a whisper to another player

arg1
Message sent
arg2
Player who was sent the whisper
arg3
Language
arg11
Chat lineID
arg12
Receiver GUID


"CHAT_MSG_BN_WHISPER_INFORM"
Category: Battle.net,Communication


arg11
Chat lineID
arg13
Bnet presenceID
CHAT_MSG_BN_WHISPER_INFORM should be the right
 
Stormchasing,

where you got the info? wowwiki.com only described arg11/13 parameters for it, this is where I was stuck and started to dig the chatframe.lua :)

Thank you, btw.
 
Back
Top