Post: [Tutorial] How to make a Prestige Disco for any game [C#]
11-28-2013, 01:17 PM #1
BLiNDzZ
Who’s Jim Erased?
(adsbygoogle = window.adsbygoogle || []).push({}); Hello everyone. Today I bring you tutorial on how to make a prestige disco for any game using C#.

The 1st thing that needs to be done is this code added to the very top of your project
    using System.Threading;


Now, The 2nd thing you want to do is make a timer called Disco Now, After that double click on the timer to get to its code and you want your code for the timer to look like this :
    
public static int discoPres = 0;
private void Disco_Tick(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
discoPres = discoPres + 1;
if (discoPres == 11) { discoPres = 0; }

byte[] Prestiger = BitConverter.GetBytes(discoPres);

PS3.SetMemory(0x175279C, Prestiger);
Thread.Sleep(100);


}
else
{
Disco.Stop();
}
}


Now, you want to add a checkbox to you tool (To enabled and disable the disco)
Now do the same as before and double click on the checkbox and this this code to it and add this to it
    Disco.Start();


That's it!
All that's left now is to adjust the timer to adjust the speed you would like the Prestiges to disco.

PS: The offsets and time used for this are for Ghosts, so if you would like it to work on other games you need to adjust the speed of the timer and the Thead.Sleep(100); to a time you like.


If you have any errors comment here and I will do my best to help.

The following 5 users say thank you to BLiNDzZ for this useful post:

BroIDontMod, FusionIsDaName, Mango_Knife, RTE, xLuCiDiTyZxHD

The following user groaned BLiNDzZ for this awful post:

Eddie Mac
11-28-2013, 01:21 PM #2
assassinq8y
Pokemon Trainer
nice tut thnx
11-28-2013, 01:48 PM #3
KevinWinterX
< ^ > < ^ >
Originally posted by BLiNDzZ View Post
Hello everyone. Today I bring you tutorial on how to make a prestige disco for any game using C#.

The 1st thing that needs to be done is this code added to the very top of your project
    using System.Threading;


Now, The 2nd thing you want to do is make a timer called Disco Now, After that double click on the timer to get to its code and you want your code for the timer to look like this :
    
public static int discoPres = 0;
private void Disco_Tick(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
discoPres = discoPres + 1;
if (discoPres == 11) { discoPres = 0; }

byte[] Prestiger = BitConverter.GetBytes(discoPres);

PS3.SetMemory(0x175279C, Prestiger);
Thread.Sleep(100);


}
else
{
Disco.Stop();
}
}


Now, you want to add a checkbox to you tool (To enabled and disable the disco)
Now do the same as before and double click on the checkbox and this this code to it and add this to it
    Disco.Start();


That's it!
All that's left now is to adjust the timer to adjust the speed you would like the Prestiges to disco.

PS: The offsets and time used for this are for Ghosts, so if you would like it to work on other games you need to adjust the speed of the timer and the Thead.Sleep(100); to a time you like.


If you have any errors comment here and I will do my best to help.


Do you know the code to get all clients names for labels????
11-28-2013, 11:20 PM #4
Bli
Pokemon Trainer
Originally posted by BLiNDzZ View Post
Hello everyone. Today I bring you tutorial on how to make a prestige disco for any game using C#.

The 1st thing that needs to be done is this code added to the very top of your project
    using System.Threading;


Now, The 2nd thing you want to do is make a timer called Disco Now, After that double click on the timer to get to its code and you want your code for the timer to look like this :
    
public static int discoPres = 0;
private void Disco_Tick(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
discoPres = discoPres + 1;
if (discoPres == 11) { discoPres = 0; }

byte[] Prestiger = BitConverter.GetBytes(discoPres);

PS3.SetMemory(0x175279C, Prestiger);
Thread.Sleep(100);


}
else
{
Disco.Stop();
}
}


Now, you want to add a checkbox to you tool (To enabled and disable the disco)
Now do the same as before and double click on the checkbox and this this code to it and add this to it
    Disco.Start();


That's it!
All that's left now is to adjust the timer to adjust the speed you would like the Prestiges to disco.

PS: The offsets and time used for this are for Ghosts, so if you would like it to work on other games you need to adjust the speed of the timer and the Thead.Sleep(100); to a time you like.


If you have any errors comment here and I will do my best to help.


How would you do this for name changing....?
11-29-2013, 12:58 AM #5
BLiNDzZ
Who’s Jim Erased?
Originally posted by Bli View Post
How would you do this for name changing....?

Not sure, I tried a few things but no luck, Give a try yourself and post back here. Smile
11-29-2013, 01:15 AM #6
Nice Smile
11-29-2013, 01:53 AM #7
John Leepe
< ^ > < ^ >
Originally posted by BLiNDzZ View Post
Hello everyone. Today I bring you tutorial on how to make a prestige disco for any game using C#.

The 1st thing that needs to be done is this code added to the very top of your project
    using System.Threading;


Now, The 2nd thing you want to do is make a timer called Disco Now, After that double click on the timer to get to its code and you want your code for the timer to look like this :
    
public static int discoPres = 0;
private void Disco_Tick(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
discoPres = discoPres + 1;
if (discoPres == 11) { discoPres = 0; }

byte[] Prestiger = BitConverter.GetBytes(discoPres);

PS3.SetMemory(0x175279C, Prestiger);
Thread.Sleep(100);


}
else
{
Disco.Stop();
}
}


Now, you want to add a checkbox to you tool (To enabled and disable the disco)
Now do the same as before and double click on the checkbox and this this code to it and add this to it
    Disco.Start();


That's it!
All that's left now is to adjust the timer to adjust the speed you would like the Prestiges to disco.

PS: The offsets and time used for this are for Ghosts, so if you would like it to work on other games you need to adjust the speed of the timer and the Thead.Sleep(100); to a time you like.


If you have any errors comment here and I will do my best to help.

nice

l
11-29-2013, 05:42 AM #8
Nice tutorial man!
11-30-2013, 06:30 PM #9
Mango_Knife
In my man cave
Originally posted by BLiNDzZ View Post
Not sure, I tried a few things but no luck, Give a try yourself and post back here. Smile


You must login or register to view this content.
This?

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo