You are viewing our Forum Archives. To view or take place in current topics click here.
MW2 TU8 C# Real Time Gamertag Editor
Posted:
MW2 TU8 C# Real Time Gamertag EditorPosted:
Status: Offline
Joined: Jan 31, 201212Year Member
Posts: 919
Reputation Power: 57
Status: Offline
Joined: Jan 31, 201212Year Member
Posts: 919
Reputation Power: 57
Hey guys, I was wondering if anybody has the C# codes for both the pre game lobby and the in game client gamertag changer. I'm looking to add those options to my application. Thanks
If you have the in game client gamertag changer for mw3 that would also be super helpful
If you have the in game client gamertag changer for mw3 that would also be super helpful
#2. Posted:
Status: Offline
Joined: Aug 10, 201311Year Member
Posts: 374
Reputation Power: 23
Status: Offline
Joined: Aug 10, 201311Year Member
Posts: 374
Reputation Power: 23
does anyone have a real time editer for mw2?
- 0useful
- 1not useful
#3. Posted:
Status: Offline
Joined: Jul 02, 201113Year Member
Posts: 1,094
Reputation Power: 51
Status: Offline
Joined: Jul 02, 201113Year Member
Posts: 1,094
Reputation Power: 51
Mall wrote does anyone have a real time editer for mw2?
google it theirs tons and their great
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Aug 04, 201311Year Member
Posts: 36
Reputation Power: 7
public void SetGamertag(int Client)
{
Jtag.SetMemory(getPlayerState(Client) + 0x44, Encoding.ASCII.GetBytes("" + textBox1.Text));
}
{
Jtag.SetMemory(getPlayerState(Client) + 0x44, Encoding.ASCII.GetBytes("" + textBox1.Text));
}
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Aug 04, 201311Year Member
Posts: 36
Reputation Power: 7
ohh and mw3
public void SetGamertagMW3(int Client)
{
byte[] bytes = Encoding.UTF8.GetBytes("" + textBox6.Text);
uint num;
Jtag.xbCon.DebugTarget.SetMemory(GTMW3i(Client), (uint)bytes.Length, bytes, out num);
}
public void SetGamertagMW3(int Client)
{
byte[] bytes = Encoding.UTF8.GetBytes("" + textBox6.Text);
uint num;
Jtag.xbCon.DebugTarget.SetMemory(GTMW3i(Client), (uint)bytes.Length, bytes, out num);
}
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Aug 07, 201311Year Member
Posts: 183
Reputation Power: 8
The one for mw2 is:
public void SetGamertag(int Client)
{
Jtag.SetMemory(getPlayerState(Client) + 0x44, Encoding.ASCII.GetBytes("" + textBox1.Text));
}
public void SetGamertag(int Client)
{
Jtag.SetMemory(getPlayerState(Client) + 0x44, Encoding.ASCII.GetBytes("" + textBox1.Text));
}
- 0useful
- 1not useful
#7. Posted:
Status: Offline
Joined: Sep 15, 201212Year Member
Posts: 55
Reputation Power: 2
Status: Offline
Joined: Sep 15, 201212Year Member
Posts: 55
Reputation Power: 2
This guy is legit. 20202020
- 0useful
- 1not useful
You are viewing our Forum Archives. To view or take place in current topics click here.