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

Logging.Write(In multiple colors)

Dagradt

Community Developer
Joined
Jul 26, 2010
Messages
1,423
Reaction score
43
@Community & Devs,

I am trying to get HB to post how many runes I have of each type. Here is my theory on how it should work:
PHP:
Logging.Write(Color.MediumVioletRed, "[" + StyxWoW.Me.DeathRuneCount + "]" + Color.DeepSkyBlue, "[" + StyxWoW.Me.FrostRuneCount + "]" + Color.SpringGreen, "[" + StyxWoW.Me.UnholyRuneCount + "]");
This of course does not work, so I tried this:
PHP:
                    Logging.Write(Color.MediumVioletRed, "[" + StyxWoW.Me.DeathRuneCount + "]");
                    Logging.Write(Color.DeepSkyBlue, "[" + StyxWoW.Me.FrostRuneCount + "]");
                    Logging.Write(Color.SpringGreen, "[" + StyxWoW.Me.UnholyRuneCount + "]");
Now the above will always post my Death Rune Count, but Frost and Unholy post at random... Does anyone know of a sloution? I would really like to have them on one line instead of three.

Thank you,
Dagradt
 
Back
Top