God
Skiddy
- Messages
- 337
- Reaction score
- 235
- Points
- 818
Hello CCM
So while I was making a killfeed color editor for my tool i'm working on (release soon maybe)
I writ this.
Have fun
So while I was making a killfeed color editor for my tool i'm working on (release soon maybe)
I writ this.
Have fun
PHP:
string rgb = textBoxX2.Text;
string[] hak = rgb.Split(new char[] {' '});
CC.Write._Bytes(0x064172C0, new byte[] { Convert.ToByte(hak[0]) });
CC.Write._Bytes(0x064172C1, new byte[] { Convert.ToByte(hak[1]) });
CC.Write._Bytes(0x064172C2, new byte[] { Convert.ToByte(hak[2]) });
PIC: