GamingGod
Member
Put this code in a button;
I thought this code could be helpful for people making a rtm tool and want to show the current stats in labels
Credits - me
byte stat = API.Extension.ReadByte(0x00000); //Replace with the offset of the stats you want to get
int a = Convert.ToInt32(stat);
decimal d = (decimal)a / 1;
string q = d.ToString();
this.textbox1.Text = q; // replace with the text box you want to set it to
int a = Convert.ToInt32(stat);
decimal d = (decimal)a / 1;
string q = d.ToString();
this.textbox1.Text = q; // replace with the text box you want to set it to
I thought this code could be helpful for people making a rtm tool and want to show the current stats in labels

Credits - me