Originally posted by NoToRiOuSHaCkEr
This is very simple and I hope you enjoy! Leave a like and a sub!
You must login or register to view this content.
you should change something in the tutorial, instead of making a if statements for every prestige, transform the value into bytes like this:
byte[] Prestige = BitConverter.GetBytes((int)NumericUpDown1.Value); //turns the int into bytes
Array.Reverse(Prestige); //reverse the bytes for the ps3
PS3.SetMemory(PRESTIGE_ADDRESS, Prestige); //send the bytes to the ps3
otherwise your way would need 20 if/else statements... i just resumed it in 3 lines !
Great tutorial btw :yes: ^^