This method doesn't work anymore
And I don't recommend you using this patch,
I'll probably create a new one in the next months
And I don't recommend you using this patch,
I'll probably create a new one in the next months
Spoiler (Click to View)
Hey gaaiz
This program will enable your copy of MW3 and those from others on your server to get instant level 80 when you're host
This basically does the stuff in this thread for you
Just Another 10-min coding program
It uses the dvars FOUND BY @surtek and @AZUMIKKEL
So most credits to them
NOTE: Your responsible for everything you do, Not us.
NOTE: You might want to run this as Administrator if it says failed
NOTE: This only works on legal copies of MW3
NOTE: + =
Virus scan:
http://virusscan.jotti.org/nl/scanresult...eab1d56ad6
Download
ItsModsXPHack.zip (Size: 30.29 KB / Downloads: 79)
This program will enable your copy of MW3 and those from others on your server to get instant level 80 when you're host
This basically does the stuff in this thread for you
Just Another 10-min coding program
It uses the dvars FOUND BY @surtek and @AZUMIKKEL
So most credits to them
NOTE: Your responsible for everything you do, Not us.
NOTE: You might want to run this as Administrator if it says failed
NOTE: This only works on legal copies of MW3
NOTE: + =
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using Microsoft.Win32;
using System.IO;
namespace ItsModsXPHack
{
class Program
{
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine(@" _____ _ __ __ _
|_ _| | | \/ | | |
| | | |_ ___ | \ / | ___ __| |___
| | | __/ __| | |\/| |/ _ \ / _` / __|
_| |_| |_\__ \ | | | | (_) | (_| \__ \
|_____|\__|___/ |_| |_|\___/ \__,_|___/
");
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("JariZ.nl | ItsMods.com\r\n");
Console.Write("Looking for steam path... ");
if (read() && steam != null)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("DONE");
//freeze();
}
else {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("FAILED");
freeze();
}
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Looking for config file... ");
//var pad1 = steam + "\\steamapps\\common\\call of duty black ops\\players\\config_mp.cfg";
var pad1 = steam + "\\steamapps\\common\\call of duty modern warfare 3\\players2\\config_mp.cfg";
//var pad2 = steam + "\\steamapps\\common\\call of duty black ops\\players\\";
if (!File.Exists(pad1))
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("FAILED");
freeze();
}
else
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("DONE");
//freeze();
}
Console.ForegroundColor = ConsoleColor.White;
var inhoud = "";
Console.Write("Reading content... ");
try
{
inhoud = File.ReadAllText(pad1);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("DONE");
}
catch
{
//freeze();
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("FAILED");
freeze();
}
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Applying dvars... ");
string a = "";
a += inhoud;
a += "\n";
a += "seta scr_dom_score_kill \"999999\"\n";
a += "seta scr_ffa_score_kill \"999999\"\n";
a += "seta scr_dm_score_kill \"999999\"\n";
a += "seta scr_dem_score_kill \"999999\"\n";
a += "seta scr_koth_score_kill \"999999\"\n";
a += "seta scr_kc_score_kill \"999999\"\n";
a += "seta scr_sab_score_kill \"999999\"\n";
a += "seta scr_sab_score_suicide \"999999\"\n";
a += "seta scr_sab_score_assist \"999999\"\n";
a += "seta scr_tdm_score_kill \"999999\"\n";
a += "seta scr_tdm_score_suicide \"999999\"\n";
a += "seta scr_tdm_score_assist \"999999\"\n";
a += "seta scr_dom_score_kill \"999999\"\n";
a += "seta scr_dom_score_suicide \"999999\"\n";
a += "seta scr_dom_score_assist \"999999\"\n";
a += "seta scr_koth_score_kill \"999999\"\n";
a += "seta scr_koth_score_suicide \"999999\"\n";
a += "seta scr_koth_score_assist \"999999\"\n";
a += "seta scr_dem_score_kill \"999999\"\n";
a += "seta scr_dem_score_suicide \"999999\"\n";
a += "seta scr_dem_score_assist \"999999\"\n";
a += "seta scr_ctf_score_kill \"999999\"\n";
a += "seta scr_ctf_score_suicide \"999999\"\n";
a += "seta scr_ctf_score_assist \"999999\"\n";
a += "seta scr_dm_score_kill \"999999\"\n";
a += "seta scr_dm_score_suicide \"999999\"\n";
a += "seta scr_dm_score_assist \"999999\"\n";
a += "seta scr_sd_score_kill \"999999\"\n";
a += "seta scr_sd_score_suicide \"999999\"\n";
a += "seta scr_sd_score_assist \"999999\"\n";
a += "seta scr_war_score_kill \"999999\"\n";
a += "seta scr_war_score_suicide \"999999\"\n";
a += "seta scr_war_score_assist \"999999\"\n";
try
{
File.WriteAllText(pad1, a);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("DONE");
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("\r\nYay! The prestige patch has been applied");
freeze();
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("FAILED");
freeze();
}
}
static void freeze() { Thread.Sleep(-1); }
static string steam = null;
static bool read()
{
RegistryKey k = Registry.LocalMachine;
RegistryKey a = k.OpenSubKey("SOFTWARE\\Wow6432Node\\Valve\\Steam");
if (a == null) return false;
else { try { steam = (string)a.GetValue("InstallPath"); return true; } catch { return false; } }
}
}
}
Virus scan:
http://virusscan.jotti.org/nl/scanresult...eab1d56ad6
Download
ItsModsXPHack.zip (Size: 30.29 KB / Downloads: 79)