Post: Flashing name code c#?
03-06-2016, 09:38 PM #1
Alccx
Keeper
(adsbygoogle = window.adsbygoogle || []).push({}); help i need a flashing name code for an rtm tool that im working on. i've tried several ones but they dont work for me. I have this one so far but it doesnt work:
            private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
timer1.Start();
}
else
{
timer1.Stop();
}
}

private void timer1_Tick(object sender, EventArgs e)
{
Random random = new Random();
int Color = random.Next(0, 7);
byte[] Code1 = Encoding.ASCII.GetBytes("^" + Color + textBox2.Text);
Array.Resize(ref Code1, Code1.Length + 1);
PS3.SetMemory(0x26c0658, Code1);
PS3.SetMemory(0x26c067f, Code1);
//PS3.SetMemory(0x26c0658, bytes);
//PS3.SetMemory(0x26c067f, bytes);
}
(adsbygoogle = window.adsbygoogle || []).push({});
03-08-2016, 07:40 AM #2
Default Avatar
Remy
Guest
Originally posted by Alccx View Post
~


That should work fine? Check the addresses to make sure they are correct.
04-23-2016, 10:59 PM #3
Wait Sorry I read it wrong lol

Put this in the flash checkbox

if (checkBox1.Checked == true)
{
timer1.Start();
}
else
{
timer1.Stop();
}


and put this in the timer


int num = new Random().Next(0, 9);
byte[] bytes = Encoding.ASCII.GetBytes("^" + num + this.textBox1.Text);
Array.Resize<byte>(ref bytes, bytes.Length + 1);
PS3.SetMemory(0x26c0658, bytes);
05-03-2016, 05:35 AM #4
Originally posted by Alccx View Post
help i need a flashing name code for an rtm tool that im working on. i've tried several ones but they dont work for me. I have this one so far but it doesnt work:
            private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
timer1.Start();
}
else
{
timer1.Stop();
}
}

private void timer1_Tick(object sender, EventArgs e)
{
Random random = new Random();
int Color = random.Next(0, 7);
byte[] Code1 = Encoding.ASCII.GetBytes("^" + Color + textBox2.Text);
Array.Resize(ref Code1, Code1.Length + 1);
PS3.SetMemory(0x26c0658, Code1);
PS3.SetMemory(0x26c067f, Code1);
//PS3.SetMemory(0x26c0658, bytes);
//PS3.SetMemory(0x26c067f, bytes);
}


Question answered. Closed.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo