Originally posted by SomeRandomFella
Hi so basically i'm trying to change the accuracy of the MTAR -*0x26FFB99. It doesn't set unless you call it with the byte -*0x09. That will only make the accuracy 100%. I want to use a numericupdown to choice the accuracy amount but I have no clue how to call it. Can someone please help? Any help at all is appreciated!
if (numericUpDown1.Value == 0)//if numericUpDown value is "0"
{
PS3.SetMemory(0x26FFB99, new byte[](0x00)); //set your bytes for that address to "0x00", to turn it off
}
else
{
PS3.SetMemory(0x26FFB99, BitConverter.GetBytes(Convert.ToInt32(this.numericUpDown1.Value.ToString())));//convert value from string.At numericUpDown value "09", you should be at byte 0x09
}