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

Code to hearth in professionbuddy?

Piepants

New Member
Joined
Aug 15, 2012
Messages
73
Reaction score
0
Hey does anyone happen to know what line of code would be required at the beginning of a professionbuddy profile to simply use a hearthstone?
 
Lua.DoString(string.Format("RunMacroText(\"{0}\")", "/s hello"), 0);
Input to the chat box. Chat strings can be inserted, or stuff like /use Hearthstone
 
Lua.DoString(string.Format("RunMacroText(\"{0}\")", "/s hello"), 0);
Input to the chat box. Chat strings can be inserted, or stuff like /use Hearthstone

Brilliant! Thank you so much sir! Hee haw!
 
You know i found it in the guide that is included in the Professionbuddy folder.

If you open it you find some nice stuff.
 
It's not a good way to do it. It only works on english clients and if people use the regular HS.
Here's a better way to do it:
PHP:
Lua.DoString("UseHearthstone()");
 
It's not a good way to do it. It only works on english clients and if people use the regular HS.
Here's a better way to do it:
PHP:
Lua.DoString("UseHearthstone()");

Just wanted to post this.

Gj inrego :)
 
Back
Top