Originally posted by Repto
Hello, i'm making a rtm tool for a game in Visual C# Every time i try to enter the code below on my visual basic button it doesn't work.
Here is the net cheat offset
> 0 102630FC 00000384
Code :*
byte[]cash = BitConverter.GetBytes(Convert.ToInt32(numericUpDown2.Text));
PS3.SetMemory(0x102630FC, cash);
PS . The netcheat code works when i make it constant and change it within netcheat. I just cannot get my button to write it to the PS3.
There isnt a space between the down part in the real code
Try this in the button:
if (numericUpDown2.Value == 0)
{
byte[] Cash = new byte[2];
PS3.SetMemory(0x102630FC , new byte[] { 0x00 });
}
else
{
PS3.SetMemory(0x102630FC , BitConverter.GetBytes(Convert.ToInt32(this.numericUpDown2.Value.ToString())));
}//set cash