Originally posted by Adrian
No, what he did is wrong. Don't argue, the correct would be if (checkBox1.Checked == false).... he has both true, the inverse of true is false. Also his code has been decompiled, which is probably the reason it is wrong.
As you said the inverse of true is false and as you can see by the code -
if(!checkBox1.Checked == true)
that is the same as:
if(!checkBox1)
and
if(checkBox1.Checked == false)
Note the ! .
If you tried the code you would know it is still right as it works -
You must login or register to view this content.
All I am trying to say is it works either way, so it's not wrong, just not a good way to do it as it's redundant code.
Originally posted by SynixHD
Not sure why but the Rainbow Name isn't working for me :/
You must login or register to view this content.
You must login or register to view this content.
Anyway to answer your question. Instead of using SetMemory just use PS3.Extension.WriteString, so for the Set Name button do this:
PS3.Extension.WriteString(0x026C0658, textBox1.Text);
in the timer:
Random random = new Random();
int RandomColor = random.Next(0, 9);
PS3.Extension.WriteString(0x026C0658, "^" + RandomColor + textBox1.Text);
Just change the addresses to what you want.