Post: [RELEASE] MW2 Clan Tag Changer + Source Code
06-16-2013, 08:20 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hi Everyone, basicly I was thinking of more stuff to add to my Programming Notepad and COD Multi Tool and I decided to add this.. and Later on I also decided to release a .EXE Version of it aswell as its source code!
So here it is ...
Virus Scan : You must login or register to view this content.

.EXE Download : You must login or register to view this content.

SOURCE Code Download : You must login or register to view this content.

*You will need the following DLL´s :
-Package.IO

Also here its a Text version of the source code ..
    
//Credits to MW2TopTenWORLD for making and releasing
//this source
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using PackageIO;

namespace Programming_NotePad
{
public partial class changer : Form
{
string path;
string tag;

public changer()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog opensave = new OpenFileDialog();
opensave.Title = "Open your GPAD0_MP.PRF File";
opensave.Filter = "GPAD0_MP Files | *.prf";
if (opensave.ShowDialog() == DialogResult.OK)
{
Reader readsave = new Reader(opensave.FileName, Endian.Little, 0L);
readsave.ReadHexString(4);
readsave.Position = 257;
label2.Text = readsave.ReadString(4);
}
path = opensave.FileName;
}

private void changer_Load(object sender, EventArgs e)
{
textBox1.MaxLength = 4;

}

private void button2_Click(object sender, EventArgs e)
{
tag = textBox1.Text;

Writer writetag = new Writer(path, Endian.Little, 0L);
writetag.Position = 257;
writetag.WriteString(tag);
MessageBox.Show("The new clan tag has been sucessfully Inputed!");




}
}
}


If you are going to use this please leave credit.

Any Bug please report to me ...

NOTE : WHERE IT SAYS : readsave.Position = 257; and writetag.Position = 257; You might need to find a new method to set the position because that WON´T work no more ... If you know any new method, post it on the Thread... Thanks Smile
PS : The M.O.T.D one works fine!
-MW2TopTenWORLD
(adsbygoogle = window.adsbygoogle || []).push({});

The following 4 users say thank you to MW2TopTenWORLD for this useful post:

ImGsus, Jenxz, xHostModer, xMonkeyBoyX
06-16-2013, 08:32 PM #2
Nice release bro Smile

The following user thanked xMonkeyBoyX for this useful post:

MW2TopTenWORLD
06-16-2013, 08:33 PM #3
Originally posted by L33T View Post
Nice release bro Smile

Thanks Happy

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo