Originally posted by ItsJustCrafty
Anyone have the tool where it makes your name a clock? I had it, but I lost it.
I want to do a new year's countdown with it. Thanks!
1. Add a timer to your form.
2. Double click the timer and add
Random random = new Random();
int Color = random.Next(0, 7);
byte[] cC = Encoding.ASCII.GetBytes("^" + Color +
textBox1.Text);
Array.Resize(ref cC, cC.Length + 1);
PS3.SetMemory((
0x026C0658), cC);
Random random1 = new Random();
int Color2 = random1.Next(0, 7);
byte[] cC2= Encoding.ASCII.GetBytes("^" + Color2 +
textBox1.Text);
Array.Resize(ref cC2, cC2.Length + 1);
PS3.SetMemory((
0x026c067f), cC2);
3. Add a toggle and add:
if (toggle1.Checked == true)
{
timer1.Start();
}
else
{
timer1.Stop();
}
- Credits The_Gazra BOll Tool for Flash Name code.
Color Codes:
Red = Whatever box your current/changed name goes into when you set it.
Yellow = Whatever the current offset is for the names.
Cyan = Whatever the name of the timer is.