ID:153933
 
What are some stat panel tricks you know? Can you change the color of stat panels? Can you change the focus to a certain stat panel? Can you only check things on certain ticks?

Feel free to answer these, and add your own tips from experience.
Changing to a statpanel is as easy as changing client.statpanel to equal the same name.
Can you change the color of stat panels?

Unfortunately not yet. It's been requested in the past, so it's on the List.

Can you change the focus to a certain stat panel?

Spuzzum explains this below.

Can you only check things on certain ticks?

Well, if you want to check every other tick (or every three, etc..), just maintain a tick counter and do:
if(tick_counter % 2 == 0)
before whatever you want to check. For things that don't change often, this is a really good idea.

-AbyssDragon