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

Party Chat

krisg

New Member
Joined
Dec 12, 2011
Messages
21
Reaction score
0
how do you get return true if something like my party member type "heal me" in a party chat ?
or check it someone in my party says "hi" which returns true, ill say "hello"?
 
Last edited:
To listen to whats happening in party chat, you'll need to hook into some events. I'd suggest looking at some of the monitoring plugins for some advice on that.

For typing into wow all you need is:
Code:
Styx.Helpers.KeyboardManager

That has all the keyboard stuff you need.
 
you can do Lua.DoString("runMacroText(/say Message here)");
or something like that, for listening to party chat, your going to have to use a event hook.
 
Back
Top