(adsbygoogle = window.adsbygoogle || []).push({});
Hey NGU!
I'm making a Black Ops 2 RTM tool and I'm using a numericupdown for my prestige selection..
Is this the right code?
if (numericUpDown1.Value == 0)
{
byte[] Prestige = new byte[] { 0x00 }; // I think it's 0x00
PS3.SetMemory(0x26FD014, Prestige);
}
else
{
byte[] Prestige = BitConverter.GetBytes(Convert.ToInt32(numericUpDown1.Value.ToString()));
PS3.SetMemory(0x26FD014, Prestige);