Post: i need help for an rtm tool for bo2 (name changer)
01-17-2018, 12:32 AM #1
Della
Gobble
(adsbygoogle = window.adsbygoogle || []).push({}); im doing an rtm tool for call of duty black ops 2,in this tool i did a name changer and a button to reset the name to the original one,but if with the name changer i changed my name in something longer then the original name the original name still have some letters of the changed one

for example if my original ps3 name is "Della" if i change the name to "123456789" and then press my button to reset name my name will be "Della6789"
the code i used for the change name button is:
private void simpleButton9_Click(object sender, EventArgs e)
{
byte[] Name = Encoding.ASCII.GetBytes(textBox1.Text + "\0");
PS3.SetMemory(0x026C0658, Name);
}

the code i used for the reset name button is:

private void simpleButton10_Click(object sender, EventArgs e)
{
byte[] OriginalName = Encoding.ASCII.GetBytes(PS3.Extension.ReadString(0x0196E070));
PS3.SetMemory(0x026C0658, OriginalName );
}

Hope someone can help me Smile
Last edited by Della ; 01-17-2018 at 12:45 AM.
01-17-2018, 06:08 AM #2
set the bytes to 0 then set the name
01-17-2018, 06:41 AM #3
Della
Gobble
Originally posted by twistedkillas View Post
set the bytes to 0 then set the name


what the command should be? while i wait an answer i will try on myself, if i get it to work i'll say the fix on the thread

thank you Happy
01-18-2018, 12:03 PM #4
i dont know c# all that well but im sure something close to this might work

for(i =0;i<16;i++)
{
PS3.SetMemory(0x026C0658+i, "");
}

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo