[C#/Source] Write RGB into memory using a textbox

God

Skiddy
Messages
337
Reaction score
240
Points
818
Hello CCM :wink:
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:
883be7e83f144bdbaee8249b6aa2fc66.png
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
5,000
Reaction score
2,920
Points
1,103
Hello CCM :wink:
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:
883be7e83f144bdbaee8249b6aa2fc66.png
Your Mw3 Tool got a esp, did you code the esp? :smile:
 

God

Skiddy
Messages
337
Reaction score
240
Points
818
Your Mw3 Tool got a esp, did you code the esp? :grinning:
base was from mpgh, i just updated the offsets and fixed some broken things that were in the code, and changed some other stuff :yum:
 
Top