Flashing Name, Prestige Disco, etc

  • Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

TheMystery

Retired Staff
Active Member
Dec 6, 2013
648
364
133
Hey CC Here Is A Source Code Of Flashing Names, etc

Example :
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
//Prestige Looper
Random random = new Random();
int Prestige = random.Next(1, 10);
byte[] Code1 = BitConverter.GetBytes(Prestige);
Array.Resize(ref Code1, Code1.Length + 1);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1947C, Code1);
timer1.Start();
}

Flashing Name :
//Flashing Name
Random random = new Random();
int Color= random.Next(0, 7);
byte[] Code1 = Encoding.ASCII.GetBytes("^" + Color + your textbox.Text);
Array.Resize(ref Code1, Code1.Length + 1);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, NameOffset, Code1);

Prestige Looper :
//Prestige Looper
Random random = new Random();
int Prestige = random.Next(0, 11);
byte[] Code1 = BitConverter.GetBytes(Prestige);
Array.Resize(ref Code1, Code1.Length + 1);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, PrestigeOffset, Code1);

Level Looper :
//LEVEL Looper
Random random = new Random();
int RanLvl = random.Next(1, 80);
byte[] BaSsHaXoR = BitConverter.GetBytes(RanLvL);
Array.Resize(ref BaSsHaXoR, BaSsHaXoR.Length + 1);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, LevelOffset, BaSsHaXoR);

Credits :
WhosYourHost
KiwiModz
 
  • Like
Reactions: Nostafaru

Nostafaru

Moderating the Crunch Bunch.
Retired Staff
Community Elite
Community Veteran
Determined Poster
Active Member
Console ID Poster
Apr 6, 2014
2,020
1,783
443
What game is this for? And what tool are you working on at the time ? :D
 
General chit-chat
Help Users
    @ QM|T_JinX: zap