Post: does anyone have name changer , sliding name , clan tag changer , globe name?
10-01-2015, 05:06 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); hey guys making my own RTM tool and i have been looking for name changer , sliding name , clan tag changer everywhere and globe name i have its address and offset but i cant figure out how to put it together i tried every way that comes to mind but no like if anyone could help me that would be great Thank you - iTzSUPRA Smile
(adsbygoogle = window.adsbygoogle || []).push({});
10-03-2015, 01:30 AM #2
Maverick
Climbing up the ladder
Please dont be one of those people that copys and pastes and then released a shittty ass tool..
Name changer:
    
byte[] NAME = Encoding.ASCII.GetBytes(textBox1.Text);
Array.Resize(ref NAME, NAME.Length + 1);
PS3.SetMemory(0x026C0658, NAME);
PS3.SetMemory(0x026c067f, NAME);

    
private void SetClan(uint offset, string input)
{
PS3.SetMemory(offset, new byte[6]);
if (input.Length == 1)
{
CombSetClan = Combine(new byte[7], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
else if (input.Length == 2)
{
CombSetClan = Combine(new byte[6], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
else if (input.Length == 3)
{
CombSetClan = Combine(new byte[5], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
else if (input.Length == 4)
{
CombSetClan = Combine(new byte[4], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
else if (input.Length == 5)
{
CombSetClan = Combine(new byte[3], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
else if (input.Length == 6)
{
CombSetClan = Combine(new byte[2], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
else if (input.Length == 7)
{
CombSetClan = Combine(new byte[1], Encoding.ASCII.GetBytes(input).Reverse().ToArray()).Reverse().ToArray();
}
if (input.Length > 0)
{
PS3.SetMemory(offset, BitConverter.GetBytes(BitConverter.ToUInt64(CombSetClan, 0) * 64));
}
}
private byte[] Combine(byte[] Arr1, byte[] Arr2)
{
byte[] Res = new byte[Arr1.Length + Arr2.Length];
Buffer.BlockCopy(Arr1, 0, Res, 0, Arr1.Length);
Buffer.BlockCopy(Arr2, 0, Res, Arr1.Length, Arr2.Length);
return Res;
}

private void button5_Click(object sender, EventArgs e)
{
SetClan(0x2708238, textBox2.Text);
}

Sliding name isnt hard to make and im not giving you the globe name coding
10-12-2015, 02:49 AM #3
All good man i had name changer i meant name skipper my fault and i already have Globe name Offsets and address But for my tool it comes up with a big freeze box but i gave it to a friend and his was working but what i dont get is when B777x tool is running then i press globe name it works i dont know why but yeah but thank you anyway mate Smile
10-12-2015, 04:10 AM #4
Adrian
Adrian is back!
Originally posted by 2JZSUPRASHADOW View Post
All good man i had name changer i meant name skipper my fault and i already have Globe name Offsets and address But for my tool it comes up with a big freeze box but i gave it to a friend and his was working but what i dont get is when B777x tool is running then i press globe name it works i dont know why but yeah but thank you anyway mate Smile


Good to hear you have it working. If you have any other questions feel free to make another thread.

-Thread Closed.

The following user thanked Adrian for this useful post:

2JZSUPRASHADOW

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo