OldSchoolHack

Registrieren / Anmelden Deutsch

[MW3] Tools [Update 07.02.2012]

icon Thema: [MW3] Tools [Update 07.02.2012]

Anmeldungsdatum: Aug 2011

Beiträge: 3

Zitat von TreffNix
Hey Leute,
Hier sind ein paar nützliche Tools für mw3 die mir zugesendet wurden.

1. ItsMods XP Boost Patch V1.2
Spoiler
Wie der name schon sagt könnt ihr mit diesem Tool (Only Host) einen XP Boost Server aufmachen.

Zitat
A tool that enables your copy of MW3 to get a huge XP boost when your host
This is no (memory/inject) hack, it will not get you banned AFAIK
You can change the dvars in vars.txt

http://www.abload.de/img/t40jrwqu6z.png

http://www.abload.de/img/download_buttoncouux.png
Um Links zu sehen, musst du dich registrieren

CSHARP Code
Spoiler
TEXT Code:
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using Microsoft.Win32;
  7. using System.IO;
  8.  
  9. namespace ItsModsXPHack
  10. {
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. Console.ForegroundColor = ConsoleColor.Cyan;
  16. Console.WriteLine(@" _____ _ __ __ _
  17. |_ _| | | \/ | | |
  18. | | | |_ ___ | \ / | ___ __| |___
  19. | | | __/ __| | |\/| |/ _ \ / _` / __|
  20. _| |_| |_\__ \ | | | | (_) | (_| \__ \
  21. |_____|\__|___/ |_| |_|\___/ \__,_|___/
  22.  
  23. ");
  24. Console.ForegroundColor = ConsoleColor.White;
  25. Console.Title = "ItsMods XP Hack V1.2";
  26. Console.WriteLine("Version 1.2 || By JariZ.nl");
  27.  
  28. string cpuraw = Environment.GetEnvironmentVariable("PROCESSOR_ARCHITECTURE");
  29. cpu = 0;
  30. if (cpuraw == "x86") cpu = 32;
  31. else if (cpuraw == "AMD64") cpu = 64;
  32. Console.ForegroundColor = ConsoleColor.Green;
  33. Console.WriteLine("We're running on a x" + cpu + " CPU\
  34. ");
  35. Console.ForegroundColor = ConsoleColor.White;
  36.  
  37. //Console.WriteLine("JariZ.nl | ItsMods.com\
  38. ");
  39. Console.WriteLine("-------------- ItsMods.com ----------------");
  40. Console.Write("Looking for steam path... ");
  41. if (read() && steam != null)
  42. {
  43. Console.ForegroundColor = ConsoleColor.Green;
  44. Console.WriteLine("DONE");
  45. //freeze();
  46. }
  47. else {
  48. Console.ForegroundColor = ConsoleColor.Red;
  49. Console.WriteLine("FAILED");
  50. freeze();
  51. }
  52. Console.ForegroundColor = ConsoleColor.White;
  53.  
  54. Console.Write("Looking for config file... ");
  55. var pad1 = steam + "\\steamapps\\common\\call of duty black ops\\players\\config_mp.cfg";
  56. //var pad1 = steam + "\\steamapps\\common\\call of duty modern warfare 3\\players2\\config_mp.cfg";
  57. //var pad2 = steam + "\\steamapps\\common\\call of duty black ops\\players\\";
  58. if (!File.Exists(pad1))
  59. {
  60. Console.ForegroundColor = ConsoleColor.Red;
  61. Console.WriteLine("FAILED");
  62. freeze();
  63. }
  64. else
  65. {
  66. Console.ForegroundColor = ConsoleColor.Green;
  67. Console.WriteLine("DONE");
  68. //freeze();
  69. }
  70. Console.ForegroundColor = ConsoleColor.White;
  71. var inhoud = "";
  72. Console.Write("Reading content... ");
  73. try
  74. {
  75. inhoud = File.ReadAllText(pad1);
  76. Console.ForegroundColor = ConsoleColor.Green;
  77. Console.WriteLine("DONE");
  78. }
  79. catch
  80. {
  81.  
  82. //freeze();
  83. Console.ForegroundColor = ConsoleColor.Red;
  84. Console.WriteLine("FAILED");
  85. freeze();
  86. }
  87. Console.ForegroundColor = ConsoleColor.White;
  88.  
  89. var inhoud2 = "";
  90. Console.Write("Reading new content... ");
  91. try
  92. {
  93. inhoud2 = File.ReadAllText("vars.txt");
  94. Console.ForegroundColor = ConsoleColor.Green;
  95. Console.WriteLine("DONE");
  96. }
  97. catch
  98. {
  99.  
  100. //freeze();
  101. Console.ForegroundColor = ConsoleColor.Red;
  102. Console.WriteLine("FAILED");
  103. freeze();
  104. }
  105. Console.ForegroundColor = ConsoleColor.White;
  106.  
  107. Console.Write("Applying dvars... ");
  108. string a = "";
  109. a += inhoud;
  110. a += inhoud2;
  111.  
  112. try
  113. {
  114.  
  115. File.WriteAllText(pad1, a);
  116. Console.ForegroundColor = ConsoleColor.Green;
  117. Console.WriteLine("DONE");
  118. Console.ForegroundColor = ConsoleColor.White;
  119. Console.WriteLine("-------------------------------------------");
  120. Console.WriteLine("\
  121. The dvars have been applied");
  122. freeze();
  123. }
  124. catch
  125. {
  126. Console.ForegroundColor = ConsoleColor.Red;
  127. Console.WriteLine("FAILED");
  128. freeze();
  129. }
  130. }
  131.  
  132. static void freeze() { Thread.Sleep(-1); }
  133. static int cpu = 0;
  134. static string steam = null;
  135. static bool read()
  136. {
  137. RegistryKey k = Registry.LocalMachine;
  138. string x = "";
  139. if (cpu == 64) x = "SOFTWARE\\Wow6432Node\\Valve\\Steam";
  140. else x = "SOFTWARE\\Valve\\Steam";
  141.  
  142. RegistryKey a = k.OpenSubKey(x);
  143. if (a == null) return false;
  144. else { try { steam = (string)a.GetValue("InstallPath"); return true; } catch { return false; } }
  145. }
  146. }
  147. }

2. Token Hack + 15 Klassen (Waffenklassen)

Spoiler
Dieses Kleine Tool gibt euch Prestige Token und 15 Waffenklassen.

http://www.abload.de/img/adm3l0sua0.png

http://www.abload.de/img/download_buttoncouux.png
Um Links zu sehen, musst du dich registrieren

3. IP Connector

Spoiler
IP Connector ist ein einfaches Tool um auf einen mw3 Server zu Joinen.

http://www.abload.de/img/vbxibdtu5v.png

http://www.abload.de/img/download_buttoncouux.png
Um Links zu sehen, musst du dich registrieren



http://no-haking.square7.ch/images/wbb3-header-logo.png