(adsbygoogle = window.adsbygoogle || []).push({});
Mods, when you get a chance could you move this to PS3 Cheats and Customization
Hello everyone im new here and ive seen you guys have alot of nice tutorials out there so i figured i would make one of my own.
Today i will show the basic tutorial on how to make a C# real time modding program.
So lets get started, 1st Off you will need Visual Studio downloaded (i have the 2012 version) you can download it by searching google for "Visual Studio 2012 Download"
Next you need to download my custom .dll at the bottom of this post (i will post a virus scan)
Now, Once you open Visual Studio you will see something like this:
You must login or register to view this content.
This is your start screen, at the left hand side you will see "New Project"
You must login or register to view this content.
Now you want to press ok and you should be at a screen like this:
You must login or register to view this content.
This is your Form, this is where you can add buttons and stuff like you see on others application
Now we need to add the ps3tmapi_net.dll and AXE.dll (download below) as a reference to your program (( i cannot provide ps3tmapi_net.dll for certain reasons)
You can add a reference by clicking "Project" at the top of the screen as you can see in the last picture and clicking "Add Reference" then you need to search for the ps3tmapi_net.dll (do the same for my .dll)
OK, So you want to add a button for Connect and Attach PS3 you can do this by adding a button to your form (click the toolbox on the left hand side, and drag a button onto the form)
Now you want to double click on the button so it takes you to its coding, looks like this:
You must login or register to view this content.
We need this button to connect our ps3 we can do this by adding this code two our button
AXE.PS3.Connect();
MessageBox.Show("PS3 Connected!");
After you add that it should look like this:
You must login or register to view this content.
Now you need to add another button like we did before and this will be our attach button (double click the button to get to its code)
try
{
AXE.PS3.Attach();
MessageBox.Show("Process Attached");
}
catch
{
MessageBox.Show("Attach Failed");
}
Now, we can make sure this works buy clicking start debugging like this:
You must login or register to view this content.
Click the green start button
Now open debugger and go to any offset (prestige, level) anything, and if you see data and not DDDDDDDDDD it worked
Now i will show you how to add a function, 1st off add another button and double click it to get to its coding
for example i will show you have to set Black Ops II 11th prestige, add this code to your 3rd button:
byte[] Prestige = new byte[] { 0x0B };
AXE.PS3.SetMemory(0x26F441C, Prestige);
Coding for that should look like this:
You must login or register to view this content.
Now if everything went well, you can start up your program and press, Connect then press Attach, now after you are in a party lobby on Black Ops II press your button for prestige and you should now be 11th Prestige
Well, thats it you have now made your own small real time editing program you can add to it as much as you want and here is how you would do that...
Add another button (or checkbox) and use this code like before
byte[] Prestige = new byte[] { 0x0B };
AXE.PS3.SetMemory(0x26F441C, Prestige);
But you will need to change Prestige (BOTH of them, the 1 at the top, and bottom) to the name of your new function like this for example
byte[] Jump = new byte[] { 0x49, 0xAC, };
AXE.PS3.SetMemory(0x005BC454, Jump);
now the 0x49, 0xAC is the value (for example the value for 7th prestige is 0x07) YOU HAVE TO PUT 0x infront of the value
I hope this helps some of you making some real time editing programs, if you need any help feel free to PM me or reply below, Thanks
Download .dll :
You must login or register to view this content.
Virus Scan:
You must login or register to view this content.