





put this above the Button when you double click on it//
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<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
else
{
if (input.Length == 2)
{
CombSetClan = Combine(new byte[6], Encoding.ASCII.GetBytes(input).Reverse<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
else
{
if (input.Length == 3)
{
CombSetClan = Combine(new byte[5], Encoding.ASCII.GetBytes(input).Reverse<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
else
{
if (input.Length == 4)
{
CombSetClan = Combine(new byte[4], Encoding.ASCII.GetBytes(input).Reverse<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
}
}
}
if (input.Length > 0)
{
PS3.SetMemory(offset, BitConverter.GetBytes(BitConverter.ToUInt64(CombSetClan, 0) * 64uL));
}
}
private byte[] Combine(byte[] Arr1, byte[] Arr2)
{
byte[] array = new byte[Arr1.Length + Arr2.Length];
Buffer.BlockCopy(Arr1, 0, array, 0, Arr1.Length);
Buffer.BlockCopy(Arr2, 0, array, Arr1.Length, Arr2.Length);
return array;
}
then something in the button would look like this//
SetClan(0x2708238, textBox1.Text);//remember to change to your textBox
and then at the top of you tool with all the privates you will need this//
private byte[] CombSetClan;
put this above the Button when you double click on it//
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<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
else
{
if (input.Length == 2)
{
CombSetClan = Combine(new byte[6], Encoding.ASCII.GetBytes(input).Reverse<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
else
{
if (input.Length == 3)
{
CombSetClan = Combine(new byte[5], Encoding.ASCII.GetBytes(input).Reverse<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
else
{
if (input.Length == 4)
{
CombSetClan = Combine(new byte[4], Encoding.ASCII.GetBytes(input).Reverse<byte>().ToArray<byte>()).Reverse<byte>().ToArray<byte>();
}
}
}
}
if (input.Length > 0)
{
PS3.SetMemory(offset, BitConverter.GetBytes(BitConverter.ToUInt64(CombSetClan, 0) * 64uL));
}
}
private byte[] Combine(byte[] Arr1, byte[] Arr2)
{
byte[] array = new byte[Arr1.Length + Arr2.Length];
Buffer.BlockCopy(Arr1, 0, array, 0, Arr1.Length);
Buffer.BlockCopy(Arr2, 0, array, Arr1.Length, Arr2.Length);
return array;
}
then something in the button would look like this//
SetClan(0x2708238, textBox1.Text);//remember to change to your textBox
and then at the top of you tool with all the privates you will need this//
private byte[] CombSetClan;
Copyright © 2026, NextGenUpdate.
All Rights Reserved.