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
(adsbygoogle = window.adsbygoogle || []).push({});

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,
01-22-2014, 07:31 PM #38
shehzaib
Save Point
hey there i did this and then i wanted something linke god mode if i do god mode what do i replace the 0x02 with and when im finfihed how do i open it to use it
01-23-2014, 06:31 PM #39
ur 12? OMG!
but nice work Winky Winky
01-25-2014, 12:04 PM #40
kiwi_modz
I defeated!
Originally posted by 077407 View Post
would i use the CCAPI.DLL file if i want this to work for CEX?


This is an old as f post bro.... This is only for dex/outdated = should be deleted... This post should be locked or deleted :/
01-30-2014, 01:18 AM #41
PayedMods
Do a barrel roll!
thanks!
03-08-2014, 06:03 PM #42
Does anyone know how i can get the byte for the rtm tool
07-20-2014, 03:34 AM #43
BM|T BlacK
Do a barrel roll!
Fuck everyone that hated him! Nice tutorial and nice vid tutorial! Tnx 4 everything. Perfect and very helpfull
07-23-2014, 05:16 AM #44
A_Gen_Fiasco
Bounty hunter
thats the point
01-17-2015, 07:12 PM #45
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


cool mate i added you on skype i need help pls add me Skype - itsandyog
01-17-2015, 10:24 PM #46
kiwi_modz
I defeated!
Originally posted by The1997 View Post
cool mate i added you on skype i need help pls add me Skype - itsandyog


This is outdated asf. and i have been keeping an eye on your recent posts. You should try and learn how to do this stuff by yourself like me and many others on here have done rather than asking to get spoon fed like a baby.... If you were around 2 years ago. this tut would have helped you get started just like it did me... these tuts will help you get started

C# tut. You must login or register to view this content.

For CEX You must login or register to view this content.

The following user thanked kiwi_modz for this useful post:

The1997

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo