• 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.

How to make a c# rtm tool cex dex base

☆★CHRISMODz69®☆★

Active Poster
Active Member
1. open visual studio 2010/ 2013 ect
2. Create a buttons one called attach/connect
3. create 2 radio buttons name one TMAPI & one called CCAPI

go to reference and add PS3Lib

now lets start by double on your rtm tool and adding

using PS3LIb;
like in this photo

http://gyazo.com/22f3136adcc463bce138148399057b3c

using PS3Lib;

now add
public static bool istmapi = true;
private PS3API PS3 = new PS3API();
public Form1()

Photo here http://gyazo.com/306683dc6bf0a73addf07992b23f5519

Now double click one the connect/attach button and add this


CONNECT & ATTACH

{
{
if (!this.PS3.ConnectTarget(0))
{
MessageBox.Show("Impossible to connect. Check IP ", "Error...", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
else
{
string str = string.Concat("You are now connected with this API : ", this.PS3.GetCurrentAPIName());
MessageBox.Show(str, "Connected!", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);


if (istmapi == true)
{
if (PS3.AttachProcess())
{
MessageBox.Show("Successfully Attached the process!\n\nEnjoy my Tool :3", "Attached!", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else

MessageBox.Show("Failed to attach the process!\n\nMake sure your ingame!", "Failed...", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (istmapi == false)
{
if (PS3.AttachProcess())
{
MessageBox.Show("Successfully Attached the process!\n\nEnjoy my Tool :3", "Attached", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else MessageBox.Show("Failed to attach the process!\n\nMake sure your ingame!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

Now double click on radio button 1 (TMAPI) and add:

PS3.ChangeAPI(SelectAPI.TargetManager);
istmapi = true;

Now double radio button 2 (CCAPI) and add:

PS3.ChangeAPI(SelectAPI.ControlConsole);//console control for ccapi and targetmanager for ps3tmapi
istmapi = false;

PIC: http://gyazo.com/7e9a029ce821e2855505e17282cbf7d0

Credits: CHRISMODz69
leave a message below if you want me to addd how to add a name changer and godmode ect.....
thanks
 
1. open visual studio 2010/ 2013 ect
2. Create a buttons one called attach/connect
3. create 2 radio buttons name one TMAPI & one called CCAPI

go to reference and add PS3Lib

now lets start by double on your rtm tool and adding

using PS3LIb;
like in this photo

http://gyazo.com/22f3136adcc463bce138148399057b3c

using PS3Lib;

now add
public static bool istmapi = true;
private PS3API PS3 = new PS3API();
public Form1()

Photo here http://gyazo.com/306683dc6bf0a73addf07992b23f5519

Now double click one the connect/attach button and add this


CONNECT & ATTACH

{
{
if (!this.PS3.ConnectTarget(0))
{
MessageBox.Show("Impossible to connect. Check IP ", "Error...", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
else
{
string str = string.Concat("You are now connected with this API : ", this.PS3.GetCurrentAPIName());
MessageBox.Show(str, "Connected!", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);


if (istmapi == true)
{
if (PS3.AttachProcess())
{
MessageBox.Show("Successfully Attached the process!\n\nEnjoy my Tool :3", "Attached!", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else

MessageBox.Show("Failed to attach the process!\n\nMake sure your ingame!", "Failed...", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (istmapi == false)
{
if (PS3.AttachProcess())
{
MessageBox.Show("Successfully Attached the process!\n\nEnjoy my Tool :3", "Attached", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else MessageBox.Show("Failed to attach the process!\n\nMake sure your ingame!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

Now double click on radio button 1 (TMAPI) and add:

PS3.ChangeAPI(SelectAPI.TargetManager);
istmapi = true;

Now double radio button 2 (CCAPI) and add:

PS3.ChangeAPI(SelectAPI.ControlConsole);//console control for ccapi and targetmanager for ps3tmapi
istmapi = false;

PIC: http://gyazo.com/7e9a029ce821e2855505e17282cbf7d0

Credits: CHRISMODz69
leave a message below if you want me to addd how to add a name changer and godmode ect.....
thanks

I create RTM's a total different way!
 
General chit-chat
Help Users
      Chat Bot: 123bsamcouk1 is our newest member. Welcome!
      Back
      Top