Post: [TUTORIAL] How to make a MW3 RTE Tool C#
05-22-2013, 01:33 PM #1
Kurt
Banned
(adsbygoogle = window.adsbygoogle || []).push({}); Hello NGU, today i will be showing you guys how to make a rte tool
Yes, i know this has been released by iMCSx but i will be going more in depth.

Right, lets get started



STEP 1: First open a new project in visual C# and add ps3tmapi_net.dll as a reference. it is located under "Project" at the top

STEP 2: You must declare these like this You must login or register to view this content.

public static uint ProcessID;
public static uint[] processIDs;
public static string snresult;
private static string usage;
public static string Info;
public static PS3TMAPI.ConnectStatus connectStatus;
public static string Status;
public static string MemStatus;



STEP 3: Now make a new button and add this function into the button by double clicking the button to open the function

PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
PS3TMAPI.GetProcessList(0, out processIDs);
ulong uProcess = processIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
MessageBox.Show("PS3 and Game Has been Attached");

What this function does is Connects the ps3 to pc then attaches the process and displays a message box when it is complete. It should look like this You must login or register to view this content.



STEP 4: Now we will add some mods. We will do UFO Mode. So create a new button and name it UFO Mode ON and add this function into it.

byte[] UFO = new byte[] { 0x02 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0110d87F, UFO);

It should look like this You must login or register to view this content.

Now if u want super jump u would get the super jump offset and replace it with 0x0110d87f and change the 0x02 to 0x44, 0x7A

So guys with this u should be able to make ur own rte tool. I will be doing more tutorials like this later on.

If u have any questions feel free to ask me u can pm me or add me on skype - hdzombieglitcher

Have Fun! Happy

STEP BY STEP VIDEO:


dont hate its my first commentary and im only 12 sooo :/

sorry for background noise i was talking to friend on skype while recording

i will be making more tutorials like this for different things such as HUDelems, button monitoring, make binds, modding elf with hxd and ida, and much more. i will also be updateing my thread with vb.net if i can get the code Happy
Last edited by Kurt ; 05-23-2013 at 04:50 AM. Reason: forgot somethings

The following 57 users say thank you to Kurt for this useful post:

^TPP^, ResistTheMoon, {H} | Exception, *xActionMods*, ⓙω мσ∂z, βounceModz, Eddie Mac, A_Gen_Fiasco, Alexon, ALI ALHILFI, Ansity., AsianModds, AssEMoDDeR, BM|T BlacK, C-J, Callum x, YouAppreciateMe, cod5cl, Dannie Fresh, DevStation V3, ErasedDev, golizzard, HonuCinema, ibombo, JackMods-, ResistTheJamsha, Jenxz, Loxy, M6no5, MaNamesTyler, Mango_Knife, matt0897, metoshkata, milky4444, MrXXPSNGAMERXx, network10, Norway-_-1999, OtagoFlames, RevSwaG, RuszXMC, SC58, SmokingCrack13, SnaY, sniper-4Eye, Super Gamer, TheMrGeekyMoDz, ThePaaqoHD, Typicle, Tyster, x_ReAcTiiOnz_i, xFlavez, xKtF, xLuCiDiTyZxHD, xRequiKz, Xx-GIPPI-xX, zZHackzZ

The following 5 users groaned at Kurt for this awful post:

EdiTzZ, primetime43, xePixTvx,
06-09-2013, 06:39 AM #20
RuszXMC
Do a barrel roll!
I really got alot of help with this tutorial, thanks! Smile
06-11-2013, 09:38 PM #21
Thanks bro, really appreciate it...
06-12-2013, 05:31 AM #22
YouAppreciateMe
I Be That Pretty Mother****er
Originally posted by DexModderFTW View Post
Hello NGU, today i will be showing you guys how to make a rte tool
Yes, i know this has been released by iMCSx but i will be going more in depth.

Right, lets get started



STEP 1: First open a new project in visual C# and add ps3tmapi_net.dll as a reference. it is located under "Project" at the top

STEP 2: You must declare these like this You must login or register to view this content.

public static uint ProcessID;
public static uint[] processIDs;
public static string snresult;
private static string usage;
public static string Info;
public static PS3TMAPI.ConnectStatus connectStatus;
public static string Status;
public static string MemStatus;



STEP 3: Now make a new button and add this function into the button by double clicking the button to open the function

PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
PS3TMAPI.GetProcessList(0, out processIDs);
ulong uProcess = processIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
MessageBox.Show("PS3 and Game Has been Attached");

What this function does is Connects the ps3 to pc then attaches the process and displays a message box when it is complete. It should look like this You must login or register to view this content.



STEP 4: Now we will add some mods. We will do UFO Mode. So create a new button and name it UFO Mode ON and add this function into it.

byte[] UFO = new byte[] { 0x02 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x0110d87F, UFO);

It should look like this You must login or register to view this content.

Now if u want super jump u would get the super jump offset and replace it with 0x0110d87f and change the 0x02 to 0x44, 0x7A

So guys with this u should be able to make ur own rte tool. I will be doing more tutorials like this later on.

If u have any questions feel free to ask me u can pm me or add me on skype - hdzombieglitcher

Have Fun! Happy

STEP BY STEP VIDEO:


dont hate its my first commentary and im only 12 sooo :/

sorry for background noise i was talking to friend on skype while recording

i will be making more tutorials like this for different things such as HUDelems, button monitoring, make binds, modding elf with hxd and ida, and much more. i will also be updateing my thread with vb.net if i can get the code Happy


Only 12 huh
You must login or register to view this content.


---------- Post added at 01:31 AM ---------- Previous post was at 01:30 AM ----------

Originally posted by Dr
There is already a detailed tutorial on this.
With your guide even a dummy kid can do it.


You calling me a dummy :|
Last edited by YouAppreciateMe ; 06-12-2013 at 05:34 AM.
06-12-2013, 10:33 PM #23
this is honestly the best tut on how to do this, you should make a mod menu tut.
06-15-2013, 07:12 PM #24
i want an aimbot :(
06-16-2013, 01:33 AM #25
RuszXMC
Do a barrel roll!
Nice tutorial, keep it up.
06-18-2013, 10:34 PM #26
thanks for the tutorial man!
06-30-2013, 02:19 AM #27
Awesome Job Smile I'm Making a MW3 RTM Tool now So if anyone wants to try it when its done Sub You must login or register to view this content.
07-02-2013, 09:05 AM #28
thnx helped alot

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo