Post: I Need Some Help With My RTM Tool!
04-23-2016, 08:55 PM #1
CexxyBex
Save Point
(adsbygoogle = window.adsbygoogle || []).push({}); I have been working on a RTM tool for bo2, it has been going very well.
I have added a few mods such as UAV, Wallhack, etc.. i also have name changing, presets and stats editing too.


I would like some help on doing Class modifications e.g. Changing class names. Also maybe some host mods. I Have Already added non-host mods which are all working fine!.

But like i said if anyone is here to help then please do

Here Are Some Screen Shots

You must login or register to view this content.You must login or register to view this content.You must login or register to view this content.You must login or register to view this content.You must login or register to view this content.
04-24-2016, 02:34 AM #2
Okay so get 2 Buttons, 1 TextBox, and a NumericUpDown.

Put this anywhere in your tool


private void ClassNames(uint offset, string input)
{
PS3.SetMemory(offset, new byte[0x10]);
byte[] b = new byte[] { 4 };
byte[] bytes = Encoding.ASCII.GetBytes(input);
PS3.SetMemory(offset, bytes.Multiply(b));
}


Then for The Set All Put this in The Button


int num2;
for (int i = 0; i < 10; i = num2 + 1)
{
ClassNames(0x2707ac7 + ((uint)(i * 0x10)), this.textBox1.Text);
num2 = i;
}


Put This In Set Class

ClassNames(0x2707ac7 + ((((uint)this.numericUpDown1.Value) - 1) * 0x10), this.textBox1.Text);


That Works For Me Smile
05-03-2016, 01:48 AM #3
Originally posted by CexxyBex View Post
I have been working on a RTM tool for bo2, it has been going very well.
I have added a few mods such as UAV, Wallhack, etc.. i also have name changing, presets and stats editing too.


I would like some help on doing Class modifications e.g. Changing class names. Also maybe some host mods. I Have Already added non-host mods which are all working fine!.

But like i said if anyone is here to help then please do

Here Are Some Screen Shots

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


Question answered. Closed. Moved to BO2 Answered Mod Questions.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo