Dex4.21
Member
Hello Cruncher's
Today I Showing You Some Basic Codes
numericUpDown
Today I Showing You Some Basic Codes
numericUpDown
byte[] prestige = BitConverter.GetBytes(Convert.ToInt32(this.numericUpDown1.Value.ToString()));
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0110d5a0, prestige);
TextBox
byte[] buffer = Encoding.ASCII.GetBytes(textBox1.Text); Array.Resize(ref buffer, buffer.Length + 1); PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x01BBBC2C, buffer);
Button
byte[] UFO = new byte[] { 0x02 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0110d87F, UFO);
Peace Out