Post: ⚝Gamer Choice™ Open source RTM Tool Base
09-23-2016, 09:52 PM #1
Father Luckeyy
Retired - Lead Content Manager
(adsbygoogle = window.adsbygoogle || []).push({});
You must login or register to view this content.

What's up NGU Lovely!!!


Here is RTM Tool Base i made for everyone whos into making rtm tools or just starting out to C# coding Smile

You must login or register to view this content.

Basic C# Coding

    using PS3Lib;
[IMG]https://i.imgur.com/rF296Zw.png?1[/IMG]


    [SIZE=2][I]PS3API PS3 = new PS3API;
[IMG]https://i.imgur.com/VBtQGW2.png?1[/IMG]
[/I][/SIZE]


    PS3.ConnectTarget(0);
    [SIZE=2][I]try[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]PS3.ConnectTarget(0);[/I][/SIZE]
[SIZE=2][I]MessageBox.Show("Successfully Connected to Target!", "Connected", MessageBoxButtons.OK, MessageBoxIcon.Information);[/I][/SIZE]
[SIZE=2][I]}[/I][/SIZE]
[SIZE=2][I]catch[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]MessageBox.Show("Failed to Connect", "Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
[IMG]https://i.imgur.com/Vk16mZG.png?1[/IMG]
[/I][/SIZE]


    PS3.AttachProcess();
    [SIZE=2][I]try[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]PS3.AttachProcess();[/I][/SIZE]
[SIZE=2][I]MessageBox.Show("Successfully Attached to Proccess!", "Attached", MessageBoxButtons.OK, MessageBoxIcon.Information);[/I][/SIZE]
[SIZE=2][I]}[/I][/SIZE]
[SIZE=2][I]catch[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]MessageBox.Show("Failed to Attached", "Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);[/I][/SIZE]
[SIZE=2][I]}
[IMG]https://i.imgur.com/xUkis98.png?1[/IMG]
[/I][/SIZE]


    PS3.ChangeAPI(SelectAPI.ControlConsole);
[IMG]https://i.imgur.com/HnSZywg.png?1[/IMG]


    PS3.ChangeAPI(SelectAPI.TargetManager);
[IMG]https://i.imgur.com/KT5nwb7.png?1[/IMG]


    1 Hit Kill Offets (Enable & Disable)

    [SIZE=2][I]private void checkEdit1_CheckedChanged(object sender, EventArgs e)[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]if (checkEdit1.Checked)[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]PS3.SetMemory(0x7B2A9C, new byte[] { 0x3C, 0xE0, 0x44, 0x7A });[/I][/SIZE]
[SIZE=2][I]}[/I][/SIZE]
[SIZE=2][I]else[/I][/SIZE]
[SIZE=2][I]{[/I][/SIZE]
[SIZE=2][I]PS3.SetMemory(0x7B2A9C, new byte[] { 0x3c, 0xE0, 0x3F, 0x80 });//0x7B1F1C[/I][/SIZE]
[SIZE=2][I]}[/I][/SIZE]
[SIZE=2][I][IMG]https://i.imgur.com/1DBdWcd.png?1[/IMG]

Also another can be like this.

[/I][/SIZE]private void checkEdit1_CheckedChanged(object sender, EventArgs e)
{
PS3.SetMemory(0x7B2A9C, checkEdit1.Checked ? new byte[] { 0x3C, 0xE0, 0x44, 0x7A } : new byte[] { 0x3c, 0xE0, 0x3F, 0x80 });
}
//or if you declare the bytes as seperate variables
private void checkEdit1_CheckedChanged(object sender, EventArgs e)
{
byte[] On = { 0x3C, 0xE0, 0x44, 0x7A };
byte[] Off = { 0x3c, 0xE0, 0x3F, 0x80 };
PS3.SetMemory(0x7B2A9C, checkEdit1.Checked ? On : Off);
}


RTM Tool Base Open Source

You must login or register to view this content.

Virus Scan


You must login or register to view this content.

Credits

Luckeyy
Open Source RTM Tool Base

**Note**
Try to learn the basics and understanding the language of C#. We all had to start some where.






Last edited by Father Luckeyy ; 12-17-2016 at 08:01 PM. Reason: Added More Pics and C# Coding

The following 2 users say thank you to Father Luckeyy for this useful post:

johnsbell3, wajdi9
11-15-2016, 02:02 AM #2
Thnx man!
01-18-2017, 08:25 PM #3
hey lucky can u help me make outfit editor?
02-11-2017, 08:32 PM #4
Father Luckeyy
Retired - Lead Content Manager
Originally posted by ps3broke View Post
hey lucky can u help me make outfit editor?


Sorry for the late reply you never quoted me but Kryptus has an open source for that i believe in his imperium tool
06-23-2017, 01:31 AM #5
Loes thanks bro u rock
07-23-2017, 06:11 PM #6
YES thank you so much
07-26-2017, 06:35 AM #7
how to open it?
07-30-2017, 02:57 AM #8
Father Luckeyy
Retired - Lead Content Manager
Originally posted by babis9627 View Post
how to open it?


Use visual studios buddy
07-31-2017, 07:42 PM #9
well what should i open with visual studio wich file?
07-31-2017, 08:16 PM #10
Father Luckeyy
Retired - Lead Content Manager
Originally posted by babis9627 View Post
well what should i open with visual studio wich file?


Yes open it in Visual Studio

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo