Advertisement
SirSpamModz

"telaporto hack" 2 years old as of 2017

May 27th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 155.31 KB | None | 0 0
  1. //This was one of my main projects, 2 years ago...
  2. //
  3. //
  4.  
  5. using System;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Data;
  9. using System.Diagnostics;
  10. using System.Drawing;
  11. using System.Linq;
  12. using System.Runtime.InteropServices;
  13. using System.Text;
  14. using System.Threading.Tasks;
  15. using System.Windows.Forms;
  16. using System.Threading;
  17. using System.IO;
  18. using System.Net;
  19.  
  20.  
  21. //noclip Size 0x38EC
  22. //how to get size p2-p1=size
  23. namespace Mw3_Clan_tag_Hack
  24. {
  25.     public partial class Form1 : Form
  26.     {
  27.         public Form1()
  28.         {
  29.             InitializeComponent();
  30.             //MemClass memclass = new MemClass();
  31.         }
  32.  
  33.         #region class things
  34.         #region hotkeys class
  35.         [DllImport("user32.dll")]
  36.         public static extern int GetAsyncKeyState(Keys vKeys);
  37.         #endregion
  38.         #region Basic Stuff
  39.         [DllImport("kernel32.dll", SetLastError = true)]
  40.         public static extern bool VirtualProtectEx(IntPtr hProcess, IntPtr lpAddress, UInt32 dwSize, uint flNewProtect, out uint lpflOldProtect);
  41.  
  42.         [DllImport("kernel32.dll")]
  43.         private static extern Int32 ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [In, Out] byte[] buffer, UInt32 size, out IntPtr lpNumberOfBytesWritten);
  44.  
  45.         [DllImport("kernel32.dll")]
  46.         private static extern Int32 WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [In, Out] byte[] buffer, UInt32 size, out IntPtr lpNumberOfBytesWritten);
  47.         IntPtr pHandel;
  48.         public bool Process_Handle(string ProcessName)
  49.         {
  50.             try
  51.             {
  52.                 Process[] ProcList = Process.GetProcessesByName(ProcessName);
  53.                 if (ProcList.Length == 0)
  54.                     return false;
  55.                 else
  56.                 {
  57.                     pHandel = ProcList[0].Handle;
  58.                     return true;
  59.                 }
  60.             }
  61.             catch (Exception ex)
  62.             { Console.Beep(); Console.WriteLine("Process_Handle - " + ex.Message); return false; }
  63.         }
  64.         private byte[] Read(int Address, int Length)
  65.         {
  66.             byte[] Buffer = new byte[Length];
  67.             IntPtr Zero = IntPtr.Zero;
  68.             ReadProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
  69.             return Buffer;
  70.         }
  71.         private void Write(int Address, int Value)
  72.         {
  73.             byte[] Buffer = BitConverter.GetBytes(Value);
  74.             IntPtr Zero = IntPtr.Zero;
  75.             WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
  76.         }
  77.         #endregion
  78.         #region Write Functions (Integer & String)
  79.         public void WriteDouble(int address, double value)
  80.         {
  81.             byte[] Buffer = BitConverter.GetBytes(value);
  82.             IntPtr Zero = IntPtr.Zero;
  83.             WriteProcessMemory(pHandel, (IntPtr)address, Buffer, (UInt32)Buffer.Length, out Zero);
  84.         }
  85.         public void WriteInteger(int Address, int Value)
  86.         {
  87.             Write(Address, Value);
  88.         }
  89.         public void WriteString(int Address, string Text)
  90.         {
  91.             byte[] Buffer = new ASCIIEncoding().GetBytes(Text);
  92.             IntPtr Zero = IntPtr.Zero;
  93.             WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
  94.         }
  95.         public void WriteBytes(int Address, byte[] Bytes)
  96.         {
  97.             IntPtr Zero = IntPtr.Zero;
  98.             WriteProcessMemory(pHandel, (IntPtr)Address, Bytes, (uint)Bytes.Length, out Zero);
  99.         }
  100.         public void WriteNOP(int Address)
  101.         {
  102.             byte[] Buffer = new byte[] { 0x90, 0x90, 0x90, 0x90, 0x90 };
  103.             IntPtr Zero = IntPtr.Zero;
  104.             WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
  105.         }
  106.         private void WriteFloat(int Address, float Value)
  107.         {
  108.             byte[] Buffer = BitConverter.GetBytes(Value);
  109.             IntPtr Zero = IntPtr.Zero;
  110.             WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
  111.         }
  112.         public float ReadFloat(int address)
  113.         {
  114.             return BitConverter.ToSingle(ReadBytes(address, 8), 0);
  115.         }
  116.         public void WriteFloat_Protected(int Address, float Value)
  117.         {
  118.             uint OldProtection;
  119.             VirtualProtectEx(pHandel, (IntPtr)Address, (uint)sizeof(float), 0x40, out OldProtection);
  120.             WriteFloat(Address, Value);
  121.             VirtualProtectEx(pHandel, (IntPtr)Address, (uint)sizeof(float), OldProtection, out OldProtection);
  122.         }
  123.  
  124.  
  125.  
  126.         #endregion
  127.         #region Read Functions (Integer & String)
  128.         public int ReadInteger(int Address, int Length = 4)
  129.         {
  130.             return BitConverter.ToInt32(Read(Address, Length), 0);
  131.         }
  132.         public string ReadString(int Address, int Length = 4)
  133.         {
  134.             return new ASCIIEncoding().GetString(Read(Address, Length));
  135.         }
  136.         public byte[] ReadBytes(int Address, int Length)
  137.         {
  138.             return Read(Address, Length);
  139.         }
  140.         public double ReadDouble(int address)
  141.         {
  142.             byte[] buffer = new byte[sizeof(double)];
  143.  
  144.             IntPtr Zero = IntPtr.Zero;
  145.             ReadProcessMemory(pHandel, (IntPtr)address, buffer, (UInt32)buffer.Length, out Zero);
  146.             return BitConverter.ToDouble(buffer, 0);
  147.         }
  148.  
  149.         #endregion
  150.         #region name faker
  151.         class NameFaker
  152.         {
  153.             [DllImport("kernel32.dll")]
  154.             private static extern IntPtr OpenProcess(UInt32 dwDesiredAccess, bool bInheritHandle, int dwProcessId);
  155.             [DllImport("kernel32.dll")]
  156.             private static extern Int32 ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [In, Out] byte[] buffer, UInt32 size, out IntPtr lpNumberOfBytesRead);
  157.             [DllImport("kernel32.dll")]
  158.             private static extern Int32 WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [In, Out] byte[] buffer, UInt32 size, out IntPtr lpNumberOfBytesWritten);
  159.             public void WriteString(int Address, string Text)
  160.             {
  161.                 byte[] Buffer = new ASCIIEncoding().GetBytes(Text);
  162.                 IntPtr Zero = IntPtr.Zero;
  163.                 Convert.ToByte(10);
  164.                 WriteProcessMemory(Open_Memory(), (IntPtr)Address, Buffer, (UInt32)25, out Zero);
  165.             }
  166.             private uint ReadInt(uint Addr)
  167.             {
  168.                 byte[] buffer = new byte[4];
  169.                 IntPtr R;
  170.                 ReadProcessMemory(Open_Memory(), (IntPtr)Addr, buffer, 4, out R);
  171.                 return BitConverter.ToUInt32(buffer, 0);
  172.             }
  173.             private IntPtr Open_Memory()
  174.             {
  175.                 if (Process.GetProcessesByName("iw5mp").Length != 0)
  176.                 {
  177.                     return OpenProcess(0x1F0FFF, true, Process.GetProcessesByName("iw5mp")[0].Id);
  178.                 }
  179.                 else return (IntPtr)0x0;
  180.             }
  181.             private uint BaseAddress(string Module_Name)
  182.             {
  183.                 if (Process.GetProcessesByName("iw5mp").Length != 0)
  184.                 {
  185.                     foreach (ProcessModule Mod in Process.GetProcessesByName("iw5mp")[0].Modules)
  186.                     {
  187.                         if (Mod.ModuleName == Module_Name)
  188.                             return (uint)Mod.BaseAddress.ToInt32();
  189.                     }
  190.                     return 0;
  191.                 }
  192.                 else return 0;
  193.             }
  194.             public NameFaker(string Name)
  195.             {
  196.                 uint Base = BaseAddress("steam_api.dll") + 0x0001824C;
  197.                 uint Runner = ReadInt(Base) + 0x0;
  198.                 Runner = ReadInt(Runner) + 0x4;
  199.                 Runner = ReadInt(Runner) + 0x8;
  200.                 Runner = ReadInt(Runner) + 0x10;
  201.                 Runner = ReadInt(Runner) + 0x7e;
  202.                 WriteString((int)Runner, Name);
  203.             }
  204.         }
  205.         #endregion
  206.         #endregion
  207.  
  208.  
  209.         int ClientClearNmae = 0x04207C0;
  210.         byte[] colorone = { 0xEB };
  211.         byte[] colortwo = { 0x15 };
  212.  
  213.         #region not in use addresses
  214.  
  215.         int FovScale = 0x5AAFA54;
  216.  
  217.         #endregion
  218.  
  219.         #region Addresses 1
  220.         int draw_gun = 0x05AC42AC;
  221.         int DrawHud = 0x05AC43DC;
  222.  
  223.         int CLAN_TAG_TEXT = 0x01406a4c;
  224.         int CLAN_TAG_BYTE = 0x01406A2B;
  225.  
  226.         private int jumpheight = 0x0871508;
  227.  
  228.         private int player_1_health = 0x1B42444;
  229.         private int health_size = 0x274;
  230.  
  231.         int Primary_Size = 0X38EC;
  232.         int Primary_Base_Address = 0x1D08B3C;
  233.  
  234.         int nospread = 0x05ACCC20;//float
  235.  
  236.         int Redboxes = 0x0115E2E0;
  237.         int RED_BOXES_THANKS_SEMYEL = 0x0115E2E0;
  238.  
  239.         int g_speed = 0x0463DEA;
  240.         int g_gravity = 0x04C6276;
  241.  
  242.         int IF_IN_LOBBY = 0x9DC3B0;
  243.  
  244.         int GunX = 0x56C9A40;
  245.         int GunY = 0x56C9A8C;
  246.         int GunZ = 0x56C9AD8;
  247.  
  248.         #endregion
  249.  
  250.         #region p1 - p12
  251.         int p1 = 0;
  252.         int p2 = 1;
  253.         int p3 = 2;
  254.         int p4 = 3;
  255.         int p5 = 4;
  256.         int p6 = 5;
  257.         int p7 = 6;
  258.         int p8 = 7;
  259.         int p9 = 8;
  260.         int p10 = 9;
  261.         int p11 = 10;
  262.         int p12 = 11;
  263.  
  264.         #endregion
  265.  
  266.         #region ADRESSES 2
  267.  
  268.         int ammoprimary = 0x01D08CE8;
  269.         int secondaryammo = 0x01D08CD4;//not working i dont think
  270.         int ammo_size = 0x38EC;
  271.         int NOCLIP_BASE_ADRESS = 0x01d0be8c;
  272.         int NOCLIP_SIZE = 0x38EC;
  273.         int localid = 0;
  274.         private int xBaseAddress = 0x1D088E0;///
  275.         private int yBaseAddress = 0x1D088E4;//
  276.         private int zBaseAddress = 0x1D088DC;//player 1 cords
  277.         private int coordsSize = 0x38EC;//size
  278.         private int cordsSize = 0x38EC;//size
  279.         private int FoV = 0x5AC42F8;//float
  280.        
  281.         private int mapname = 0x059CA9B0;//current map
  282.         int Is_Game_adress = 0x9DC3B0;
  283.         private int forceHostAddress = 0x140F1A4;
  284.         private int forceHostOffset = 0xC;
  285.         private int healthBaseAddress = 0x1B42444;
  286.         private int healthSize = 0x274;
  287.         private int teamBaseAddress = 0x1D0BC90;
  288.         private int teamSize = 0x38EC;
  289.         private int localIdAddress = 0x9DC4F0;
  290.         private int isIngameAddress = 0x9DC3B0;
  291.         private int fovAddress = 0x5AC42F8;
  292.         private int commpassShowEnemiesAddress = 0x05AC9F4C;
  293.         private int mapnameAddress = 0x59CA9B0;
  294.         int classonename = 0x1DC0878;
  295.         private int player1 = 0x01d0bcd0;
  296.         private int player2 = 0x01D0F5BC;
  297.         private int player3 = 0x01D12EA8;
  298.         private int player4 = 0x01D16794;
  299.         private int player5 = 0x01D1A080;
  300.         private int player6 = 0x01D1D96C;
  301.         private int player7 = 0x01D21258;
  302.         private int player8 = 0x01D24B44;
  303.         private int player9 = 0x01D28430;
  304.         private int player10 = 0x01D2BD1C;
  305.         private int player11 = 0x01D2F608;
  306.         private int player12 = 0x01D32EF4;
  307.  
  308.         int Rcon_Console_text = 0x05b3925b;
  309.  
  310.         #endregion
  311.  
  312.         protected override void OnFormClosing(FormClosingEventArgs e)
  313.         {
  314.             Application.Exit();
  315.         }
  316.  
  317.         private void Form1_Load(object sender, EventArgs e)
  318.         {
  319.             #region reite class one name to made by Flubba etc
  320.             if (Process_Handle("iw5mp"))
  321.             {
  322.                 //WriteString(0x1DC0878, "^ddfacebook");// change class one name when foirm loads
  323.             }
  324.             else
  325.             {
  326.                 DialogResult IfLoadMw3NotOpen = MessageBox.Show("Do you want to load mw3?", "Load MW3", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
  327.                 if(IfLoadMw3NotOpen == DialogResult.Yes)
  328.                 {
  329.                     if (File.Exists(@"C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Modern Warfare 3\iw5mp.exe"))
  330.                     {
  331.                         Process.Start(@"C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Modern Warfare 3\iw5mp.exe");
  332.                     }
  333.                     else
  334.                         MessageBox.Show("Mw3 File Location Can not Be Found Please Load Manualy", "Error", MessageBoxButtons.OK
  335.                             , MessageBoxIcon.Error);
  336.                 }
  337.             }
  338.                
  339.             #endregion
  340.  
  341.  
  342.             if (Process_Handle("iw5mp"))
  343.             {
  344.                 numericUpDown8.Value = ReadInteger(FoV, 4);
  345.             }
  346.  
  347.             #region check if open shit
  348.             if (Process_Handle("iw5mp"))
  349.             {
  350.                 int classone = 0x01DC0856;
  351.                 int class1sec = 0x01DC0862;
  352.                 WriteInteger(classone, 11);
  353.                 WriteInteger(class1sec, 0);
  354.                 textBox2.Text = ReadString(CLAN_TAG_TEXT, 4);
  355.             }
  356.  
  357.             bool testnet = System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();
  358.  
  359.             if (testnet == true)
  360.             {
  361.                 label150.Text = "True.";
  362.             }
  363.             else
  364.             {
  365.                 label150.Text = "False";
  366.             }
  367.  
  368.             if (Process_Handle("iw5mp"))
  369.             {
  370.                 label62.Text = ReadString(mapname, 20);
  371.                 //label26.Text =
  372.                 label3.Text = "Yes";
  373.                 WriteInteger(0x1406A2B, 1);
  374.             }
  375.             else
  376.             {
  377.                 label3.Text = "No";
  378.                 label62.Text = "MW3 Not Found!";
  379.             }
  380.  
  381.             if (Process_Handle("iw5mp"))
  382.             {
  383.                 if (ReadInteger(0x9DC3B0) == 0)
  384.                 {
  385.                     label28.Text = "No";
  386.                 }
  387.                 if (ReadInteger(0x9DC3B0) > 1)
  388.                 {
  389.                     label28.Text = "Yes";
  390.                 }
  391.  
  392.             }
  393.             #endregion
  394.         }
  395.  
  396.         private void button2_Click(object sender, EventArgs e)
  397.         {
  398.             MessageBox.Show("you need the devid to enable the dev section! and it will have all my offsets there so if you want them good luck");
  399.         }
  400.  
  401.         private void button1_Click(object sender, EventArgs e)
  402.         {
  403.             string devidusername = "hello people";
  404.             string devidpassword = "password";
  405.  
  406.             if ((textBox1.Text == devidusername) && (textBox11.Text == devidpassword) && (checkBox28.Checked == true))
  407.             {
  408.                 MessageBox.Show("Welcome to devoleper Section. please wait 2 seconds.", "dev");
  409.                 Thread.Sleep(2000);
  410.                 button1.Enabled = false;
  411.                 Form3_dev newForm = new Form3_dev();
  412.                 newForm.Show();
  413.  
  414.                 pictureBox2.Visible = false;
  415.                 label120.Visible = true;
  416.             }
  417.             else
  418.                 MessageBox.Show("please enter user name again because it was not correct");
  419.         }
  420.  
  421.         private void checkBox2_CheckedChanged(object sender, EventArgs e)
  422.         {
  423.             if (checkBox2.Checked == true)
  424.             {
  425.                 checkBox2.Text = "On";
  426.  
  427.                 if (Process_Handle("iw5mp"))
  428.                 {
  429.                     WriteInteger(0x5AAD408, 0);
  430.                 }
  431.                 else
  432.                     MessageBox.Show("mw3 was not found");
  433.             }
  434.  
  435.             if (checkBox2.Checked == false)
  436.             {
  437.                 checkBox2.Text = "Off";
  438.  
  439.                 if (Process_Handle("iw5mp"))
  440.                 {
  441.                     WriteInteger(0x5AAD408, 80);
  442.                 }
  443.                 else
  444.                     MessageBox.Show("mw3 was not found");
  445.             }
  446.         }
  447.  
  448.         private void checkBox3_CheckedChanged(object sender, EventArgs e)
  449.         {
  450.             if (checkBox3.Checked == true)
  451.             {
  452.                 checkBox3.Text = "On";
  453.  
  454.                 if (Process_Handle("iw5mp"))
  455.                 {
  456.                     WriteInteger(0x042700D, 235);
  457.                 }
  458.             }
  459.  
  460.             if (checkBox3.Checked == false)
  461.             {
  462.                 checkBox3.Text = "Off";
  463.  
  464.                 if (Process_Handle("iw5mp"))
  465.                 {
  466.                     WriteInteger(0x042700D, 116);
  467.                 }
  468.             }
  469.         }
  470.  
  471.         private void button3_Click(object sender, EventArgs e)
  472.         {//max stats
  473.             if (Process_Handle("iw5mp"))
  474.             {
  475.                 WriteInteger(0x1DC02B8, 99999999);
  476.                 WriteInteger(0x1DC04C8, 20);
  477.                 WriteInteger(0x1DC2327, 1333337);
  478.                 WriteInteger(0x1DC232F, 15);
  479.                 WriteInteger(0x1DC0518, 133333);
  480.                 WriteInteger(0x1DBD480, 21);
  481.                 WriteInteger(0x1DC04F8, 999999);
  482.             }
  483.             else
  484.                 MessageBox.Show("Try Adn Open Mw3 :P", "OPEN MW3!!!");
  485.         }
  486.  
  487.        
  488.  
  489.         private void button57_Click(object sender, EventArgs e)
  490.         {
  491.             if (Process_Handle("iw5mp"))
  492.             {
  493.                 WriteFloat_Protected(jumpheight, 100);
  494.                 for (int room1 = 0; room1 != 12; room1++)
  495.                 {
  496.                     WriteFloat(yBaseAddress + (room1 * coordsSize), -232);
  497.                     WriteFloat(xBaseAddress + (room1 * coordsSize), 1373);
  498.                     WriteFloat(zBaseAddress + (room1 * coordsSize), 968);
  499.                 }
  500.             }
  501.             else
  502.                 MessageBox.Show("umm my 2 yeal old sister knows how to open a game :P", "ok");
  503.         }
  504.  
  505.  
  506.         private void button58_Click(object sender, EventArgs e)//secret room 2
  507.         {
  508.             if (Process_Handle("iw5mp"))
  509.             {
  510.                 for (int secretroom2 = 0; secretroom2 != 12; secretroom2++)
  511.                 {
  512.                     WriteFloat(yBaseAddress + (secretroom2 * coordsSize), -212);//-212
  513.                     WriteFloat(xBaseAddress + (secretroom2 * coordsSize), 2655);//2655
  514.                     WriteFloat(zBaseAddress + (secretroom2 * coordsSize), 876);
  515.                 }
  516.             }
  517.             else
  518.                 MessageBox.Show("umm my 2 yeal old sister knows how to open a game :P", "ok");
  519.         }
  520.  
  521.         private void button59_Click(object sender, EventArgs e)
  522.         {
  523.             if (Process_Handle("iw5mp"))
  524.             {
  525.                 WriteFloat_Protected(jumpheight, 39);
  526.                 for (int spot_termanal = 0; spot_termanal != 12; spot_termanal++)
  527.                 {
  528.                     WriteFloat(xBaseAddress + (spot_termanal * coordsSize), 6148);//-212
  529.                     WriteFloat(yBaseAddress + (spot_termanal * coordsSize), 575);//2655
  530.                     WriteFloat(zBaseAddress + (spot_termanal * coordsSize), -673);
  531.                 }
  532.             }
  533.             else
  534.                 MessageBox.Show("umm my 2 yeal old sister knows how to open a game :P", "ok");
  535.         }
  536.  
  537.         private void button61_Click(object sender, EventArgs e)
  538.         {
  539.             if (Process_Handle("iw5mp"))
  540.             {
  541.                 WriteFloat_Protected(jumpheight, 100);
  542.                 for (int spot_termanal_2 = 0; spot_termanal_2 != 12; spot_termanal_2++)
  543.                 {
  544.                     WriteFloat(xBaseAddress + (spot_termanal_2 * coordsSize), 3491);//-212
  545.                     WriteFloat(yBaseAddress + (spot_termanal_2 * coordsSize), 342);//2655
  546.                     WriteFloat(zBaseAddress + (spot_termanal_2 * coordsSize), 614);
  547.                 }
  548.             }
  549.             else
  550.                 MessageBox.Show("umm my 2 yeal old sister knows how to open a game :P", "ok");
  551.         }
  552.  
  553.         private void button62_Click(object sender, EventArgs e)
  554.         {
  555.             if (Process_Handle("iw5mp"))
  556.             {
  557.                 WriteFloat_Protected(jumpheight, 100);
  558.                 for (int spot_termanal_2 = 0; spot_termanal_2 != 12; spot_termanal_2++)
  559.                 {
  560.                     WriteFloat(xBaseAddress + (spot_termanal_2 * coordsSize), 4438);//-212
  561.                     WriteFloat(yBaseAddress + (spot_termanal_2 * coordsSize), 712);//2655
  562.                     WriteFloat(zBaseAddress + (spot_termanal_2 * coordsSize), -861);
  563.                 }
  564.             }
  565.             else
  566.                 MessageBox.Show("umm my 2 yeal old sister knows how to open a game :P", "ok");
  567.         }
  568.  
  569.         int TP_PLAYERS = 12;
  570.  
  571.         private void button55_Click(object sender, EventArgs e)
  572.         {
  573.             if (Process_Handle("iw5mp"))
  574.             {
  575.                 TP_PLAYERS = 0;
  576.             }
  577.             else
  578.                 MessageBox.Show("If You want to TP Open Mw3", "commen sence");
  579.  
  580.         }
  581.  
  582.         private void button7_Click(object sender, EventArgs e)
  583.         {
  584.             if (Process_Handle("iw5mp"))
  585.             {
  586.                 WriteFloat(yBaseAddress + (0 * coordsSize), 9999);
  587.                 WriteFloat(yBaseAddress + (1 * coordsSize), 9999);
  588.                 WriteFloat(yBaseAddress + (2 * coordsSize), 9999);
  589.                 WriteFloat(yBaseAddress + (3 * coordsSize), 9999);
  590.                 WriteFloat(yBaseAddress + (4 * coordsSize), 9999);
  591.                 WriteFloat(yBaseAddress + (5 * coordsSize), 9999);
  592.                 WriteFloat(yBaseAddress + (6 * coordsSize), 9999);
  593.                 WriteFloat(yBaseAddress + (7 * coordsSize), 9999);
  594.                 WriteFloat(yBaseAddress + (8 * coordsSize), 9999);
  595.                 WriteFloat(yBaseAddress + (9 * coordsSize), 9999);
  596.                 WriteFloat(yBaseAddress + (10 * coordsSize), 9999);
  597.                 WriteFloat(yBaseAddress + (11* coordsSize), 9999);
  598.             }
  599.             else
  600.                 MessageBox.Show("Help If You Had Mw3 Open.", "lol");
  601.         }
  602.  
  603.         int fovonoff = 0;
  604.         private void button5_Click(object sender, EventArgs e)
  605.         {
  606.             fovonoff = 1;
  607.         }
  608.  
  609.         int forcehoston_off = 0;
  610.         private void checkBox5_CheckedChanged(object sender, EventArgs e)
  611.         {
  612.             if (checkBox5.Checked == true)
  613.             {
  614.                 checkBox5.Text = "On";
  615.                 if (Process_Handle("iw5mp"))
  616.                 {
  617.                     forcehoston_off = 1;
  618.                 }
  619.             }
  620.  
  621.             if (checkBox5.Checked == false)
  622.             {
  623.                 checkBox5.Text = "Off";
  624.                 if (Process_Handle("iw5mp"))
  625.                 {
  626.                     forcehoston_off = 0;
  627.                     WriteInteger(int.Parse(ReadInteger(0x0140F1A4).ToString("x"), System.Globalization.NumberStyles.HexNumber) + 0xC, 0);
  628.                 }
  629.             }
  630.         }
  631.  
  632.         #region boss
  633.         private void checkBox7_CheckedChanged(object sender, EventArgs e)
  634.         {
  635.             if (checkBox7.Checked == true)
  636.             {
  637.                 if (Process_Handle("iw5mp"))
  638.                 {
  639.                     //WriteFloat(0x1D08864, 1);//uav
  640.                     WriteFloat(0x01D08864, 1);//uav
  641.                     //timer1_boss.Start();
  642.  
  643.                     WriteFloat(0x05ACCC20, 0);
  644.                     WriteFloat(0x0880CB8, 99999);
  645.                     WriteInteger(0x05AAD408, 125);
  646.                     WriteInteger(0x05AC00C4, 0);
  647.                     WriteFloat(0x0892F6C, 99999);
  648.                     WriteInteger(0x5AC00C4, 0);
  649.                     WriteFloat(0x0871508, 250);
  650.                     //visuial
  651.                     WriteInteger(0x5AC00C4, 0);
  652.                     WriteInteger(0x5AC2924, 0);
  653.                     WriteInteger(0x5AC2970, 0);
  654.                     WriteInteger(0x5AC01A8, 0);
  655.                     WriteInteger(0x5AB766C, 0);
  656.                     WriteInteger(0x5AC02D8, 0);
  657.                     WriteInteger(0x5AB7704, 0);
  658.                     WriteInteger(0x5AC1C14, 0);
  659.                     WriteInteger(0x5AC2D98, 0);
  660.                     WriteInteger(0x5AB76B8, 0);
  661.                     WriteInteger(0x5AC0370, 0);
  662.                     WriteInteger(0x5AB7D8C, 0);
  663.                     WriteInteger(0x5AAD408, 0);
  664.                     WriteInteger(0x609BD7C, 4);
  665.                     WriteInteger(0x5AC0240, 3);
  666.                 }
  667.             }
  668.             if (checkBox7.Checked == false)
  669.             {
  670.                 if (Process_Handle("iw5mp"))
  671.                 {
  672.                     //timer1_boss.Stop();
  673.                     WriteFloat(0x5AC42F8, 65);
  674.                     WriteFloat(0x05ACCC20, 1);
  675.                     WriteFloat(0x0880CB8, 10);
  676.                     WriteInteger(0x05AAD408, 60);
  677.                     WriteFloat(0x0892F6C, 10);
  678.                     WriteInteger(0x5AC00C4, 0);
  679.                     WriteInteger(0x05AC00C4, 1);
  680.                     WriteFloat(0x0871508, 190);
  681.                     //WriteFloat(0x1D08864, 0);//uav
  682.                 }
  683.             }
  684.         }
  685.         #endregion
  686.  
  687.         private void checkBox8_CheckedChanged(object sender, EventArgs e)
  688.         {
  689.             if (checkBox8.Checked == true)
  690.             {
  691.                 MessageBox.Show("lol windows enabler noice job man lmao.");
  692.                 if (Process_Handle("iw5mp"))
  693.                 {
  694.                     WriteInteger(0x1B42444, -1);
  695.                 }
  696.             }
  697.  
  698.             if (checkBox8.Checked == false)
  699.             {
  700.                 if (checkBox8.Checked == true)
  701.                 {
  702.                     if (Process_Handle("iw5mp"))
  703.                     {
  704.                         WriteInteger(0x1B42444, 100);
  705.                     }
  706.                 }
  707.             }
  708.         }
  709.  
  710.         private void checkBox9_CheckedChanged(object sender, EventArgs e)
  711.         {
  712.             if (checkBox9.Checked == true)
  713.             {
  714.                 checkBox9.Text = "On";
  715.  
  716.                 if (Process_Handle("iw5mp"))
  717.                 {
  718.                     WriteInteger(0x5D46AB8, 18);
  719.                 }
  720.             }
  721.  
  722.             if (checkBox9.Checked == false)
  723.             {
  724.                 checkBox9.Text = "Off";
  725.  
  726.                 if (Process_Handle("iw5mp"))
  727.                 {
  728.                     WriteInteger(0x5D46AB8, 12);
  729.                 }
  730.             }
  731.         }
  732.  
  733.         private void button6_Click(object sender, EventArgs e)
  734.         {
  735.             MessageBox.Show("the player 1 noclip off set is: 0x01d0be8c");
  736.         }
  737.  
  738.         private void label20_Click(object sender, EventArgs e)
  739.         {
  740.             MessageBox.Show("if mw3 is not showing make sure your task is open and to make sure you mw3 exe name is iw5mp. and if that does not work it may be your pc!");
  741.         }
  742.  
  743.         private void button8_Click(object sender, EventArgs e)
  744.         {
  745.             MessageBox.Show("BOSS is a multi hack it will set your fov to 75 and you get a constant uav and sniper breath to 9999 and alot more little things like unlimited ammo and a few things that wont make a diffrence like 124 fps makes you jump a little higher. and a few more but i dont need to say because they dont make much diffrence");
  746.         }
  747.  
  748.         private void textBox2_TextChanged(object sender, EventArgs e)
  749.         {
  750.  
  751.         }
  752.  
  753.         private void button9_Click(object sender, EventArgs e)
  754.         {
  755.             if (Process_Handle("iw5mp"))
  756.             {
  757.                 WriteInteger(0x01406A2C, 1);
  758.                 WriteString(0x01406A2D, textBox4.Text);
  759.             }
  760.             else
  761.                 MessageBox.Show("Mw3 Not Founf.");
  762.         }
  763.  
  764.         private void textBox4_TextChanged(object sender, EventArgs e)
  765.         {//dont use
  766.         }
  767.  
  768.         private void checkBox6_CheckedChanged_1(object sender, EventArgs e)
  769.         {
  770.            
  771.         }
  772.  
  773.         private void button11_Click(object sender, EventArgs e)
  774.         {
  775.             if (Process_Handle("iw5mp"))
  776.             {
  777.                 WriteString(mapname, textBox5.Text);
  778.             }
  779.             else
  780.                 MessageBox.Show("mw3 not found please open befour using this tool.");
  781.         }
  782.  
  783.         #region what jorndel did
  784.         //what jorndel did:
  785.         //*********************************************************************
  786.         /// <summary>
  787.         /// Get the players name by their player number
  788.         /// </summary>
  789.         /// <param name="PlayerIndex">Same as NoClip</param>
  790.         /// <returns>It returns a string value(text so we can use it to set the tab names)</returns>
  791.         string PlayerName(int PlayerIndex)
  792.         {
  793.             if (Process_Handle("iw5mp"))
  794.             {
  795.                 return ReadString(0x01D0BCD0 + (0x38EC * PlayerIndex), 15);//Trim cleans up bad strings like spaces and such
  796.             }
  797.             else return "ERROR";
  798.         }
  799.  
  800.         /// <summary>
  801.         /// Set NoClip to an player
  802.         /// </summary>
  803.         /// <param name="PlayerIndex">The player number, needed to know what name the player is set too</param>
  804.         /// <param name="Activate">By default true, you can set it to false to disable NoClip</param>
  805.         void NoClip(int PlayerIndex, int value)
  806.         {
  807.             if (Process_Handle("iw5mp"))
  808.             {
  809.                 WriteInteger(0x1D0BE8C + (PlayerIndex * 0x38EC), value);//Disabled NoClip to player with number ?
  810.             }
  811.             //else MessageBox.Show("MW3 Prcoess wasnt' found!");
  812.         }
  813.  
  814.         private void radio_Normal_CheckedChanged(object sender, EventArgs e)
  815.         {
  816.             NoClip(comboBox1.SelectedIndex, 0);
  817.         }
  818.  
  819.         private void radio_NoClip_CheckedChanged(object sender, EventArgs e)
  820.         {
  821.             NoClip(comboBox1.SelectedIndex, 2);
  822.         }
  823.  
  824.         private void radio_Freeze_CheckedChanged(object sender, EventArgs e)
  825.         {
  826.             NoClip(comboBox1.SelectedIndex, 4);
  827.         }
  828.  
  829.         private void All_Normal_Click(object sender, EventArgs e)
  830.         {
  831.             for (int a = 0; a != comboBox1.Items.Count; a++)
  832.                 NoClip(a, 0);
  833.         }
  834.  
  835.         private void All_NoClip_Click(object sender, EventArgs e)
  836.         {
  837.             for (int a = 0; a != comboBox1.Items.Count; a++)
  838.                 NoClip(a, 2);
  839.         }
  840.  
  841.         private void All_Freeze_Click(object sender, EventArgs e)
  842.         {
  843.             for (int a = 0; a != comboBox1.Items.Count; a++)
  844.                 NoClip(a, 4);
  845.         }
  846.  
  847.         private void Update_Players_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  848.         {
  849.             comboBox1.Items.Clear();
  850.             for (int i = 0; i != 12; i++)
  851.                 comboBox1.Items.Add(PlayerName(i));
  852.             comboBox1.SelectedIndex = 0;
  853.         }
  854.  
  855.         private void tabPage4_Enter(object sender, EventArgs e)
  856.         {
  857.             comboBox1.Items.Clear();
  858.             for (int i = 0; i != 12; i++)
  859.                 comboBox1.Items.Add(PlayerName(i));
  860.             comboBox1.SelectedIndex = 0;
  861.         }
  862.  
  863.         private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
  864.         {
  865.             for (int a = 0; a != comboBox1.Items.Count; a++)
  866.                 NoClip(a, 0);
  867.  
  868.             int CurrentState = ReadInteger(0x1D0BE8C + (comboBox1.SelectedIndex * 0x38EC));
  869.             if (CurrentState == 0)
  870.                 radio_Normal.Checked = true;
  871.             else if (CurrentState == 2)
  872.                 radio_NoClip.Checked = true;
  873.             else radio_Freeze.Checked = true;
  874.             //*********************************************************************
  875.             //end of what jorndel did
  876.         }
  877.         #endregion
  878.  
  879.         private void checkBox4_CheckedChanged(object sender, EventArgs e)
  880.         {
  881.             if (checkBox4.Checked == true)
  882.             {
  883.                 checkBox4.Text = "On";
  884.                 if (Process_Handle("iw5mp"))
  885.                 {
  886.                     WriteFloat_Protected(0x0871508, 140);
  887.                 }
  888.                 else
  889.                 {
  890.                     checkBox4.Checked = false;
  891.                     MessageBox.Show("mw3 was not found please open it");
  892.                 }
  893.             }
  894.  
  895.             if (checkBox4.Checked == false)
  896.             {
  897.                 checkBox4.Text = "Off";
  898.                 if (Process_Handle("iw5mp"))
  899.                 {
  900.                     WriteFloat_Protected(0x0871508, 39);
  901.                 }
  902.                 else
  903.                 {
  904.                     checkBox4.Checked = false;
  905.                     MessageBox.Show("mw3 was not found");
  906.                 }
  907.             }
  908.         }
  909.  
  910.         private void groupBox2_Enter(object sender, EventArgs e)
  911.         {
  912.             //not using
  913.         }
  914.  
  915.         private void checkBox10_CheckedChanged(object sender, EventArgs e)
  916.         {
  917.             if (checkBox10.Checked == true)
  918.             {
  919.                 if (Process_Handle("iw5mp"))
  920.                 {
  921.                     WriteInteger(0x56B104C, 0);
  922.                 }
  923.                 else
  924.                 {
  925.                     MessageBox.Show("mw3 not found please open mw3 befour using this hack");
  926.                     checkBox10.Checked = false;
  927.                 }
  928.             }
  929.  
  930.             if (checkBox10.Checked == false)
  931.             {
  932.                 if (Process_Handle("iw5mp"))
  933.                 {
  934.                     WriteInteger(0x56B104C, 10000);
  935.                 }
  936.                 else
  937.                 {
  938.                     MessageBox.Show("mw3 not found please open mw3 befour using this hack");
  939.                 }
  940.             }
  941.         }
  942.  
  943.         int CHATON_OFF = 0;
  944.         private void checkBox11_CheckedChanged(object sender, EventArgs e)
  945.         {
  946.             if (checkBox11.Checked == true)
  947.             {
  948.                 checkBox11.Text = "On";
  949.                 if (Process_Handle("iw5mp"))
  950.                 {
  951.                     CHATON_OFF = 1;
  952.                 }
  953.                 else
  954.                 {
  955.                     checkBox11.Checked = false;
  956.                     MessageBox.Show("Mw3 Not Found.");
  957.                 }
  958.             }
  959.  
  960.             if (checkBox11.Checked == false)
  961.             {
  962.                 CHATON_OFF = 0;
  963.                 checkBox11.Text = "Off";
  964.             }
  965.         }
  966.  
  967.         private int chattext = 0x01b14df1;//most recent chat text.
  968.  
  969.         private void timer1_playersthing_Tick(object sender, EventArgs e)
  970.         {
  971.            
  972.         }
  973.  
  974.         private void checkBox12_CheckedChanged(object sender, EventArgs e)
  975.         {// player 1
  976.             if (checkBox12.Checked == true)
  977.             {
  978.                 if (Process_Handle("iw5mp"))
  979.                 {
  980.                     WriteInteger(0x01d0be8c, 2);
  981.                 }
  982.             }
  983.  
  984.             if (checkBox12.Checked == false)
  985.             {
  986.                 if (Process_Handle("iw5mp"))
  987.                 {
  988.                     WriteInteger(0x01d0be8c, 0);
  989.                 }
  990.             }
  991.         }
  992.  
  993.         private void checkBox13_CheckedChanged(object sender, EventArgs e)
  994.         {// player 2
  995.             if (checkBox13.Checked == true)
  996.             {
  997.                 WriteInteger(0x01d0f778, 2);
  998.             }
  999.  
  1000.             if (checkBox13.Checked == false)
  1001.             {
  1002.                 WriteInteger(0x01d0f778, 0);
  1003.             }
  1004.         }
  1005.  
  1006.         private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  1007.         {
  1008.  
  1009.         }  
  1010.  
  1011.  
  1012.         private void button14_Click(object sender, EventArgs e)
  1013.         {
  1014.             if (Process_Handle("iw5mp"))
  1015.             {
  1016.                 label52.Text = ReadString(player1, 13);
  1017.                 label51.Text = ReadString(player2, 13);
  1018.                 label50.Text = ReadString(player3, 13);
  1019.                 label49.Text = ReadString(player4, 13);
  1020.                 label48.Text = ReadString(player5, 13);
  1021.                 label47.Text = ReadString(player6, 13);
  1022.                 label46.Text = ReadString(player7, 13);
  1023.                 label45.Text = ReadString(player8, 13);
  1024.                 label44.Text = ReadString(player9, 13);
  1025.                 label43.Text = ReadString(player10, 13);
  1026.                 label42.Text = ReadString(player11, 13);
  1027.                 label41.Text = ReadString(player12, 13);
  1028.             }
  1029.         }
  1030.  
  1031.         private void button15_Click(object sender, EventArgs e)
  1032.         {
  1033.             MessageBox.Show("this is just a name for all the players in your in game lobby");
  1034.             MessageBox.Show("and any player with 2 didegts will glitch you can put noclip on them and they can put it on them self but you cant take it off unless you press 1,11 or12 button to turn it off for them");
  1035.         }
  1036.  
  1037.         private void button13_Click(object sender, EventArgs e)
  1038.         {
  1039.             label26.Text = textBox7.Text;
  1040.         }
  1041.  
  1042.         private void checkBox14_CheckedChanged(object sender, EventArgs e)
  1043.         {// player 3
  1044.             {
  1045.                 if (Process_Handle("iw5mp"))
  1046.                 {
  1047.                     WriteInteger(0x01D13064, 2);
  1048.                 }
  1049.             }
  1050.  
  1051.             if (checkBox14.Checked == false)
  1052.             {
  1053.                 if (Process_Handle("iw5mp"))
  1054.                 {
  1055.                     WriteInteger(0x01D13064, 0);
  1056.                 }
  1057.             }
  1058.         }
  1059.  
  1060.         private void checkBox15_CheckedChanged(object sender, EventArgs e)
  1061.         {// player 4
  1062.             if (checkBox15.Checked == true)
  1063.             {
  1064.                 if (Process_Handle("iw5mp"))
  1065.                 {
  1066.                     WriteInteger(0x01D16950, 2);
  1067.                 }
  1068.             }
  1069.  
  1070.             if (checkBox15.Checked == false)
  1071.             {
  1072.                 if (Process_Handle("iw5mp"))
  1073.                 {
  1074.                     WriteInteger(0x01D16950, 0);
  1075.                 }
  1076.             }
  1077.         }
  1078.  
  1079.         private void checkBox16_CheckedChanged(object sender, EventArgs e)
  1080.         {// player 5
  1081.             if (checkBox16.Checked == true)
  1082.             {
  1083.                 if (Process_Handle("iw5mp"))
  1084.                 {
  1085.                     WriteInteger(0x01D1A23C, 2);
  1086.                 }
  1087.             }
  1088.  
  1089.             if (checkBox16.Checked == false)
  1090.             {
  1091.                 if (Process_Handle("iw5mp"))
  1092.                 {
  1093.                     WriteInteger(0x01D1A23C, 0);
  1094.                 }
  1095.             }
  1096.         }
  1097.  
  1098.         private void checkBox17_CheckedChanged(object sender, EventArgs e)
  1099.         {//player 6
  1100.             if (checkBox17.Checked == true)
  1101.             {
  1102.                 if (Process_Handle("iw5mp"))
  1103.                 {
  1104.                     WriteInteger(0x01D1DB28, 2);
  1105.                 }
  1106.             }
  1107.  
  1108.             if (checkBox17.Checked == false)
  1109.             {
  1110.                 if (Process_Handle("iw5mp"))
  1111.                 {
  1112.                     WriteInteger(0x01D1DB28, 0);
  1113.                 }
  1114.             }
  1115.         }
  1116.  
  1117.         private void checkBox18_CheckedChanged(object sender, EventArgs e)
  1118.         {// player 7
  1119.             if (checkBox18.Checked == true)
  1120.             {
  1121.                 if (Process_Handle("iw5mp"))
  1122.                 {
  1123.                     WriteInteger(0x01D21414, 2);
  1124.                 }
  1125.             }
  1126.  
  1127.             if (checkBox18.Checked == false)
  1128.             {
  1129.                 if (Process_Handle("iw5mp"))
  1130.                 {
  1131.                     WriteInteger(0x01D21414, 0);
  1132.                 }
  1133.             }
  1134.         }
  1135.  
  1136.         private void checkBox19_CheckedChanged(object sender, EventArgs e)
  1137.         {// player 8
  1138.             if (checkBox19.Checked == true)
  1139.             {
  1140.                 if (Process_Handle("iw5mp"))
  1141.                 {
  1142.                     WriteInteger(0x01D24D00, 2);
  1143.                 }
  1144.             }
  1145.  
  1146.             if (checkBox19.Checked == false)
  1147.             {
  1148.                 if (Process_Handle("iw5mp"))
  1149.                 {
  1150.                     WriteInteger(0x01D24D00, 0);
  1151.                 }
  1152.             }
  1153.         }
  1154.  
  1155.         private void checkBox20_CheckedChanged(object sender, EventArgs e)
  1156.         {// player 9
  1157.             if (checkBox20.Checked == true)
  1158.             {
  1159.                 if (Process_Handle("iw5mp"))
  1160.                 {
  1161.                     WriteInteger(0x01D285EC, 2);
  1162.                 }
  1163.             }
  1164.  
  1165.             if (checkBox20.Checked == false)
  1166.             {
  1167.                 if (Process_Handle("iw5mp"))
  1168.                 {
  1169.                     WriteInteger(0x01D285EC, 0);
  1170.                 }
  1171.             }
  1172.         }
  1173.  
  1174.         private void checkBox21_CheckedChanged(object sender, EventArgs e)
  1175.         {// player 10
  1176.             if (checkBox21.Checked == true)
  1177.             {
  1178.                 if (Process_Handle("iw5mp"))
  1179.                 {
  1180.                     WriteInteger(0x01D2BED8, 2);
  1181.                 }
  1182.             }
  1183.  
  1184.             if (checkBox21.Checked == false)
  1185.             {
  1186.                 if (Process_Handle("iw5mp"))
  1187.                 {
  1188.                     WriteInteger(0x01D2BED8, 0);
  1189.                 }
  1190.             }
  1191.         }
  1192.  
  1193.         private void checkBox22_CheckedChanged(object sender, EventArgs e)
  1194.         {// player 11
  1195.             if (checkBox22.Checked == true)
  1196.             {
  1197.                 if (Process_Handle("iw5mp"))
  1198.                 {
  1199.                     WriteInteger(0x01D2F7C4, 2);
  1200.                 }
  1201.             }
  1202.  
  1203.             if (checkBox22.Checked == false)
  1204.             {
  1205.                 if (Process_Handle("iw5mp"))
  1206.                 {
  1207.                     WriteInteger(0x01D2F7C4, 0);
  1208.  
  1209.                 }
  1210.             }
  1211.         }
  1212.  
  1213.         private void checkBox23_CheckedChanged(object sender, EventArgs e)
  1214.         {// player 12
  1215.             if (checkBox23.Checked == true)
  1216.             {
  1217.                 if (Process_Handle("iw5mp"))
  1218.                 {
  1219.                     WriteInteger(0x01D330B0, 2);
  1220.                 }
  1221.             }
  1222.  
  1223.             if (checkBox23.Checked == false)
  1224.             {
  1225.                 if (Process_Handle("iw5mp"))
  1226.                 {
  1227.                     WriteInteger(0x01D330B0, 0);
  1228.                 }
  1229.             }
  1230.         }
  1231.  
  1232.         private void button16_Click(object sender, EventArgs e)
  1233.         {
  1234.  
  1235.         }
  1236.  
  1237.         private void button17_Click(object sender, EventArgs e)
  1238.         {
  1239.             if (Process_Handle("iw5mp"))
  1240.             {
  1241.                 WriteInteger(0x0113d9ec, 1);
  1242.                 WriteString(0x00c17939, "kick " + textBox8.Text);
  1243.             }
  1244.             else
  1245.                 MessageBox.Show("MW3 Was Not Found.");
  1246.         }
  1247.  
  1248.         private void Form1_KeyDown(object sender, KeyEventArgs e)
  1249.         {//console
  1250.             if (e.KeyCode.ToString() == "`")
  1251.             {
  1252.                 WriteInteger(0x0113d9ec, 1);
  1253.             }
  1254.         }
  1255.  
  1256.         private void groupBox6_Enter(object sender, EventArgs e)
  1257.         {
  1258.             //misstake
  1259.         }
  1260.  
  1261.         private void button18_Click(object sender, EventArgs e)
  1262.         {
  1263.             MessageBox.Show("thanks for using my tool i just added fetures i thought would be cool and there all together in this tool thanks for downloading");
  1264.         }
  1265.  
  1266.         private void label26_Click(object sender, EventArgs e)
  1267.         {
  1268.             if (Process_Handle("iw5mp"))
  1269.             {
  1270.                 WriteString(chattext, "HEY");
  1271.             }
  1272.         }
  1273.  
  1274.         private void label54_Click(object sender, EventArgs e)
  1275.         {
  1276.             MessageBox.Show("hehe you clicked me :) after this wait 2 seconds and see what heppens", "made by Sirspam Modz!");
  1277.             Thread.Sleep(2000);
  1278.             MessageBox.Show("nothing...", "trolololol");
  1279.         }
  1280.         private void checkBox24_CheckedChanged(object sender, EventArgs e)
  1281.         {
  1282.         }
  1283.  
  1284.         int namechangething = 0;
  1285.         private void checkBox26_CheckedChanged(object sender, EventArgs e)
  1286.         {
  1287.             if (checkBox26.Checked == true)
  1288.             {
  1289.                 namechangething = 1;
  1290.             }
  1291.  
  1292.             if (checkBox26.Checked == false)
  1293.             {
  1294.                 namechangething = 0;
  1295.             }
  1296.         }
  1297.  
  1298.         private void button22_Click(object sender, EventArgs e)
  1299.         {
  1300.             System.Diagnostics.Process.Start("http://lmgtfy.com/?q=" + textBox10.Text + "+#");
  1301.         }
  1302.  
  1303.         string MW3Location = @"C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Modern Warfare 3";
  1304.  
  1305.         private void button23_Click(object sender, EventArgs e)
  1306.         {
  1307.             if (File.Exists(@"C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Modern Warfare 3\iw5mp.exe"))
  1308.             {
  1309.                 Process.Start(@"C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Modern Warfare 3\iw5mp.exe");
  1310.             }
  1311.             else
  1312.                 MessageBox.Show("Mw3 Can not be Found! ", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  1313.         }
  1314.  
  1315.         private void button24_Click(object sender, EventArgs e)
  1316.         {
  1317.             string schoolname = "seco";
  1318.  
  1319.             if (textBox12.Text == schoolname)
  1320.             {
  1321.                 //MessageBox.Show("Username: hello people, Password: password");
  1322.                 button1.Enabled = true;
  1323.                 textBox14.Visible = true;
  1324.             }
  1325.             else MessageBox.Show("WRONG!", "wrong!");
  1326.         }
  1327.  
  1328.         private void label59_Click(object sender, EventArgs e)
  1329.         {
  1330.             label60.Visible = true;
  1331.             textBox12.Visible = true;
  1332.             button24.Visible = true;
  1333.         }
  1334.  
  1335.         private void button25_Click(object sender, EventArgs e)
  1336.         {
  1337.             if(Process_Handle("iw5mp"))
  1338.             {
  1339.             }
  1340.             else
  1341.             {
  1342.                 MessageBox.Show("Mw3 Not Found.", "error");
  1343.             }
  1344.         }
  1345.  
  1346.         int facebooknamesonoff = 0;
  1347.         private void checkBox29_CheckedChanged(object sender, EventArgs e)
  1348.         {
  1349.             if(checkBox29.Checked == true)
  1350.             {
  1351.                 facebooknamesonoff = 1;
  1352.             }
  1353.  
  1354.             if(checkBox29.Checked == false)
  1355.             {
  1356.                 facebooknamesonoff = 0;
  1357.             }
  1358.         }
  1359.  
  1360.         int _1disgayonoff = 0;
  1361.         private void checkBox30_CheckedChanged(object sender, EventArgs e)
  1362.         {
  1363.             if(checkBox30.Checked == true)
  1364.             {
  1365.                 _1disgayonoff = 1;
  1366.             }
  1367.  
  1368.             if(checkBox30.Checked == false)
  1369.             {
  1370.                 _1disgayonoff = 0;
  1371.             }
  1372.         }
  1373.  
  1374.         int sirpsmamodzname = 0;
  1375.         private void checkBox31_CheckedChanged(object sender, EventArgs e)
  1376.         {
  1377.             if(checkBox31.Checked == true)
  1378.             {
  1379.                 sirpsmamodzname = 1;
  1380.             }
  1381.  
  1382.             if(checkBox31.Checked == false)
  1383.             {
  1384.                 sirpsmamodzname = 0;
  1385.             }
  1386.         }
  1387.  
  1388.         int xpnameon_off = 0;
  1389.         private void checkBox32_CheckedChanged(object sender, EventArgs e)
  1390.         {
  1391.             if(checkBox32.Checked == true)
  1392.             {
  1393.                 xpnameon_off = 1;
  1394.             }
  1395.  
  1396.             if(checkBox32.Checked == false)
  1397.             {
  1398.                 xpnameon_off = 0;
  1399.             }
  1400.         }
  1401.  
  1402.         int coustomname = 0;
  1403.         private void checkBox33_CheckedChanged(object sender, EventArgs e)
  1404.         {
  1405.             if(checkBox33.Checked == true)
  1406.             {
  1407.                 coustomname = 1;
  1408.             }
  1409.  
  1410.             if(checkBox33.Checked == false)
  1411.             {
  1412.                 coustomname = 0;
  1413.             }
  1414.         }
  1415.  
  1416.         private void button36_Click(object sender, EventArgs e)
  1417.         {
  1418.             if (Process_Handle("iw5mp"))
  1419.             {
  1420.                 label73.Text = ReadString(player1, 10);
  1421.                 label74.Text = ReadString(player2, 10);
  1422.                 label75.Text = ReadString(player3, 10);
  1423.                 label76.Text = ReadString(player4, 10);
  1424.                 label77.Text = ReadString(player5, 10);
  1425.                 label78.Text = ReadString(player6, 10);
  1426.                 label79.Text = ReadString(player7, 10);
  1427.                 label80.Text = ReadString(player8, 10);
  1428.                 label81.Text = ReadString(player9, 10);
  1429.                 label82.Text = ReadString(player10, 10);
  1430.                 label83.Text = ReadString(player11, 10);
  1431.                 label84.Text = ReadString(player12, 10);
  1432.             }
  1433.             else MessageBox.Show("Mw3 Not Found.");
  1434.         }
  1435.  
  1436.         private void label63_Click(object sender, EventArgs e)
  1437.         {
  1438.             //dident mean to double click
  1439.         }
  1440.         //player 1
  1441.         private void button20_Click(object sender, EventArgs e)
  1442.         {
  1443.             if (Process_Handle("iw5mp"))
  1444.             {
  1445.                 WriteString(player1, textBox16.Text);
  1446.             }
  1447.             else MessageBox.Show("Mw3 Not Found.");
  1448.         }
  1449.         //player 2
  1450.         private void button21_Click(object sender, EventArgs e)
  1451.         {
  1452.             if (Process_Handle("iw5mp"))
  1453.             {
  1454.                 WriteString(player2, textBox17.Text);
  1455.             }
  1456.             else MessageBox.Show("Mw3 Not Found.");
  1457.         }
  1458.         //player 3
  1459.         private void button26_Click(object sender, EventArgs e)
  1460.         {
  1461.             if (Process_Handle("iw5mp"))
  1462.             {
  1463.                 WriteString(player3, textBox18.Text);
  1464.             }
  1465.             else MessageBox.Show("Mw3 Not Found.");
  1466.         }
  1467.         //player 4
  1468.         private void button25_Click_1(object sender, EventArgs e)
  1469.         {
  1470.             if (Process_Handle("iw5mp"))
  1471.             {
  1472.                 WriteString(player4, textBox19.Text);
  1473.             }
  1474.             else MessageBox.Show("Mw3 Not Found.");
  1475.         }
  1476.         //player 5
  1477.         private void button28_Click(object sender, EventArgs e)
  1478.         {
  1479.             if (Process_Handle("iw5mp"))
  1480.             {
  1481.                 WriteString(player5, textBox20.Text);
  1482.             }
  1483.             else MessageBox.Show("Mw3 Not Found.");
  1484.         }
  1485.         //player 6
  1486.         private void button27_Click(object sender, EventArgs e)
  1487.         {
  1488.             if (Process_Handle("iw5mp"))
  1489.             {
  1490.                 WriteString(player6, textBox21.Text);
  1491.             }
  1492.             else MessageBox.Show("Mw3 Not Found.");
  1493.         }
  1494.         //player 7
  1495.         private void button34_Click(object sender, EventArgs e)
  1496.         {
  1497.             if (Process_Handle("iw5mp"))
  1498.             {
  1499.                 WriteString(player7, textBox22.Text);
  1500.             }
  1501.             else MessageBox.Show("Mw3 Was Not Founf.");
  1502.         }
  1503.         //player 8
  1504.         private void button33_Click(object sender, EventArgs e)
  1505.         {
  1506.             if (Process_Handle("iw5mp"))
  1507.             {
  1508.                 WriteString(player8, textBox23.Text);
  1509.             }
  1510.             else MessageBox.Show("Mw3 Not Found.");
  1511.         }
  1512.         //player 9
  1513.         private void button32_Click(object sender, EventArgs e)
  1514.         {
  1515.             if (Process_Handle("iw5mp"))
  1516.             {
  1517.                 WriteString(player9, textBox24.Text);
  1518.             }
  1519.             else MessageBox.Show("Mw3 Not Found.");
  1520.         }
  1521.         //player 10
  1522.         private void button31_Click(object sender, EventArgs e)
  1523.         {
  1524.             if (Process_Handle("iw5mp"))
  1525.             {
  1526.                 WriteString(player10, textBox25.Text);
  1527.             }
  1528.             else MessageBox.Show("Mw3 Not Found.");
  1529.         }
  1530.         //player 11
  1531.         private void button30_Click(object sender, EventArgs e)
  1532.         {
  1533.             if (Process_Handle("iw5mp"))
  1534.             {
  1535.                 WriteString(player11, textBox26.Text);
  1536.             }
  1537.             else MessageBox.Show("Mw3 Not Found.");
  1538.         }
  1539.         //player 12
  1540.         private void button29_Click(object sender, EventArgs e)
  1541.         {
  1542.             if (Process_Handle("iw5mp"))
  1543.             {
  1544.                 WriteString(player12, textBox27.Text);
  1545.             }
  1546.             else MessageBox.Show("MW3 Nof Found.");
  1547.         }
  1548.  
  1549.         private void checkBox34_CheckedChanged(object sender, EventArgs e)
  1550.         {
  1551.             if(checkBox34.Checked == true)
  1552.             {
  1553.                 checkBox34.Text = "On";
  1554.                 pictureBox3.Visible = false;               checkBox26.Checked = false;
  1555.                 checkBox29.Checked = false;
  1556.                 checkBox30.Checked = false;
  1557.                 checkBox31.Checked = false;
  1558.                 checkBox32.Checked = false;
  1559.                 checkBox33.Checked = false;
  1560.                 checkBox26.Enabled = false;
  1561.                 checkBox29.Enabled = false;
  1562.                 checkBox30.Enabled = false;
  1563.                 checkBox31.Enabled = false;
  1564.                 checkBox32.Enabled = false;
  1565.                 checkBox33.Enabled = false;
  1566.                 textBox15.Text = "";
  1567.                 textBox15.Enabled = false;
  1568.             }
  1569.  
  1570.             if(checkBox34.Checked == false)
  1571.             {
  1572.                 checkBox34.Text = "Off";
  1573.                 textBox15.Enabled = true;
  1574.                 checkBox26.Enabled = true;
  1575.                 checkBox29.Enabled = true;
  1576.                 checkBox30.Enabled = true;
  1577.                 checkBox31.Enabled = true;
  1578.                 checkBox32.Enabled = true;
  1579.                 checkBox33.Enabled = true;
  1580.                 pictureBox3.Visible = true;
  1581.             }
  1582.         }
  1583.  
  1584.         private void timer1_updataplayers_Tick(object sender, EventArgs e)
  1585.         {
  1586.            
  1587.         }
  1588.  
  1589.         private void button19_Click(object sender, EventArgs e)
  1590.         {
  1591.             if (Process_Handle("iw5mp"))
  1592.             {
  1593.                 MessageBox.Show("Make sure Mw3 Is Open or it will not work and names will change back rendomly so keep that in mind.");
  1594.             }
  1595.             else
  1596.                 MessageBox.Show("Why Do You need help when Mw3 is not open. (facepalm).");
  1597.         }
  1598.         //link to credits
  1599.         private void label90_Click(object sender, EventArgs e)
  1600.         {//auto
  1601.             System.Diagnostics.Process.Start("http://www.mpgh.net/forum/member.php?u=2930329");
  1602.         }
  1603.  
  1604.         private void label92_Click(object sender, EventArgs e)
  1605.         {//jorndel
  1606.             System.Diagnostics.Process.Start("http://www.mpgh.net/forum/member.php?u=599915");
  1607.         }
  1608.  
  1609.         private void label94_Click(object sender, EventArgs e)
  1610.         {//semyel
  1611.             System.Diagnostics.Process.Start("http://www.mpgh.net/forum/member.php?u=1787498");
  1612.         }
  1613.  
  1614.         private void label96_Click(object sender, EventArgs e)
  1615.         {//eithan(me)
  1616.             System.Diagnostics.Process.Start("http://www.mpgh.net/forum/member.php?u=3020789");
  1617.         }
  1618.  
  1619.         private void textBox6_TextChanged(object sender, EventArgs e)
  1620.         { }//oops i fucked up
  1621.  
  1622.         private void button35_Click(object sender, EventArgs e)
  1623.         {
  1624.             button35.Visible = false;
  1625.             button37.Visible = true;
  1626.             this.Size = new System.Drawing.Size(673, 402);//
  1627.         }
  1628.  
  1629.         private void button37_Click(object sender, EventArgs e)
  1630.         {
  1631.             button35.Visible = true;
  1632.             button37.Visible = false;
  1633.             this.Size = new System.Drawing.Size(673, 425);//
  1634.         }
  1635.  
  1636.         private void checkBox36_CheckedChanged(object sender, EventArgs e)//dident mean to check
  1637.         {
  1638.             //dident mean to check...
  1639.         }
  1640.  
  1641.         private void groupBox14_Enter(object sender, EventArgs e)
  1642.         {
  1643.             //dident mean to click
  1644.         }
  1645.  
  1646.         private void checkBox38_CheckedChanged(object sender, EventArgs e)
  1647.         {
  1648.             //dident mean to click
  1649.         }
  1650.  
  1651.         private void button38_Click(object sender, EventArgs e)
  1652.         {
  1653.             WriteFloat_Protected(jumpheight, Convert.ToSingle(textBox28.Text));
  1654.             //label102.Text = ReadFloat(jumpheight).ToString();
  1655.         }
  1656.  
  1657.         private void button39_Click(object sender, EventArgs e)
  1658.         {
  1659.             if (Process_Handle("iw5mp"))
  1660.             {
  1661.                 MessageBox.Show("When you Force Close it Will Make A BigBeep!", "WARNING!");
  1662.                 foreach (Process p in Process.GetProcessesByName("iw5mp")) p.Kill();
  1663.             }
  1664.             else
  1665.                 MessageBox.Show("How Do I Close It when Mw3 Is not Open :p", "LOL");
  1666.         }
  1667.  
  1668.         int screentype = 0x1091D7C;
  1669.         int drawchoppaboxes = 0x005CA550;
  1670.         int drawenginname = 0x05A8AC0;
  1671.         int drawenginwaypoint = 0x004C8870;
  1672.  
  1673.  
  1674.         private void button40_Click(object sender, EventArgs e)
  1675.         {//windowed
  1676.             if(Process_Handle("iw5mp"))
  1677.             {
  1678.                 WriteInteger(screentype, 2);
  1679.             }
  1680.             else
  1681.                 MessageBox.Show("You forgot to open mw3 lol...");
  1682.         }
  1683.  
  1684.         private void button41_Click(object sender, EventArgs e)
  1685.         {//fullscreen
  1686.             if (Process_Handle("iw5mp"))
  1687.             {
  1688.                 WriteInteger(screentype, 0);
  1689.             }
  1690.             else
  1691.                 MessageBox.Show("You forgot to open mw3 lol...");
  1692.         }
  1693.  
  1694.         private void button42_Click(object sender, EventArgs e)
  1695.         {//windowd border less
  1696.             if (Process_Handle("iw5mp"))
  1697.             {
  1698.                 WriteInteger(screentype, 1);
  1699.             }
  1700.             else
  1701.                 MessageBox.Show("You forgot to open mw3 lol...");
  1702.         }
  1703.  
  1704.         private void checkBox41_CheckedChanged(object sender, EventArgs e)
  1705.         {}
  1706.        
  1707.         byte[] off = new byte[1]
  1708.                     {
  1709.                         (byte) 0,
  1710.                     };
  1711.  
  1712.         byte[] redBox = new byte[1]
  1713.                     {
  1714.                         (byte) 16,
  1715.                     };
  1716.  
  1717.         byte[] thermal = new byte[1]
  1718.                     {
  1719.                         (byte) 40,
  1720.                     };
  1721.  
  1722.         byte[] redBoxThermal = new byte[1]
  1723.                     {
  1724.                         (byte) 24,
  1725.                     };
  1726.  
  1727.         #region i fucked up
  1728.         private void checkBox46_CheckedChanged(object sender, EventArgs e)
  1729.         {// i fucked up
  1730.         }
  1731.         private void tabControl2_SelectedIndexChanged(object sender, EventArgs e)
  1732.         {}
  1733.         private void label213_Click(object sender, EventArgs e)
  1734.         {}
  1735.         private void label214_Click(object sender, EventArgs e)
  1736.         {}
  1737.         private void label215_Click(object sender, EventArgs e)
  1738.         {}
  1739.         private void label216_Click(object sender, EventArgs e)
  1740.         {}
  1741.         private void label217_Click(object sender, EventArgs e)
  1742.         {}
  1743.         private void label218_Click(object sender, EventArgs e)
  1744.         {}
  1745.         private void label219_Click(object sender, EventArgs e)
  1746.         {}
  1747.         private void label220_Click(object sender, EventArgs e)
  1748.         {}
  1749.         private void label221_Click(object sender, EventArgs e)
  1750.         {}
  1751.         private void label222_Click(object sender, EventArgs e)
  1752.         {}
  1753.         private void label223_Click(object sender, EventArgs e)
  1754.         {}
  1755.         private void label224_Click(object sender, EventArgs e)
  1756.         {}
  1757.         #endregion
  1758.  
  1759.         int redboxesonoff = 0;
  1760.  
  1761.         private void button46_Click(object sender, EventArgs e)
  1762.         {//off
  1763.             redboxesonoff = 0;
  1764.         }
  1765.  
  1766.         private void button43_Click(object sender, EventArgs e)
  1767.         {//redboxes
  1768.             redboxesonoff = 1;
  1769.         }
  1770.         //if((redboxesonoff == 0) && (Process_Handle("iw5mp")))
  1771.         private void button44_Click(object sender, EventArgs e)
  1772.         {//thermal
  1773.             redboxesonoff = 2;
  1774.         }
  1775.  
  1776.         private void button45_Click(object sender, EventArgs e)
  1777.         {//both
  1778.             redboxesonoff = 3;
  1779.         }
  1780.  
  1781.         int titleha = 0;
  1782.         int forthetitlemyanem = 0;
  1783.  
  1784.         //0x01D08CE8 + (clientnum * 0x38EC)primary
  1785.         //socandary 01D08CD4
  1786.  
  1787.         int awesomecolornamething = 0;
  1788.         private void timer1_god_Tick(object sender, EventArgs e)
  1789.         {
  1790.             #region
  1791.  
  1792.             if (Process_Handle("iw5mp"))
  1793.             {
  1794.                 if (namething == true)
  1795.                 {
  1796.                     awesomecolornamething++;
  1797.                     if (awesomecolornamething == 0)
  1798.                     {
  1799.                         NameFaker namefakething = new NameFaker("^2S^3i^4r^5S^6p^7a^8m");
  1800.                     }
  1801.  
  1802.                     if (awesomecolornamething == 1)
  1803.                     {
  1804.                         NameFaker namefakething = new NameFaker("^1S^2i^3r^4S^5p^6a^7m");
  1805.                     }
  1806.  
  1807.                     if (awesomecolornamething == 2)
  1808.                     {
  1809.                         NameFaker namefakething = new NameFaker("^2S^3i^4r^5S^6p^7a^8m");
  1810.                     }
  1811.  
  1812.                     if (awesomecolornamething == 3)
  1813.                     {
  1814.                         NameFaker namefakething = new NameFaker("^1S^2i^3r^4S^5p^6a^7m");
  1815.  
  1816.                         awesomecolornamething = 0;
  1817.                     }
  1818.                 }
  1819.             }
  1820.             else
  1821.                 namething = false;
  1822.  
  1823.             #endregion
  1824.             #region gun changer shit
  1825.  
  1826.             if (Process_Handle("iw5mp"))
  1827.             {
  1828.                 label218.Text = "Player 1: " + ReadString(player1, 15);
  1829.                 label219.Text = "Player 2: " + ReadString(player2, 15);
  1830.                 label220.Text = "Player 3: " + ReadString(player3, 15);
  1831.  
  1832.  
  1833.             }
  1834.  
  1835.             #endregion
  1836.             #region gun x, y & z
  1837.             if (Process_Handle("iw5mp"))
  1838.             {
  1839.                 #region write
  1840.                 //WriteFloat(GunX, (int)numericUpDown14.Value);
  1841.                 WriteFloat(0x56C9A40, (int)numericUpDown14.Value);
  1842.                 WriteFloat(0x56C9A8C, (int)numericUpDown16.Value);
  1843.                 WriteFloat(0x56C9AD8, (int)numericUpDown15.Value);
  1844.                 #endregion
  1845.  
  1846.                 #region read
  1847.                 label213.Text = ReadFloat(0x56C9A40).ToString();//x
  1848.                 label214.Text = ReadFloat(0x56C9A8C).ToString();//y
  1849.                 label215.Text = ReadFloat(0x56C9AD8).ToString();//z
  1850.                 #endregion
  1851.             }
  1852.  
  1853.             #endregion
  1854.             #region rcon console hack(alpha)
  1855.  
  1856.  
  1857.             #region commants things
  1858.             if (ReadString(Rcon_Console_text) == "noclip")//noclip
  1859.             {
  1860.                 //WriteString(0x05b3925b, "12345");
  1861.             }
  1862.             #endregion
  1863.  
  1864.             #region read text to a label
  1865.  
  1866.             label221.Text = ReadString(Rcon_Console_text);
  1867.  
  1868.             #endregion
  1869.  
  1870.  
  1871.             #region hotkey to open :P
  1872.             if (GetAsyncKeyState(Keys.End) == -32767)//-32767
  1873.             {
  1874.                 if (Process_Handle("iw5mp"))
  1875.                 {
  1876.                     WriteString(0x00C17934, "^3CMD^7");
  1877.                     WriteInteger(0x0113d9ec, 1);
  1878.                 }
  1879.                 else
  1880.                     MessageBox.Show("mw3 not found please open mw3!");
  1881.             }
  1882.             #endregion
  1883.  
  1884.  
  1885.             #endregion
  1886.             #region godmode for you
  1887.             if (checkBox88.Checked == true)
  1888.             {
  1889.                 if(Process_Handle("iw5mp"))
  1890.                 {
  1891.                     if(ReadInteger(localIdAddress) == 0)//player 2
  1892.                     {
  1893.                         WriteInteger(healthBaseAddress, 9999);
  1894.                     }
  1895.  
  1896.                     if (ReadInteger(localIdAddress) == 1)//player 2
  1897.                     {
  1898.                         WriteInteger(healthBaseAddress + (1 * healthSize), 9999);
  1899.                     }
  1900.  
  1901.                     if (ReadInteger(localIdAddress) == 2)//player 2
  1902.                     {
  1903.                         WriteInteger(healthBaseAddress + (2 * healthSize), 9999);
  1904.                     }
  1905.  
  1906.                     if (ReadInteger(localIdAddress) == 3)//player 2
  1907.                     {
  1908.                         WriteInteger(healthBaseAddress + (3 * healthSize), 9999);
  1909.                     }
  1910.  
  1911.                     if (ReadInteger(localIdAddress) == 4)//player 2
  1912.                     {
  1913.                         WriteInteger(healthBaseAddress + (4 * healthSize), 9999);
  1914.                     }
  1915.  
  1916.                     if (ReadInteger(localIdAddress) == 5)//player 2
  1917.                     {
  1918.                         WriteInteger(healthBaseAddress + (5 * healthSize), 9999);
  1919.                     }
  1920.  
  1921.                     if (ReadInteger(localIdAddress) == 6)//player 2
  1922.                     {
  1923.                         WriteInteger(healthBaseAddress + (6 * healthSize), 9999);
  1924.                     }
  1925.  
  1926.                     if (ReadInteger(localIdAddress) == 7)//player 2
  1927.                     {
  1928.                         WriteInteger(healthBaseAddress + (7 * healthSize), 9999);
  1929.                     }
  1930.  
  1931.                     if (ReadInteger(localIdAddress) == 8)//player 2
  1932.                     {
  1933.                         WriteInteger(healthBaseAddress + (8 * healthSize), 9999);
  1934.                     }
  1935.  
  1936.                     if (ReadInteger(localIdAddress) == 9)//player 2
  1937.                     {
  1938.                         WriteInteger(healthBaseAddress + (9 * healthSize), 9999);
  1939.                     }
  1940.  
  1941.                     if (ReadInteger(localIdAddress) == 10)//player 2
  1942.                     {
  1943.                         WriteInteger(healthBaseAddress + (10 * healthSize), 9999);
  1944.                     }
  1945.  
  1946.                     if (ReadInteger(localIdAddress) == 11)//player 2
  1947.                     {
  1948.                         WriteInteger(healthBaseAddress + (11 * healthSize), 9999);
  1949.                     }
  1950.                 }
  1951.             }
  1952.             #endregion
  1953.             //tella
  1954.             #region Tella port players ontop of your head
  1955.  
  1956.             if(Process_Handle("iw5mp"))
  1957.             {
  1958.                 if (spawntrapotherthing == 1)
  1959.                 {
  1960.                     numericUpDown10.Value = ReadInteger(localIdAddress);
  1961.                     label200.Text = ReadInteger(localIdAddress).ToString();
  1962.                 }
  1963.             }
  1964.  
  1965.             if (Spawn_Trap_on_you_on_off == true)
  1966.             {
  1967.                 if(Process_Handle("iw5mp"))
  1968.                 {
  1969.  
  1970.                     if (ReadInteger(localIdAddress) != 0)
  1971.                     {
  1972.                         if (freeze_players_tp_thing == true)
  1973.                         {
  1974.                             WriteInteger(NOCLIP_BASE_ADRESS + (0 * NOCLIP_SIZE), 4);
  1975.                         }
  1976.  
  1977.                         WriteFloat(xBaseAddress + (0 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  1978.                         WriteFloat(yBaseAddress + (0 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  1979.                         WriteFloat(zBaseAddress + (0 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  1980.                     }
  1981.                     else
  1982.                     {
  1983.                         WriteInteger(healthBaseAddress + (0 * healthSize), 999);
  1984.                         WriteInteger(ammoprimary + (0 * ammo_size), 999);
  1985.                         WriteString(player1, "^5H^6a^2c^1k^3er      ");
  1986.                     }
  1987.  
  1988.                     if (ReadInteger(localIdAddress) != 1)
  1989.                     {
  1990.                         if (freeze_players_tp_thing == true)
  1991.                         {
  1992.                             WriteInteger(NOCLIP_BASE_ADRESS + (1 * NOCLIP_SIZE), 4);
  1993.                         }
  1994.  
  1995.                         WriteFloat(xBaseAddress + (1 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  1996.                         WriteFloat(yBaseAddress + (1 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  1997.                         WriteFloat(zBaseAddress + (1 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  1998.                     }
  1999.                     else
  2000.                     {
  2001.                         WriteInteger(healthBaseAddress + (1 * healthSize), 999);
  2002.                         WriteInteger(ammoprimary + (1 * ammo_size), 999);
  2003.                         WriteString(player2, "^5H^6a^2c^1k^3er      ");
  2004.                     }
  2005.  
  2006.                     if (ReadInteger(localIdAddress) != 2)
  2007.                     {
  2008.                         if (freeze_players_tp_thing == true)
  2009.                         {
  2010.                             WriteInteger(NOCLIP_BASE_ADRESS + (2 * NOCLIP_SIZE), 4);
  2011.                         }
  2012.  
  2013.                         WriteFloat(xBaseAddress + (2 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2014.                         WriteFloat(yBaseAddress + (2 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2015.                         WriteFloat(zBaseAddress + (2 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2016.                     }
  2017.                     else
  2018.                     {
  2019.                         WriteInteger(healthBaseAddress + (2 * healthSize), 999);
  2020.                         WriteInteger(ammoprimary + (2 * ammo_size), 999);
  2021.                         WriteString(player3, "^5H^6a^2c^1k^3er      ");
  2022.                     }//player 3
  2023.  
  2024.                     if (ReadInteger(localIdAddress) != 3)
  2025.                     {
  2026.                         if (freeze_players_tp_thing == true)
  2027.                         {
  2028.                             WriteInteger(NOCLIP_BASE_ADRESS + (3 * NOCLIP_SIZE), 4);
  2029.                         }
  2030.  
  2031.                         WriteFloat(xBaseAddress + (3 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2032.                         WriteFloat(yBaseAddress + (3 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2033.                         WriteFloat(zBaseAddress + (3 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2034.                     }
  2035.                     else
  2036.                     {
  2037.                         WriteInteger(healthBaseAddress + (3 * healthSize), 999);
  2038.                         WriteInteger(ammoprimary + (3 * ammo_size), 999);
  2039.                         WriteString(player4, "^5H^6a^2c^1k^3er      ");
  2040.  
  2041.                     }
  2042.  
  2043.                     if (ReadInteger(localIdAddress) != 4)
  2044.                     {
  2045.                         if (freeze_players_tp_thing == true)
  2046.                         {
  2047.                             WriteInteger(NOCLIP_BASE_ADRESS + (4 * NOCLIP_SIZE), 4);
  2048.                         }
  2049.  
  2050.                         WriteFloat(xBaseAddress + (4 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2051.                         WriteFloat(yBaseAddress + (4 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2052.                         WriteFloat(zBaseAddress + (4 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2053.                     }
  2054.                     else
  2055.                     {
  2056.                         WriteInteger(healthBaseAddress + (4 * healthSize), 999);
  2057.                         WriteInteger(ammoprimary + (4 * ammo_size), 999);
  2058.                         WriteString(player5, "^5H^6a^2c^1k^3er      ");
  2059.                     }
  2060.  
  2061.                     if (ReadInteger(localIdAddress) != 5)
  2062.                     {
  2063.                         if (freeze_players_tp_thing == true)
  2064.                         {
  2065.                             WriteInteger(NOCLIP_BASE_ADRESS + (5 * NOCLIP_SIZE), 4);
  2066.                         }
  2067.  
  2068.                         WriteFloat(xBaseAddress + (5 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2069.                         WriteFloat(yBaseAddress + (5 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2070.                         WriteFloat(zBaseAddress + (5 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2071.                     }
  2072.                     else
  2073.                     {
  2074.                         WriteInteger(healthBaseAddress + (5 * healthSize), 999);
  2075.                         WriteInteger(ammoprimary + (5 * ammo_size), 999);
  2076.                         WriteString(player6, "^5H^6a^2c^1k^3er      ");
  2077.                     }
  2078.                    
  2079.  
  2080.                     if (ReadInteger(localIdAddress) != 6)
  2081.                     {
  2082.                         if (freeze_players_tp_thing == true)
  2083.                         {
  2084.                             WriteInteger(NOCLIP_BASE_ADRESS + (6 * NOCLIP_SIZE), 4);
  2085.                         }
  2086.  
  2087.                         WriteFloat(xBaseAddress + (6 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2088.                         WriteFloat(yBaseAddress + (6 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2089.                         WriteFloat(zBaseAddress + (6 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2090.                     }
  2091.                     else
  2092.                     {
  2093.                         WriteInteger(healthBaseAddress + (6 * healthSize), 999);
  2094.                         WriteInteger(ammoprimary + (6 * ammo_size), 999);
  2095.                         WriteString(player7, "^5H^6a^2c^1k^3er      ");
  2096.                     }
  2097.  
  2098.                     if (ReadInteger(localIdAddress) != 7)
  2099.                     {
  2100.                         if (freeze_players_tp_thing == true)
  2101.                         {
  2102.                             WriteInteger(NOCLIP_BASE_ADRESS + (7 * NOCLIP_SIZE), 4);
  2103.                         }
  2104.  
  2105.                         WriteFloat(xBaseAddress + (7 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2106.                         WriteFloat(yBaseAddress + (7 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2107.                         WriteFloat(zBaseAddress + (7 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2108.                     }
  2109.                     else
  2110.                     {
  2111.                         WriteInteger(healthBaseAddress + (7 * healthSize), 999);
  2112.                         WriteInteger(ammoprimary + (7 * ammo_size), 999);
  2113.                         WriteString(player8, "^5H^6a^2c^1k^3er      ");
  2114.                     }
  2115.  
  2116.                     if (ReadInteger(localIdAddress) != 8)
  2117.                     {
  2118.                         if (freeze_players_tp_thing == true)
  2119.                         {
  2120.                             WriteInteger(NOCLIP_BASE_ADRESS + (8 * NOCLIP_SIZE), 4);
  2121.                         }
  2122.  
  2123.                         WriteFloat(xBaseAddress + (8 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2124.                         WriteFloat(yBaseAddress + (8 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2125.                         WriteFloat(zBaseAddress + (8 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2126.                     }
  2127.                     else
  2128.                     {
  2129.                         WriteInteger(healthBaseAddress + (8 * healthSize), 999);
  2130.                         WriteInteger(ammoprimary + (8 * ammo_size), 999);
  2131.                         WriteString(player9, "^5H^6a^2c^1k^3er      ");
  2132.                     }
  2133.  
  2134.                     if (ReadInteger(localIdAddress) != 9)
  2135.                     {
  2136.                         if (freeze_players_tp_thing == true)
  2137.                         {
  2138.                             WriteInteger(NOCLIP_BASE_ADRESS + (9 * NOCLIP_SIZE), 4);
  2139.                         }
  2140.  
  2141.                         WriteFloat(xBaseAddress + (9 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2142.                         WriteFloat(yBaseAddress + (9 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2143.                         WriteFloat(zBaseAddress + (9 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2144.                     }
  2145.                     else
  2146.                     {
  2147.                         WriteInteger(healthBaseAddress + (9 * healthSize), 999);
  2148.                         WriteInteger(ammoprimary + (9 * ammo_size), 999);
  2149.                         WriteString(player10, "^5H^6a^2c^1k^3er      ");
  2150.                     }
  2151.  
  2152.                     if (ReadInteger(localIdAddress) != 10)
  2153.                     {
  2154.                         if (freeze_players_tp_thing == true)
  2155.                         {
  2156.                             WriteInteger(NOCLIP_BASE_ADRESS + (10 * NOCLIP_SIZE), 4);
  2157.                         }
  2158.  
  2159.                         WriteFloat(xBaseAddress + (10 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2160.                         WriteFloat(yBaseAddress + (10 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2161.                         WriteFloat(zBaseAddress + (10 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2162.                     }
  2163.                     else
  2164.                     {
  2165.                         WriteInteger(healthBaseAddress + (10 * healthSize), 999);
  2166.                         WriteInteger(ammoprimary + (10 * ammo_size), 999);
  2167.                         WriteString(player11, "^5H^6a^2c^1k^3er      ");
  2168.                     }
  2169.  
  2170.                     if (ReadInteger(localIdAddress) != 11)
  2171.                     {
  2172.                         if (freeze_players_tp_thing == true)
  2173.                         {
  2174.                             WriteInteger(NOCLIP_BASE_ADRESS + (11 * NOCLIP_SIZE), 4);
  2175.                         }
  2176.  
  2177.                         WriteFloat(xBaseAddress + (11 * coordsSize), ReadFloat(xBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown12.Value);
  2178.                         WriteFloat(yBaseAddress + (11 * coordsSize), ReadFloat(yBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown11.Value);
  2179.                         WriteFloat(zBaseAddress + (11 * coordsSize), ReadFloat(zBaseAddress + ((int)numericUpDown10.Value * coordsSize)) + (int)numericUpDown13.Value);
  2180.                     }
  2181.                     else
  2182.                     {
  2183.                         WriteInteger(healthBaseAddress + (11 * healthSize), 999);
  2184.                         WriteInteger(ammoprimary + (11 * ammo_size), 999);
  2185.                         WriteString(player12, "^5H^6a^2c^1k^3er      ");
  2186.                     }
  2187.                 }
  2188.             }
  2189.  
  2190.             #endregion
  2191.             //tella
  2192.             #region fov
  2193.             if (Process_Handle("iw5mp"))
  2194.             {
  2195.                 if (fovonoff == 1)
  2196.                 {
  2197.                     WriteFloat(FoV, (int)numericUpDown8.Value);
  2198.                 }
  2199.             }
  2200.             #endregion
  2201.             #region read clan tag to a label
  2202.             if (Process_Handle("iw5mp"))
  2203.             {
  2204.                 label86.Text = ReadString(CLAN_TAG_TEXT, 4);
  2205.             }
  2206.             #endregion
  2207.             #region tellaport
  2208.             TP_PLAYERS++;
  2209.             if (TP_PLAYERS < 2)
  2210.             {
  2211.                 for (int i = 0; i != 12; i++)
  2212.                 {
  2213.                     WriteFloat(yBaseAddress + (i * coordsSize), 856);
  2214.                     WriteFloat(xBaseAddress + (i * coordsSize), -45);
  2215.                     WriteFloat(zBaseAddress + (i * coordsSize), 95);
  2216.                 }
  2217.             }
  2218.  
  2219.             if (ReadString(0x059CA9B0, 15) == "mp_terminal_cls")//termanal: mp_terminal_cls
  2220.             {
  2221.                 button59.Visible = true;
  2222.                 button61.Visible = true;
  2223.                 button62.Visible = true;
  2224.             }
  2225.             else
  2226.             {
  2227.                 button59.Visible = false;
  2228.                 button61.Visible = false;
  2229.                 button62.Visible = false;
  2230.             }
  2231.  
  2232.             /// textBox9.Text = ReadString(0x059CA9B0, 200);
  2233.  
  2234.             //other
  2235.             if (ReadString(0x059CA9B0, 7) == "mp_dome")
  2236.             {
  2237.                 button55.Visible = true;
  2238.                 button57.Visible = true;
  2239.                 button58.Visible = true;
  2240.             }
  2241.             else
  2242.             {
  2243.                 button55.Visible = false;
  2244.                 button57.Visible = false;
  2245.                 button58.Visible = false;
  2246.             }
  2247.  
  2248.             if(Process_Handle("iw5mp"))
  2249.             {
  2250.                 label11.Text = ReadFloat(zBaseAddress + (localIdAddress * coordsSize)).ToString();//z your player
  2251.                 label10.Text = ReadFloat(yBaseAddress + (localIdAddress * coordsSize)).ToString();//y
  2252.                 label9.Text = ReadFloat(xBaseAddress + (localIdAddress * coordsSize)).ToString();//x
  2253.             }
  2254.             #endregion
  2255.             #region other
  2256.             if (Process_Handle("iw5mp"))
  2257.             {
  2258.                 label73.Text = ReadString(player1);
  2259.                 label74.Text = ReadString(player2);
  2260.                 label75.Text = ReadString(player3);
  2261.                 label76.Text = ReadString(player4);
  2262.                 label77.Text = ReadString(player5);
  2263.                 label78.Text = ReadString(player6);
  2264.                 label79.Text = ReadString(player7);
  2265.                 label80.Text = ReadString(player8);
  2266.                 label81.Text = ReadString(player9);
  2267.                 label82.Text = ReadString(player10);
  2268.                 label83.Text = ReadString(player11);
  2269.                 label84.Text = ReadString(player12);
  2270.             }
  2271.             #endregion
  2272.             #region namechanegr thing
  2273.  
  2274.             if(invisablename == 1)
  2275.             {
  2276.                 if (Process_Handle("iw5mp"))
  2277.                 {
  2278.                     WriteString(player1, "                ");
  2279.                     WriteString(player2, "                ");
  2280.                     WriteString(player3, "                ");
  2281.                     WriteString(player4, "                ");
  2282.                     WriteString(player5, "                ");
  2283.                     WriteString(player6, "                ");
  2284.                     WriteString(player7, "                ");
  2285.                     WriteString(player8, "                ");
  2286.                     WriteString(player9, "                ");
  2287.                     WriteString(player10, "                ");
  2288.                     WriteString(player11, "                ");
  2289.                     WriteString(player12, "                ");
  2290.                 }
  2291.             }
  2292.  
  2293.             if(coustomname == 1)
  2294.             {
  2295.                 if (Process_Handle("iw5mp"))
  2296.                 {
  2297.                     WriteString(player1, textBox15.Text);
  2298.                     WriteString(player2, textBox15.Text);
  2299.                     WriteString(player3, textBox15.Text);
  2300.                     WriteString(player4, textBox15.Text);
  2301.                     WriteString(player5, textBox15.Text);
  2302.                     WriteString(player6, textBox15.Text);
  2303.                     WriteString(player7, textBox15.Text);
  2304.                     WriteString(player8, textBox15.Text);
  2305.                     WriteString(player9, textBox15.Text);
  2306.                     WriteString(player10, textBox15.Text);
  2307.                     WriteString(player11, textBox15.Text);
  2308.                     WriteString(player12, textBox15.Text);
  2309.                 }
  2310.             }
  2311.  
  2312.             if (xpnameon_off == 1)
  2313.             {
  2314.                 if (Process_Handle("iw5mp"))
  2315.                 {
  2316.                     WriteString(player1, "^ddxp         ");
  2317.                     WriteString(player2, "^ddxp         ");
  2318.                     WriteString(player3, "^ddxp         ");
  2319.                     WriteString(player4, "^ddxp         ");
  2320.                     WriteString(player5, "^ddxp         ");
  2321.                     WriteString(player6, "^ddxp         ");
  2322.                     WriteString(player7, "^ddxp         ");
  2323.                     WriteString(player8, "^ddxp         ");
  2324.                     WriteString(player9, "^ddxp         ");
  2325.                     WriteString(player10, "^ddxp         ");
  2326.                     WriteString(player11, "^ddxp         ");
  2327.                     WriteString(player12, "^ddxp         ");
  2328.                 }
  2329.             }
  2330.  
  2331.             if (sirpsmamodzname == 1)
  2332.             {
  2333.                 if (Process_Handle("iw5mp"))
  2334.                 {
  2335.                     WriteString(player1, "^5SirSpamModz");//^ddrank_prestige_waw9 // ^ddxp
  2336.                     WriteString(player2, "^5SirSpamModz");
  2337.                     WriteString(player3, "^5SirSpamModz");
  2338.                     WriteString(player4, "^5SirSpamModz");
  2339.                     WriteString(player5, "^5SirSpamModz");
  2340.                     WriteString(player6, "^5SirSpamModz");
  2341.                     WriteString(player7, "^5SirSpamModz");
  2342.                     WriteString(player8, "^5SirSpamModz");
  2343.                     WriteString(player9, "^5SirSpamModz");
  2344.                     WriteString(player10, "^5SirSpamModz");
  2345.                     WriteString(player11, "^5SirSpamModz");
  2346.                     WriteString(player12, "^5SirSpamModz");
  2347.                 }
  2348.             }
  2349.  
  2350.             if (facebooknamesonoff == 1)
  2351.             {
  2352.                 if (Process_Handle("iw5mp"))
  2353.                 {
  2354.                     WriteString(player1, "^ddfacebook 1");
  2355.                     WriteString(player2, "^ddfacebook 2");
  2356.                     WriteString(player3, "^ddfacebook 3");
  2357.                     WriteString(player4, "^ddfacebook 4");
  2358.                     WriteString(player5, "^ddfacebook 5");
  2359.                     WriteString(player6, "^ddfacebook 6");
  2360.                     WriteString(player7, "^ddfacebook 7");
  2361.                     WriteString(player8, "^ddfacebook 8");
  2362.                     WriteString(player9, "^ddfacebook 9");
  2363.                     WriteString(player10, "^ddfacebook 10");
  2364.                     WriteString(player11, "^ddfacebook 11");
  2365.                     WriteString(player12, "^ddfacebook 12");
  2366.                 }
  2367.             }
  2368.  
  2369.             if(namechangething == 1)
  2370.             {
  2371.                 if (Process_Handle("iw5mp"))
  2372.                 {
  2373.                     WriteString(player1, "Player ^1one    ");
  2374.                     WriteString(player2, "Player ^2two    ");
  2375.                     WriteString(player3, "Player ^3three    ");
  2376.                     WriteString(player4, "Player ^4four    ");
  2377.                     WriteString(player5, "Player ^5five    ");
  2378.                     WriteString(player6, "Player ^6six    ");
  2379.                     WriteString(player7, "Player ^3seven    ");
  2380.                     WriteString(player8, "Player ^8eight    ");
  2381.                     WriteString(player9, "Player ^9nine    ");
  2382.                     WriteString(player10, "Player ^1ten    ");
  2383.                     WriteString(player11, "Player ^2eleven    ");
  2384.                     WriteString(player12, "Player ^3twelve    ");
  2385.                 }
  2386.             }
  2387.  
  2388.             if (_1disgayonoff == 1)
  2389.             {
  2390.                 if (Process_Handle("iw5mp"))
  2391.                 {
  2392.                     WriteString(player1, "^51D ^2Is ^4Gay ^71");
  2393.                     WriteString(player2, "^51D ^2Is ^4Gay ^72");
  2394.                     WriteString(player3, "^51D ^2Is ^4Gay ^73");
  2395.                     WriteString(player4, "^51D ^2Is ^4Gay ^74");
  2396.                     WriteString(player5, "^51D ^2Is ^4Gay ^75");
  2397.                     WriteString(player6, "^51D ^2Is ^4Gay ^76");
  2398.                     WriteString(player7, "^51D ^2Is ^4Gay ^77");
  2399.                     WriteString(player8, "^51D ^2Is ^4Gay ^78");
  2400.                     WriteString(player9, "^1D ^2Is ^4Gay ^79");
  2401.                     WriteString(player10, "^51D ^2Is ^4Gay ^710");
  2402.                     WriteString(player11, "^1D ^2Is ^4Gay ^711");
  2403.                     WriteString(player12, "^1D ^2Is ^4Gay ^712");
  2404.                 }
  2405.             }
  2406.  
  2407.  
  2408.  
  2409.  
  2410.             #endregion
  2411.             #region better spawn trap
  2412.             if (Process_Handle("iw5mp"))
  2413.             {
  2414.                 #region text for the spawn tab thing
  2415.                 checkBox75.Text = ReadString(player1, 16);
  2416.                 checkBox76.Text = ReadString(player2, 16);
  2417.                 checkBox77.Text = ReadString(player3, 16);
  2418.                 checkBox78.Text = ReadString(player4, 16);
  2419.                 checkBox79.Text = ReadString(player5, 16);
  2420.                 checkBox80.Text = ReadString(player6, 16);
  2421.                 checkBox74.Text = ReadString(player7, 16);
  2422.                 checkBox73.Text = ReadString(player8, 16);
  2423.                 checkBox71.Text = ReadString(player9, 16);
  2424.                 checkBox70.Text = ReadString(player10, 16);
  2425.                 checkBox69.Text = ReadString(player11, 16);
  2426.                 checkBox72.Text = ReadString(player12, 16);
  2427.                 #endregion
  2428.  
  2429.  
  2430.                 if (checkBox75.Checked == true)
  2431.                 {
  2432.                     WriteFloat(xBaseAddress + (p1 * cordsSize), Convert.ToSingle(textBox47.Text));//p[layer 1
  2433.                     WriteFloat(yBaseAddress + (p1 * cordsSize), Convert.ToSingle(textBox48.Text));
  2434.                     WriteFloat(zBaseAddress + (p1 * cordsSize), Convert.ToSingle(textBox49.Text));
  2435.                 }
  2436.  
  2437.                 if(checkBox76.Checked == true)
  2438.                 {
  2439.                     WriteFloat(xBaseAddress + (p2 * cordsSize), Convert.ToSingle(textBox47.Text));//player 2
  2440.                     WriteFloat(yBaseAddress + (p2 * cordsSize), Convert.ToSingle(textBox48.Text));
  2441.                     WriteFloat(zBaseAddress + (p2 * cordsSize), Convert.ToSingle(textBox49.Text));
  2442.                 }
  2443.  
  2444.                 if (checkBox77.Checked == true)
  2445.                 {
  2446.                     WriteFloat(xBaseAddress + (p3 * cordsSize), Convert.ToSingle(textBox47.Text));//player 3
  2447.                     WriteFloat(yBaseAddress + (p3 * cordsSize), Convert.ToSingle(textBox48.Text));
  2448.                     WriteFloat(zBaseAddress + (p3 * cordsSize), Convert.ToSingle(textBox49.Text));
  2449.                 }
  2450.  
  2451.                 if (checkBox78.Checked == true)
  2452.                 {
  2453.                     WriteFloat(xBaseAddress + (p4 * cordsSize), Convert.ToSingle(textBox47.Text));//player 4
  2454.                     WriteFloat(yBaseAddress + (p4 * cordsSize), Convert.ToSingle(textBox48.Text));
  2455.                     WriteFloat(zBaseAddress + (p4 * cordsSize), Convert.ToSingle(textBox49.Text));
  2456.                 }
  2457.  
  2458.                 if (checkBox79.Checked == true)
  2459.                 {
  2460.                     WriteFloat(xBaseAddress + (p5 * cordsSize), Convert.ToSingle(textBox47.Text));//player 5
  2461.                     WriteFloat(yBaseAddress + (p5 * cordsSize), Convert.ToSingle(textBox48.Text));
  2462.                     WriteFloat(zBaseAddress + (p5 * cordsSize), Convert.ToSingle(textBox49.Text));
  2463.                 }
  2464.  
  2465.                 if (checkBox80.Checked == true)
  2466.                 {
  2467.                     WriteFloat(xBaseAddress + (p6 * cordsSize), Convert.ToSingle(textBox47.Text));//player 6
  2468.                     WriteFloat(yBaseAddress + (p6 * cordsSize), Convert.ToSingle(textBox48.Text));
  2469.                     WriteFloat(zBaseAddress + (p6 * cordsSize), Convert.ToSingle(textBox49.Text));
  2470.                 }
  2471.  
  2472.                 if (checkBox74.Checked == true)
  2473.                 {
  2474.                     WriteFloat(xBaseAddress + (p7 * cordsSize), Convert.ToSingle(textBox47.Text));//player 7
  2475.                     WriteFloat(yBaseAddress + (p7 * cordsSize), Convert.ToSingle(textBox48.Text));
  2476.                     WriteFloat(zBaseAddress + (p7 * cordsSize), Convert.ToSingle(textBox49.Text));
  2477.                 }
  2478.  
  2479.                 if (checkBox73.Checked == true)
  2480.                 {
  2481.                     WriteFloat(xBaseAddress + (p8 * cordsSize), Convert.ToSingle(textBox47.Text));//player 8
  2482.                     WriteFloat(yBaseAddress + (p8 * cordsSize), Convert.ToSingle(textBox48.Text));
  2483.                     WriteFloat(zBaseAddress + (p8 * cordsSize), Convert.ToSingle(textBox49.Text));
  2484.                 }
  2485.  
  2486.                 if (checkBox71.Checked == true)
  2487.                 {
  2488.                     WriteFloat(xBaseAddress + (p9 * cordsSize), Convert.ToSingle(textBox47.Text));//player 9
  2489.                     WriteFloat(yBaseAddress + (p9 * cordsSize), Convert.ToSingle(textBox48.Text));
  2490.                     WriteFloat(zBaseAddress + (p9 * cordsSize), Convert.ToSingle(textBox49.Text));
  2491.                 }
  2492.  
  2493.                 if (checkBox70.Checked == true)
  2494.                 {
  2495.                     WriteFloat(xBaseAddress + (p10 * cordsSize), Convert.ToSingle(textBox47.Text));//player 10
  2496.                     WriteFloat(yBaseAddress + (p10 * cordsSize), Convert.ToSingle(textBox48.Text));
  2497.                     WriteFloat(zBaseAddress + (p10 * cordsSize), Convert.ToSingle(textBox49.Text));
  2498.                 }
  2499.  
  2500.                 if (checkBox69.Checked == true)
  2501.                 {
  2502.                     WriteFloat(xBaseAddress + (p11 * cordsSize), Convert.ToSingle(textBox47.Text));//player 11
  2503.                     WriteFloat(yBaseAddress + (p11 * cordsSize), Convert.ToSingle(textBox48.Text));
  2504.                     WriteFloat(zBaseAddress + (p11 * cordsSize), Convert.ToSingle(textBox49.Text));
  2505.                 }
  2506.  
  2507.                 if (checkBox72.Checked == true)
  2508.                 {
  2509.                     WriteFloat(xBaseAddress + (p12 * cordsSize), Convert.ToSingle(textBox47.Text));//player 12
  2510.                     WriteFloat(yBaseAddress + (p12 * cordsSize), Convert.ToSingle(textBox48.Text));
  2511.                     WriteFloat(zBaseAddress + (p12 * cordsSize), Convert.ToSingle(textBox49.Text));
  2512.                 }
  2513.             }
  2514.             #endregion
  2515.             #region force host
  2516.  
  2517.             if (forcehoston_off == 1)
  2518.             {
  2519.                 if(Process_Handle("iw5mp"))
  2520.                 {
  2521.                     WriteInteger(int.Parse(ReadInteger(0x0140F1A4).ToString("x"), System.Globalization.NumberStyles.HexNumber) + 0xC, 1);
  2522.                 }
  2523.             }
  2524.  
  2525.             #endregion
  2526.             #region spam chat thing
  2527.             if (CHAT_SPAM_ON_OFF == true)//makes sure t he check box is checked
  2528.             {
  2529.                 if(Process_Handle("iw5mp"))//checks that the game is open
  2530.                 {
  2531.                     if(ReadInteger(0x9DC3B0) > 1)//checks if your ingame
  2532.                     {
  2533.                         if (GetAsyncKeyState(Keys.F1) == -32767)//-32767// this is the hotkey
  2534.                         {
  2535.                             SendKeys.Send("t " + ":: {^}6 Eithan {^}5Is {^}3Bae" + "{ENTER}");
  2536.                         }
  2537.  
  2538.                         if (GetAsyncKeyState(Keys.F2) == -32767)//-32767// this is the hotkey
  2539.                         {
  2540.                             SendKeys.Send("t : {^}6g{^}3g {ENTER}");
  2541.                         }
  2542.                     }
  2543.                 }
  2544.             }
  2545.             #endregion
  2546.             #region check if open thing!
  2547.             bool check_connection = System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();
  2548.  
  2549.             if (check_connection == true)
  2550.                 label150.Text = "True.";
  2551.             else
  2552.                 label150.Text = "False";
  2553.  
  2554.  
  2555.             if (Process_Handle("iw5mp"))
  2556.             {
  2557.                 label62.Text = ReadString(mapname, 20);
  2558.                 WriteInteger(0x1406A2B, 1);
  2559.             }
  2560.             else
  2561.             {
  2562.                 //label3.Text = "No";
  2563.                 label62.Text = "MW3 Not Found!";
  2564.             }
  2565.  
  2566.             if (Process_Handle("iw5mp"))
  2567.             {
  2568.                 if (ReadInteger(0x9DC3B0) == 0)
  2569.                 {
  2570.                     label28.Text = "No";
  2571.                 }
  2572.                 if (ReadInteger(0x9DC3B0) > 1)
  2573.                 {
  2574.                     label28.Text = "Yes";
  2575.                 }
  2576.  
  2577.             }
  2578.             #endregion
  2579.             #region trigger finger
  2580.             if (checkBox67.Checked == true)
  2581.             {
  2582.                 if(Process_Handle("iw5mp"))
  2583.                 {
  2584.                     if (ReadInteger(IF_IN_LOBBY) > 1)
  2585.                     {
  2586.                         if (GetAsyncKeyState(Keys.X) == -32767)//-32767
  2587.                         {
  2588.                             SendKeys.Send("{L}");
  2589.                         }
  2590.                     }
  2591.                 }
  2592.             }
  2593.             #endregion
  2594.             #region hotkeys
  2595.  
  2596.             if (GetAsyncKeyState(Keys.F1) == -32767)//-32767
  2597.             {
  2598.             //    MessageBox.Show("F10 was pressed.", "F10", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
  2599.             }
  2600.  
  2601.             if (GetAsyncKeyState(Keys.F3) == -32767)//-32767
  2602.             {
  2603.                 checkBox5.Checked = true;
  2604.             }
  2605.  
  2606.             if (GetAsyncKeyState(Keys.F4) == -32767)//-32767
  2607.             {
  2608.                 checkBox5.Checked = false;
  2609.             }
  2610.  
  2611.             if (Process_Handle("iw5mp"))
  2612.             {
  2613.                 if (GetAsyncKeyState(Keys.F5) == -32767)//-32767
  2614.                 {
  2615.                     if ((int)numericUpDown10.Value == 0)
  2616.                         WriteInteger(NOCLIP_BASE_ADRESS + (0 * NOCLIP_SIZE), 0);//player 1
  2617.  
  2618.                     if ((int)numericUpDown10.Value == 1)
  2619.                         WriteInteger(NOCLIP_BASE_ADRESS + (1 * NOCLIP_SIZE), 0);//player 2
  2620.  
  2621.                     if ((int)numericUpDown10.Value == 2)
  2622.                         WriteInteger(NOCLIP_BASE_ADRESS + (2 * NOCLIP_SIZE), 0);//player 3
  2623.  
  2624.                     if ((int)numericUpDown10.Value == 3)
  2625.                         WriteInteger(NOCLIP_BASE_ADRESS + (3 * NOCLIP_SIZE), 0);//player 4
  2626.  
  2627.                     if ((int)numericUpDown10.Value == 4)
  2628.                         WriteInteger(NOCLIP_BASE_ADRESS + (4 * NOCLIP_SIZE), 0);//player 5
  2629.  
  2630.                     if ((int)numericUpDown10.Value == 5)
  2631.                         WriteInteger(NOCLIP_BASE_ADRESS + (5 * NOCLIP_SIZE), 0);//player 6
  2632.  
  2633.                     if ((int)numericUpDown10.Value == 6)
  2634.                         WriteInteger(NOCLIP_BASE_ADRESS + (6 * NOCLIP_SIZE), 0);//player 7
  2635.  
  2636.                     if ((int)numericUpDown10.Value == 7)
  2637.                         WriteInteger(NOCLIP_BASE_ADRESS + (7 * NOCLIP_SIZE), 0);//player 8
  2638.  
  2639.                     if ((int)numericUpDown10.Value == 8)
  2640.                         WriteInteger(NOCLIP_BASE_ADRESS + (8 * NOCLIP_SIZE), 0);//player 9
  2641.  
  2642.                     if ((int)numericUpDown10.Value == 9)
  2643.                         WriteInteger(NOCLIP_BASE_ADRESS + (9 * NOCLIP_SIZE), 0);//player 10
  2644.  
  2645.                     if ((int)numericUpDown10.Value == 10)
  2646.                         WriteInteger(NOCLIP_BASE_ADRESS + (10 * NOCLIP_SIZE), 0);//player 11
  2647.  
  2648.                     if ((int)numericUpDown10.Value == 11)
  2649.                         WriteInteger(NOCLIP_BASE_ADRESS + (11 * NOCLIP_SIZE), 0);//player 12
  2650.                 }
  2651.             }
  2652.  
  2653.             if(Process_Handle("iw5mp"))
  2654.             {
  2655.                 if (GetAsyncKeyState(Keys.F6) == -32767)//-32767
  2656.                 {
  2657.                     if ((int)numericUpDown10.Value == 0)
  2658.                         WriteInteger(NOCLIP_BASE_ADRESS + (0 * NOCLIP_SIZE), 2);//player 1
  2659.  
  2660.                     if ((int)numericUpDown10.Value == 1)
  2661.                         WriteInteger(NOCLIP_BASE_ADRESS + (1 * NOCLIP_SIZE), 2);//player 2
  2662.  
  2663.                     if ((int)numericUpDown10.Value == 2)
  2664.                         WriteInteger(NOCLIP_BASE_ADRESS + (2 * NOCLIP_SIZE), 2);//player 3
  2665.  
  2666.                     if ((int)numericUpDown10.Value == 3)
  2667.                         WriteInteger(NOCLIP_BASE_ADRESS + (3 * NOCLIP_SIZE), 2);//player 4
  2668.  
  2669.                     if ((int)numericUpDown10.Value == 4)
  2670.                         WriteInteger(NOCLIP_BASE_ADRESS + (4 * NOCLIP_SIZE), 2);//player 5
  2671.  
  2672.                     if ((int)numericUpDown10.Value == 5)
  2673.                         WriteInteger(NOCLIP_BASE_ADRESS + (5 * NOCLIP_SIZE), 2);//player 6
  2674.  
  2675.                     if ((int)numericUpDown10.Value == 6)
  2676.                         WriteInteger(NOCLIP_BASE_ADRESS + (6 * NOCLIP_SIZE), 2);//player 7
  2677.  
  2678.                     if ((int)numericUpDown10.Value == 7)
  2679.                         WriteInteger(NOCLIP_BASE_ADRESS + (7 * NOCLIP_SIZE), 2);//player 8
  2680.  
  2681.                     if ((int)numericUpDown10.Value == 8)
  2682.                         WriteInteger(NOCLIP_BASE_ADRESS + (8 * NOCLIP_SIZE), 2);//player 9
  2683.  
  2684.                     if ((int)numericUpDown10.Value == 9)
  2685.                         WriteInteger(NOCLIP_BASE_ADRESS + (9 * NOCLIP_SIZE), 2);//player 10
  2686.  
  2687.                     if ((int)numericUpDown10.Value == 10)
  2688.                         WriteInteger(NOCLIP_BASE_ADRESS + (10 * NOCLIP_SIZE), 2);//player 11
  2689.  
  2690.                     if ((int)numericUpDown10.Value == 11)
  2691.                         WriteInteger(NOCLIP_BASE_ADRESS + (11 * NOCLIP_SIZE), 2);//player 12
  2692.                 }
  2693.             }
  2694.  
  2695.             #endregion
  2696.             #region close if mw3 not found NOT ACTIVE!
  2697.             if (Process_Handle("iw5mp"))
  2698.             {
  2699.                 label3.Text = "Yes";
  2700.             }
  2701.             else
  2702.             {
  2703.                 label3.Text = "No";
  2704.                 //timer1_god.Stop();
  2705.                 //MessageBox.Show("this app will close because mw3 was not found!", "closing!", MessageBoxButtons.OK, MessageBoxIcon.Error);
  2706.                 //Application.Exit();
  2707.             }
  2708.             #endregion
  2709.             #region spawn kill
  2710.             if (spawnkill == 1)
  2711.             {
  2712.                 if(Process_Handle("iw5mp"))
  2713.                 {
  2714.                     if(ReadString(player1) == ReadString(localid))
  2715.                     {
  2716.  
  2717.                     }
  2718.                     else
  2719.                     {
  2720.                        
  2721.                         WriteFloat(xBaseAddress + (p1 * coordsSize), Convert.ToSingle(textBoxX.Text));
  2722.                         WriteFloat(yBaseAddress + (p1 * coordsSize), Convert.ToSingle(textBoxY.Text));
  2723.                         WriteFloat(zBaseAddress + (p1 * coordsSize), Convert.ToSingle(textBoxZ.Text));
  2724.                     }
  2725.  
  2726.                     if (ReadString(player2) == ReadString(localid))
  2727.                     {
  2728.  
  2729.                     }
  2730.  
  2731.                     if (ReadString(player3) == ReadString(localid))
  2732.                     {
  2733.  
  2734.                     }
  2735.                     if (ReadString(player4) == ReadString(localid))
  2736.                     {
  2737.  
  2738.                     }
  2739.  
  2740.                     if (ReadString(player5) == ReadString(localid))
  2741.                     {
  2742.  
  2743.                     }
  2744.  
  2745.                     if (ReadString(player6) == ReadString(localid))
  2746.                     {
  2747.  
  2748.                     }
  2749.  
  2750.                     if (ReadString(player7) == ReadString(localid))
  2751.                     {
  2752.  
  2753.                     }
  2754.  
  2755.                     if (ReadString(player8) == ReadString(localid))
  2756.                     {
  2757.  
  2758.                     }
  2759.  
  2760.                     if (ReadString(player9) == ReadString(localid))
  2761.                     {
  2762.  
  2763.                     }
  2764.  
  2765.                     if (ReadString(player10) == ReadString(localid))
  2766.                     {
  2767.  
  2768.                     }
  2769.  
  2770.                     if (ReadString(player11) == ReadString(localid))
  2771.                     {
  2772.  
  2773.                     }
  2774.  
  2775.  
  2776.                     //
  2777.                 }
  2778.             }
  2779.             #endregion
  2780.             #region unlimited ammo
  2781.             if (Process_Handle("iw5mp"))
  2782.             {
  2783.                 if(checkBox56.Checked == true)
  2784.                 {
  2785.                     WriteInteger(ammoprimary + (0 * 0x38EC), 69);
  2786.                     WriteInteger(secondaryammo + (0 * 0x38EC), 69);//player 1
  2787.                 }
  2788.                 checkBox56.Text = ReadString(player1, 20);
  2789.  
  2790.                 if(checkBox57.Checked == true)
  2791.                 {
  2792.                     WriteInteger(ammoprimary + (1 * 0x38EC), 69);
  2793.                     WriteInteger(secondaryammo + (1 * 0x38EC), 69);//player 2
  2794.                 }
  2795.                 checkBox57.Text = ReadString(player2, 20);
  2796.  
  2797.                 if(checkBox59.Checked == true)
  2798.                 {
  2799.                     WriteInteger(ammoprimary + (2 * 0x38EC), 69);
  2800.                     WriteInteger(secondaryammo + (2 * 0x38EC), 69);//player 3
  2801.                 }
  2802.                 checkBox59.Text = ReadString(player3, 20);
  2803.  
  2804.                 if(checkBox62.Checked == true)
  2805.                 {
  2806.                     WriteInteger(ammoprimary + (3 * 0x38EC), 69);
  2807.                     WriteInteger(secondaryammo + (3 * 0x38EC), 69);//player 4
  2808.                 }
  2809.                 checkBox62.Text = ReadString(player4, 20);
  2810.  
  2811.                 if(checkBox65.Checked == true)
  2812.                 {
  2813.                     WriteInteger(ammoprimary + (4 * 0x38EC), 69);
  2814.                     WriteInteger(secondaryammo + (4 * 0x38EC), 69);//player 5
  2815.                 }
  2816.                 checkBox65.Text = ReadString(player5, 20);
  2817.  
  2818.                 if(checkBox66.Checked == true)
  2819.                 {
  2820.                     WriteInteger(ammoprimary + (5 * 0x38EC), 69);
  2821.                     WriteInteger(secondaryammo + (5 * 0x38EC), 69);//player 6
  2822.                 }
  2823.                 checkBox66.Text = ReadString(player6, 20);
  2824.  
  2825.                 if(checkBox64.Checked == true)
  2826.                 {
  2827.                     WriteInteger(ammoprimary + (6 * 0x38EC), 69);
  2828.                     WriteInteger(secondaryammo + (6 * 0x38EC), 69);//player 7
  2829.                 }
  2830.                 checkBox64.Text = ReadString(player7, 20);
  2831.  
  2832.                 if(checkBox63.Checked == true)
  2833.                 {
  2834.                     WriteInteger(ammoprimary + (7 * 0x38EC), 69);
  2835.                     WriteInteger(secondaryammo + (7 * 0x38EC), 69);//player 8
  2836.                 }
  2837.                 checkBox63.Text = ReadString(player8, 20);
  2838.  
  2839.                 if(checkBox61.Checked == true)
  2840.                 {
  2841.                     WriteInteger(ammoprimary + (8 * 0x38EC), 69);
  2842.                     WriteInteger(secondaryammo + (8 * 0x38EC), 69);//player 9
  2843.                 }
  2844.                 checkBox61.Text = ReadString(player9, 20);
  2845.  
  2846.                 if(checkBox60.Checked == true)
  2847.                 {
  2848.                     WriteInteger(ammoprimary + (9 * 0x38EC), 69);
  2849.                     WriteInteger(secondaryammo + (9 * 0x38EC), 69);//paleyr 10
  2850.                 }
  2851.                 checkBox60.Text = ReadString(player10, 20);
  2852.  
  2853.                 if(checkBox58.Checked == true)
  2854.                 {
  2855.                     WriteInteger(ammoprimary + (10 * 0x38EC), 69);
  2856.                     WriteInteger(secondaryammo + (10 * 0x38EC), 69);//player 11
  2857.                 }
  2858.                 checkBox58.Text = ReadString(player11, 20);
  2859.  
  2860.                 if(checkBox55.Checked == true)
  2861.                 {
  2862.                     WriteInteger(ammoprimary + (11 * 0x38EC), 69);
  2863.                     WriteInteger(secondaryammo + (11 * 0x38EC), 69);//player 12
  2864.                 }
  2865.                 checkBox55.Text = ReadString(player12, 20);
  2866.             }
  2867.             #endregion
  2868.             #region name rend gen
  2869.             if (namegenon_off == 1)
  2870.             {
  2871.                 char[] letters = "QWERTYUIOPASDFGHJKLZXCVBNM1234567890".ToCharArray();
  2872.                 Random r = new Random();
  2873.                 string namegen = "";
  2874.                 for (int i = 0; i < 10; i++)
  2875.                 {
  2876.                     namegen += letters[r.Next(0, 35)].ToString();
  2877.                 }
  2878.                 NameFaker namefake = new NameFaker(namegen);
  2879.             }
  2880.             #endregion
  2881.             #region random clan tag
  2882.             if (randomclantagtext == 1)
  2883.             {
  2884.                 char[] letters = "QWERTYUIOPASDFGHJKLZXCVBNM1234567890".ToCharArray();
  2885.                 Random r = new Random();
  2886.                 string randomeString = "";
  2887.                 for (int i = 0; i < 4; i++)
  2888.                 {
  2889.                     randomeString += letters[r.Next(0, 35)].ToString();
  2890.                 }
  2891.                 WriteString(CLAN_TAG_TEXT, randomeString);
  2892.             }
  2893.             #endregion
  2894.             #region //red boxes!
  2895.             if ((redboxesonoff == 0) && (Process_Handle("iw5mp")))
  2896.             {//off
  2897.                 WriteBytes(Redboxes, off);
  2898.             }
  2899.  
  2900.             if ((redboxesonoff == 1) && (Process_Handle("iw5mp")))
  2901.             {//redboxes
  2902.                 WriteBytes(Redboxes, redBox);
  2903.             }
  2904.  
  2905.             if ((redboxesonoff == 2) && (Process_Handle("iw5mp")))
  2906.             {//thermal
  2907.                 WriteBytes(Redboxes, thermal);
  2908.             }
  2909.  
  2910.             if ((redboxesonoff == 3) && (Process_Handle("iw5mp")))
  2911.             {//both
  2912.                 WriteBytes(Redboxes, redBoxThermal);
  2913.             }
  2914.             #endregion
  2915.             #region draw ping
  2916.             if (checkBox6.Checked == true)//draw ping
  2917.             {
  2918.                 if(Process_Handle("iw5mp"))//draw ping
  2919.                 {
  2920.                     WriteInteger(0x05AC8A38, 0);
  2921.                     WriteFloat(0xBE8EEC, 1);//draw ping
  2922.                 }
  2923.             }
  2924.             #endregion
  2925.             #region i dont know atm
  2926.             if (spawntrapdome == 1)
  2927.             {
  2928.                 for (int room1 = 0; room1 != 12; room1++)
  2929.                 {
  2930.                     WriteFloat(yBaseAddress + (room1 * coordsSize), -400);
  2931.                     WriteFloat(xBaseAddress + (room1 * coordsSize), 0);
  2932.                     WriteFloat(zBaseAddress + (room1 * coordsSize), 0);
  2933.                 }
  2934.             }
  2935.             #endregion
  2936.             #region chat console
  2937.             if (CHATON_OFF == 1)
  2938.             {
  2939.                 if (Process_Handle("iw5mp"))
  2940.                 {
  2941.                     label26.Text = ReadString(chattext, 10);
  2942.                     //player 1
  2943.                     //
  2944.                     //
  2945.                    
  2946.  
  2947.                     if (label26.Text == "!p1")
  2948.                     {
  2949.                         checkBox12.Checked = true;
  2950.                     }
  2951.  
  2952.                     if (label26.Text == "!/p1")
  2953.                     {
  2954.                         checkBox12.Checked = false;
  2955.                     }
  2956.                     //player 2
  2957.                     //
  2958.                     //
  2959.                     if (label26.Text == "!p2")
  2960.                     {
  2961.                         checkBox13.Checked = true;
  2962.                     }
  2963.  
  2964.                     if (label26.Text == "!/p2")
  2965.                     {
  2966.                         checkBox13.Checked = false;
  2967.                     }
  2968.                     //player 3
  2969.                     //
  2970.                     //
  2971.                     if (label26.Text == "!p3")
  2972.                     {
  2973.                         checkBox14.Checked = true;
  2974.                     }
  2975.  
  2976.                     if (label26.Text == "!/p3")
  2977.                     {
  2978.                         checkBox14.Checked = false;
  2979.                     }
  2980.                     //player 4
  2981.                     //
  2982.                     //
  2983.                     if (label26.Text == "!p4")
  2984.                     {
  2985.                         checkBox15.Checked = true;
  2986.                     }
  2987.  
  2988.                     if (label26.Text == "!/p4")
  2989.                     {
  2990.                         checkBox15.Checked = false;
  2991.                     }
  2992.                     //player 5
  2993.                     //
  2994.                     //
  2995.                     if (label26.Text == "!p5")
  2996.                     {
  2997.                         checkBox16.Checked = true;
  2998.                     }
  2999.  
  3000.                     if (label26.Text == "!/p5")
  3001.                     {
  3002.                         checkBox16.Checked = false;
  3003.                     }
  3004.                     //player 6
  3005.                     //
  3006.                     //
  3007.                     if (label26.Text == "!p6")
  3008.                     {
  3009.                         checkBox17.Checked = true;
  3010.                     }
  3011.  
  3012.                     if (label26.Text == "!/p6")
  3013.                     {
  3014.                         checkBox17.Checked = false;
  3015.                     }
  3016.                     // player 7
  3017.                     //
  3018.                     //
  3019.                     if (label26.Text == "!p7")
  3020.                     {
  3021.                         checkBox18.Checked = true;
  3022.                     }
  3023.  
  3024.                     if (label26.Text == "!/p7")
  3025.                     {
  3026.                         checkBox18.Checked = false;
  3027.                     }
  3028.                     // player 8
  3029.                     //
  3030.                     //
  3031.                     if (label26.Text == "!p8")
  3032.                     {
  3033.                         checkBox19.Checked = true;
  3034.                     }
  3035.  
  3036.                     if (label26.Text == "!/p8")
  3037.                     {
  3038.                         checkBox19.Checked = false;
  3039.                     }
  3040.                     // player 9
  3041.                     //
  3042.                     //
  3043.                     if (label26.Text == "!p9")
  3044.                     {
  3045.                         checkBox20.Checked = true;
  3046.                     }
  3047.  
  3048.                     if (label26.Text == "!/p9")
  3049.                     {
  3050.                         checkBox20.Checked = false;
  3051.                     }
  3052.                     // player 10
  3053.                     //
  3054.                     //
  3055.                     if (label26.Text == "!p10")
  3056.                     {
  3057.                         checkBox21.Checked = true;
  3058.                     }
  3059.  
  3060.                     if (label26.Text == "!/p10")
  3061.                     {
  3062.                         checkBox21.Checked = false;
  3063.                     }
  3064.  
  3065.                     // player 11
  3066.                     //
  3067.                     //
  3068.                     if (label26.Text == "!p11")
  3069.                     {
  3070.                         checkBox22.Checked = true;
  3071.                     }
  3072.  
  3073.                     if (label26.Text == "!/p11")
  3074.                     {
  3075.                         checkBox22.Checked = false;
  3076.                     }
  3077.                     // player 12
  3078.                     //
  3079.                     //
  3080.                     if (label26.Text == "!p12")
  3081.                     {
  3082.                         checkBox23.Checked = true;
  3083.                     }
  3084.  
  3085.                     if (label26.Text == "!/p12")
  3086.                     {
  3087.                         checkBox23.Checked = false;
  3088.                     }
  3089.                 }
  3090.                 }
  3091.                 else
  3092.                     CHATON_OFF = 0;
  3093.             #endregion
  3094.             #region for the title
  3095.             if (Process_Handle("iw5mp"))
  3096.             {
  3097.                 forthetitlemyanem++;
  3098.                 if (forthetitlemyanem == 0)
  3099.                 {
  3100.                     this.Text = "E";
  3101.                 }
  3102.  
  3103.                 if (forthetitlemyanem == 1)
  3104.                 {
  3105.                     this.Text = "Ei";
  3106.                 }
  3107.  
  3108.                 if (forthetitlemyanem == 2)
  3109.                 {
  3110.                     this.Text = "Eit";
  3111.                 }
  3112.  
  3113.                 if (forthetitlemyanem == 3)
  3114.                 {
  3115.                     this.Text = "Eith";
  3116.                 }
  3117.  
  3118.                 if (forthetitlemyanem == 4)
  3119.                 {
  3120.                     this.Text = "Eitha";
  3121.                 }
  3122.  
  3123.                 if (forthetitlemyanem == 5)
  3124.                 {
  3125.                     this.Text = "Eithan";
  3126.                 }
  3127.  
  3128.                 if (forthetitlemyanem == 6)
  3129.                 {
  3130.                     this.Text = "Eithan i";
  3131.                 }
  3132.  
  3133.                 if (forthetitlemyanem == 6)
  3134.                 {
  3135.                     this.Text = "Eithan is";
  3136.                 }
  3137.  
  3138.                 if (forthetitlemyanem == 7)
  3139.                 {
  3140.                     this.Text = "Eithan is h";
  3141.                 }
  3142.  
  3143.                 if (forthetitlemyanem == 8)
  3144.                 {
  3145.                     this.Text = "Eithan is ho";
  3146.                 }
  3147.  
  3148.                 if (forthetitlemyanem == 9)
  3149.                 {
  3150.                     this.Text = "Eithan is hot";
  3151.                 }
  3152.                 if (forthetitlemyanem == 10)
  3153.                 {
  3154.                     this.Text = "Eithan is hot!!";
  3155.                     //Thread.Sleep(100);
  3156.                     forthetitlemyanem = 0;
  3157.                 }
  3158.             }
  3159.             else
  3160.             {
  3161.                if(Process_Handle("iw5sp"))
  3162.                {
  3163.                    this.Text = "Open Mw3 MP Not Mw3 SP ;(";
  3164.                }
  3165.                else
  3166.                {
  3167.                    titleha++;
  3168.                    if (titleha > 3)
  3169.                    {
  3170.                        titleha = 0;
  3171.                    }
  3172.  
  3173.                    if (titleha == 0)
  3174.                    {
  3175.                        this.Text = "Open Mw3.";
  3176.                    }
  3177.  
  3178.                    if (titleha == 1)
  3179.                    {
  3180.                        this.Text = "Open Mw3..";
  3181.                    }
  3182.  
  3183.                    if (titleha == 2)
  3184.                    {
  3185.                        this.Text = "Open Mw3...";
  3186.                    }
  3187.  
  3188.                    if (titleha == 3)
  3189.                    {
  3190.                        this.Text = "Open Mw3";
  3191.                    }
  3192.                }
  3193.             }
  3194.             #endregion
  3195.             #region godmode thing
  3196.             if ((checkBox36.Checked == true) && (Process_Handle("iw5mp")))
  3197.             {
  3198.                 WriteInteger(0x1B42444 + (0 * 0x274), 9999);//player 1
  3199.             }
  3200.  
  3201.             if ((checkBox37.Checked == true) && (Process_Handle("iw5mp")))
  3202.             {
  3203.                 WriteInteger(0x1B42444 + (1 * 0x274), 9999);//player 2
  3204.             }
  3205.  
  3206.             if ((checkBox38.Checked == true) && (Process_Handle("iw5mp")))
  3207.             {
  3208.                 WriteInteger(0x1B42444 + (2 * 0x274), 9999);//player 3
  3209.             }
  3210.  
  3211.             if ((checkBox39.Checked == true) && (Process_Handle("iw5mp")))
  3212.             {
  3213.                 WriteInteger(0x1B42444 + (3 * 0x274), 9999);//player 4
  3214.             }
  3215.  
  3216.             if ((checkBox41.Checked == true) && (Process_Handle("iw5mp")))
  3217.             {
  3218.                 WriteInteger(0x1B42444 + (4 * 0x274), 9999);//player 5
  3219.             }
  3220.  
  3221.             if ((checkBox42.Checked == true) && (Process_Handle("iw5mp")))
  3222.             {
  3223.                 WriteInteger(0x1B42444 + (5 * 0x274), 9999);//player 6
  3224.             }
  3225.  
  3226.             if ((checkBox44.Checked == true) && (Process_Handle("iw5mp")))
  3227.             {
  3228.                 WriteInteger(0x1B42444 + (6 * 0x274), 9999);//player 7
  3229.             }
  3230.  
  3231.             if ((checkBox45.Checked == true) && Process_Handle("iw5mp"))
  3232.             {
  3233.                 WriteInteger(0x1B42444 + (7 * 0x274), 9999);//player 8
  3234.             }
  3235.  
  3236.             if ((checkBox46.Checked == true) && (Process_Handle("iw5mp")))
  3237.             {
  3238.                 WriteInteger(0x1B42444 + (8 * 0x274), 9999);//player 9
  3239.             }
  3240.  
  3241.             if ((checkBox47.Checked == true) && (Process_Handle("iw5mp")))
  3242.             {
  3243.                 WriteInteger(0x1B42444 + (9 * 0x274), 9999);//player 10
  3244.             }
  3245.  
  3246.             if ((checkBox48.Checked == true) && Process_Handle("iw5mp"))
  3247.             {
  3248.                 WriteInteger(0x1B42444 + (10 * 0x274), 9999);//player 11
  3249.             }
  3250.  
  3251.             if ((checkBox49.Checked == true) && Process_Handle("iw5mp"))
  3252.             {
  3253.                 WriteInteger(0x1B42444 + (11 * 0x274), 9999);//player 12
  3254.             }
  3255.             #endregion
  3256.             #region name thing
  3257.             if (Process_Handle("iw5mp"))
  3258.             {
  3259.                 checkBox36.Text = ReadString(player1, 16);//player 1
  3260.                 checkBox37.Text = ReadString(player2, 16);//player 2
  3261.                 checkBox38.Text = ReadString(player3, 16);//player 3
  3262.                 checkBox39.Text = ReadString(player4, 16);//player 4
  3263.                 checkBox41.Text = ReadString(player5, 16);//player 5
  3264.                 checkBox42.Text = ReadString(player6, 16);//player 6
  3265.                 checkBox44.Text = ReadString(player7, 16);//player 7
  3266.                 checkBox45.Text = ReadString(player8, 16);//player 8
  3267.                 checkBox46.Text = ReadString(player9, 16);//player 9
  3268.                 checkBox47.Text = ReadString(player10, 16);//player 10
  3269.                 checkBox48.Text = ReadString(player11, 16);//player 11
  3270.                 checkBox49.Text = ReadString(player12, 16);//player 12
  3271.             }
  3272.             else
  3273.             {
  3274.                 checkBox36.Text = "Open Mw3.";
  3275.                 checkBox37.Text = "Open Mw3.";
  3276.                 checkBox38.Text = "Open Mw3.";
  3277.                 checkBox39.Text = "Open Mw3.";
  3278.                 checkBox41.Text = "Open Mw3.";
  3279.                 checkBox42.Text = "Open Mw3.";
  3280.                 checkBox44.Text = "Open Mw3.";
  3281.                 checkBox45.Text = "Open Mw3.";
  3282.                 checkBox46.Text = "Open Mw3.";
  3283.                 checkBox47.Text = "Open Mw3.";
  3284.                 checkBox48.Text = "Open Mw3.";
  3285.                 checkBox49.Text = "Open Mw3.";
  3286.             }
  3287.             #endregion
  3288.         }
  3289.  
  3290.         private void button12_Click(object sender, EventArgs e)
  3291.         {
  3292.             if (numericUpDown1.Value == 0)
  3293.             {
  3294.                 MessageBox.Show("please select a number.");
  3295.             }
  3296.  
  3297.             #region bypass death barriers
  3298.             if ((numericUpDown1.Value == 1) && (Process_Handle("iw5mp")))
  3299.             {
  3300.                 WriteInteger(0x1B42444 + (0 * 0x274), -1);//player 1
  3301.             }
  3302.  
  3303.             if ((numericUpDown1.Value == 2) && (Process_Handle("iw5mp")))
  3304.             {
  3305.                 WriteInteger(0x1B42444 + (1 * 0x274), -1);//player 2
  3306.             }
  3307.  
  3308.             if ((numericUpDown1.Value == 3) && (Process_Handle("iw5mp")))
  3309.             {
  3310.                 WriteInteger(0x1B42444 + (2 * 0x274), -1);//player 3
  3311.             }
  3312.  
  3313.             if ((numericUpDown1.Value == 4) && (Process_Handle("iw5mp")))
  3314.             {
  3315.                 WriteInteger(0x1B42444 + (3 * 0x274), -1);//player 4
  3316.             }
  3317.  
  3318.             if ((numericUpDown1.Value == 5) && (Process_Handle("iw5mp")))
  3319.             {
  3320.                 WriteInteger(0x1B42444 + (4 * 0x274), -1);//player 5
  3321.             }
  3322.  
  3323.             if ((numericUpDown1.Value == 6) && (Process_Handle("iw5mp")))
  3324.             {
  3325.                 WriteInteger(0x1B42444 + (5 * 0x274), -1);//player 6
  3326.             }
  3327.  
  3328.             if ((numericUpDown1.Value == 7) && (Process_Handle("iw5mp")))
  3329.             {
  3330.                 WriteInteger(0x1B42444 + (6 * 0x274), -1);//player 7
  3331.             }
  3332.  
  3333.             if ((numericUpDown1.Value == 8) && (Process_Handle("iw5mp")))
  3334.             {
  3335.                 WriteInteger(0x1B42444 + (7 * 0x274), -1);//player 8
  3336.             }
  3337.  
  3338.             if ((numericUpDown1.Value == 9) && (Process_Handle("iw5mp")))
  3339.             {
  3340.                 WriteInteger(0x1B42444 + (8 * 0x274), -1);//player 9
  3341.             }
  3342.  
  3343.             if ((numericUpDown1.Value == 10) && (Process_Handle("iw5mp")))
  3344.             {
  3345.                 WriteInteger(0x1B42444 + (9 * 0x274), -1);//player 10
  3346.             }
  3347.  
  3348.             if ((numericUpDown1.Value == 11) && (Process_Handle("iw5mp")))
  3349.             {
  3350.                 WriteInteger(0x1B42444 + (10 * 0x274), -1);//player 11
  3351.             }
  3352.  
  3353.             if ((numericUpDown1.Value == 12) && (Process_Handle("iw5mp")))
  3354.             {
  3355.                 WriteInteger(0x1B42444 + (11 * 0x274), -1);//player 12
  3356.             }
  3357.             #endregion
  3358.         }
  3359.  
  3360.         private void button18_Click_1(object sender, EventArgs e)
  3361.         {
  3362.             MessageBox.Show("this is godmode but you will have a red screen", "<-->");
  3363.         }
  3364.  
  3365.         private void button47_Click(object sender, EventArgs e)
  3366.         {
  3367.             if (Process_Handle("iw5mp"))
  3368.             {
  3369.                 WriteFloat(0x9D7D7C, (float)numericUpDown2.Value);
  3370.             }
  3371.             else
  3372.                 MessageBox.Show("Help If you opened mw3", "lol");
  3373.         }
  3374.  
  3375.         private void button48_Click(object sender, EventArgs e)
  3376.         {
  3377.             MessageBox.Show("cg_hudChatPosition_DVarValue 0x5AB5060,                                                               cg_hudChatPosition_ExceptionAddr 0x5A8617,                                                             cg_hudChatPosition_ExceptionAddr 0x5A8617");
  3378.         }
  3379.  
  3380.         private void checkBox6_CheckedChanged(object sender, EventArgs e)
  3381.         {
  3382.             if(checkBox6.Checked == true)
  3383.             {//draw ping!
  3384.                 //WriteFloat(0xBE8EEC, 1);
  3385.             }
  3386.         }
  3387.  
  3388.         private void textBox14_TextChanged(object sender, EventArgs e)
  3389.         {
  3390.  
  3391.         }
  3392.  
  3393.         int textbox6int;
  3394.         int numeretingforintger;
  3395.         private void button49_Click(object sender, EventArgs e)
  3396.         {
  3397.             if (Process_Handle(textBox30.Text))
  3398.             {
  3399.                 textbox6int = Convert.ToInt32(textBox6.Text, 16);//converting the text box to a int
  3400.                 numeretingforintger = Convert.ToInt32(numericUpDown3.Value);//making the numeretic a int
  3401.                 WriteInteger(textbox6int, numeretingforintger);//adding the numereting updows and stuff togerher
  3402.             }
  3403.             else
  3404.                 MessageBox.Show("Mw3 Not Found.");
  3405.         }
  3406.  
  3407.  
  3408.         int wrintstring;
  3409.         private void button51_Click(object sender, EventArgs e)
  3410.         {
  3411.             if (Process_Handle(textBox30.Text))
  3412.             {
  3413.                 wrintstring = Convert.ToInt32(textBox29.Text, 16);//converting the text box to a int
  3414.  
  3415.                 WriteString(wrintstring, textBox31.Text);
  3416.             }
  3417.             else
  3418.                 MessageBox.Show("ERROR 9452");
  3419.         }
  3420.  
  3421.         //int fast_restary = 0x191HUE72; //83 EC 44 53 56 57 E8
  3422.         int score = 0;
  3423.         int fast_restart = 0;
  3424.         private void button10_Click(object sender, EventArgs e)
  3425.         {
  3426.             if(Process_Handle("iw5mp"))
  3427.             {
  3428.                 if(ReadInteger(score) == 7400)
  3429.                 {
  3430.                     WriteInteger(fast_restart, 1);//for auto fast_restart
  3431.                     fast_restart = 0;
  3432.                 }
  3433.             }
  3434.         }
  3435.  
  3436.         //int JUMP_HEIGHT = 0x0871508;
  3437.         private void button52_Click(object sender, EventArgs e)
  3438.         {
  3439.             if (Process_Handle("iw5mp"))
  3440.             {
  3441.                 checkBox4.Checked = false;
  3442.                 WriteFloat_Protected(jumpheight, (float)numericUpDown7.Value);
  3443.             }
  3444.             else
  3445.                 MessageBox.Show("Mw3 Not Found.!");
  3446.         }
  3447.  
  3448.         private void button53_Click(object sender, EventArgs e)
  3449.         {
  3450.             //Console.Beep(700, 300);
  3451.             //Load_Form formll = new Load_Form();
  3452.             //formll.Show();
  3453.             //this.Close();
  3454.             Application.Exit();
  3455.         }
  3456.  
  3457.         private void button54_Click(object sender, EventArgs e)
  3458.         {
  3459.             x_y_z_pic lolololol = new x_y_z_pic();
  3460.             lolololol.Show();
  3461.         }
  3462.  
  3463.         #region for the back shit
  3464.  
  3465.         int rand = 0;//0
  3466.         int rand2 = 0;//30
  3467.         int rand3 = 0;//100
  3468.         int loadinglabel = 0;
  3469.         private void timer1_Tick(object sender, EventArgs e)
  3470.         {
  3471.             label130.Text = rand.ToString();
  3472.             label146.Text = rand2.ToString();
  3473.             label147.Text = rand3.ToString();
  3474.  
  3475.             loadinglabel++;
  3476.             rand++;
  3477.             rand2++;
  3478.             rand3++;
  3479.             BackColor = Color.FromArgb(rand, rand2, rand3);
  3480.  
  3481.             if (rand == 150)
  3482.             {
  3483.                 rand = 0;
  3484.                 rand2 = 0;
  3485.                 rand3 = 0;
  3486.                 label130.Text = rand.ToString();
  3487.                 label146.Text = rand2.ToString();
  3488.                 label147.Text = rand3.ToString();
  3489.             }
  3490.  
  3491.             if (rand > 100)
  3492.             {
  3493.                 tabControl1.Visible = true;
  3494.                 button53.Visible = true;
  3495.             }
  3496.         }
  3497.         #endregion
  3498.  
  3499.         private void label57_Click(object sender, EventArgs e)
  3500.         {
  3501.             //dident mean to click
  3502.         }
  3503.  
  3504.         private void label130_Click(object sender, EventArgs e)
  3505.         {
  3506.             rand = 0;
  3507.             rand2 = 0;
  3508.             rand3 = 0;
  3509.             label130.Text = rand.ToString();
  3510.             label146.Text = rand2.ToString();
  3511.             label147.Text = rand3.ToString();
  3512.         }
  3513.  
  3514.         private void label148_Click(object sender, EventArgs e)
  3515.         {
  3516.             label130.Visible = true;
  3517.             label146.Visible = true;
  3518.             label147.Visible = true;
  3519.             label148.Visible = false;
  3520.         }
  3521.  
  3522.         private void checkBox25_CheckedChanged(object sender, EventArgs e)
  3523.         {
  3524.             if(checkBox25.Checked == true)
  3525.             {
  3526.                 if (Process_Handle("iw5mp"))
  3527.                 {
  3528.                     checkBox36.Checked = true;
  3529.                     checkBox37.Checked = true;
  3530.                     checkBox38.Checked = true;
  3531.                     checkBox39.Checked = true;
  3532.                     checkBox41.Checked = true;
  3533.                     checkBox42.Checked = true;
  3534.                     checkBox44.Checked = true;
  3535.                     checkBox45.Checked = true;
  3536.                     checkBox46.Checked = true;
  3537.                     checkBox47.Checked = true;
  3538.                     checkBox48.Checked = true;
  3539.                     checkBox49.Checked = true;
  3540.                 }
  3541.                 else
  3542.                     MessageBox.Show("You Should And Try Opening the game then it mite work!", "Open Mw3");
  3543.  
  3544.                 if(checkBox25.Checked == false)
  3545.                 {
  3546.                     if (Process_Handle("iw5mp"))
  3547.                     {
  3548.                         checkBox36.Checked = false;
  3549.                         checkBox37.Checked = false;
  3550.                         checkBox38.Checked = false;
  3551.                         checkBox39.Checked = false;
  3552.                         checkBox41.Checked = false;
  3553.                         checkBox42.Checked = false;
  3554.                         checkBox44.Checked = false;
  3555.                         checkBox45.Checked = false;
  3556.                         checkBox46.Checked = false;
  3557.                         checkBox47.Checked = false;
  3558.                         checkBox48.Checked = false;
  3559.                         checkBox49.Checked = false;
  3560.                     }
  3561.                     else
  3562.                         MessageBox.Show("Just Open Mw3 Simple Problem!", "Open Mw3");
  3563.                 }
  3564.             }
  3565.         }
  3566.  
  3567.         private void checkBox27_CheckedChanged(object sender, EventArgs e)
  3568.         {
  3569.             if(checkBox27.Checked == true)
  3570.             {
  3571.                 if (Process_Handle("iw5mp"))
  3572.                 {
  3573.                     WriteInteger(0x05AB31D8, 1);//3rd person
  3574.                 }
  3575.                 else
  3576.                     MessageBox.Show("Open Mw3 ");
  3577.             }
  3578.             if (checkBox27.Checked == false)
  3579.             {
  3580.                 if (Process_Handle("iw5mp"))
  3581.                 {
  3582.                     WriteInteger(0x05AB31D8, 0);
  3583.                 }
  3584.                 else
  3585.                     MessageBox.Show("Mw3 Not Found!!!");
  3586.             }
  3587.         }
  3588.  
  3589.         private void button60_Click(object sender, EventArgs e)
  3590.         {
  3591.            
  3592.         }
  3593.  
  3594.         private void checkBox40_CheckedChanged(object sender, EventArgs e)
  3595.         {
  3596.             if(checkBox40.Checked == true)
  3597.             {
  3598.                 if (Process_Handle("iw5mp"))
  3599.                 {
  3600.                     WriteFloat_Protected(jumpheight, 140);
  3601.                 }
  3602.                 else
  3603.                     MessageBox.Show("try and open Mw3 :P");
  3604.                
  3605.             }
  3606.  
  3607.             if(checkBox40.Checked == false)
  3608.             {
  3609.                 if (Process_Handle("iw5mp"))
  3610.                 {
  3611.                     WriteFloat_Protected(jumpheight, 39);
  3612.                 }
  3613.                 else
  3614.                     MessageBox.Show("try and open Mw3 :P");
  3615.             }
  3616.         }
  3617.  
  3618.         private void label150_Click(object sender, EventArgs e)
  3619.         {//dident mean to click it!\
  3620.  
  3621.         }
  3622.  
  3623.         int spawntrapdome = 0;
  3624.         private void checkBox50_CheckedChanged(object sender, EventArgs e)
  3625.         {
  3626.             if(checkBox50.Checked == true)
  3627.             {
  3628.                 spawntrapdome = 1;
  3629.             }
  3630.  
  3631.             if(checkBox50.Checked == false)
  3632.             {
  3633.                 spawntrapdome = 0;
  3634.             }
  3635.         }
  3636.  
  3637.         private void button63_Click(object sender, EventArgs e)
  3638.         {
  3639.             if (Process_Handle("iw5mp"))
  3640.             {
  3641.                 WriteString(0x52CAD0, "HEY.");
  3642.             }
  3643.             else
  3644.                 MessageBox.Show("Call Of duty Mw3 Not Found.", "Open Mw3");
  3645.         }
  3646.  
  3647.         int clantagupthing = 0;
  3648.         int clantagonoff = 0;
  3649.         private void checkBox51_CheckedChanged(object sender, EventArgs e)
  3650.         {
  3651.             if(checkBox51.Checked == true)
  3652.             {
  3653.                 clantagonoff = 1;
  3654.             }
  3655.  
  3656.             if(checkBox51.Checked == false)
  3657.             {
  3658.                 clantagonoff = 0;
  3659.             }
  3660.         }
  3661.  
  3662.         int textbox13int;
  3663.         int num4;
  3664.         private void button50_Click_1(object sender, EventArgs e)
  3665.         {
  3666.             if (Process_Handle(textBox30.Text))
  3667.             {
  3668.                 textbox13int = Convert.ToInt32(textBox13.Text);//converting the text box to a int
  3669.                 num4 = Convert.ToInt32(numericUpDown4.Value);//making the numeretic a int
  3670.  
  3671.                 WriteFloat(textbox13int, num4);
  3672.             }
  3673.             else
  3674.                 MessageBox.Show("Error 3452", "lazy person!");
  3675.         }
  3676.  
  3677.         int clantagcycle_on_off_new = 0;
  3678.         int clantagcycle_title_new = 0;
  3679.         private void checkBox52_CheckedChanged(object sender, EventArgs e)
  3680.         {
  3681.             if(checkBox52.Checked == true)
  3682.             {
  3683.                 clantagcycle_on_off_new = 1;
  3684.                 checkBox52.Text = "On";
  3685.             }
  3686.  
  3687.             if(checkBox52.Checked == false)
  3688.             {
  3689.                 clantagcycle_on_off_new = 0;
  3690.                 checkBox52.Text = "Off";
  3691.             }
  3692.         }
  3693.  
  3694.         private void button64_Click(object sender, EventArgs e)
  3695.         {
  3696.            
  3697.             textBox33.Text = "<^13";
  3698.             textBox34.Text = "<^23";
  3699.             textBox35.Text = "<^33";
  3700.             textBox36.Text = "<^43";
  3701.             textBox37.Text = "<^53";
  3702.             textBox38.Text = "<^63";
  3703.         }
  3704.  
  3705.         int randomclantagtext = 0;
  3706.         private void checkBox53_CheckedChanged(object sender, EventArgs e)
  3707.         {
  3708.             if(checkBox53.Checked == true)
  3709.             {
  3710.                 randomclantagtext = 1;
  3711.             }
  3712.  
  3713.             if(checkBox53.Checked == false)
  3714.             {
  3715.                 randomclantagtext = 0;
  3716.             }
  3717.         }
  3718.  
  3719.         int spawnkill = 0;
  3720.         private void checkBox43_CheckedChanged(object sender, EventArgs e)
  3721.         {
  3722.             if(checkBox43.Checked == true)
  3723.             {
  3724.                 checkBox43.Text = "On";
  3725.                 spawnkill = 1;
  3726.             }
  3727.  
  3728.             if(checkBox43.Checked == false)
  3729.             {
  3730.                 checkBox43.Text = "Off";
  3731.                 spawnkill = 0;
  3732.             }
  3733.         }
  3734.  
  3735.         private void button4_Click(object sender, EventArgs e)
  3736.         {
  3737.             if (Process_Handle("iw5mp"))
  3738.             {
  3739.                 WriteBytes(((ClientClearNmae + 0x82) + 0x00), colorone);
  3740.                 WriteBytes(((ClientClearNmae + 0x82) + 0x01), colortwo);
  3741.  
  3742.                 if(textBox39.Text == "")
  3743.                 {
  3744.                     NameFaker fakename = new NameFaker("Eithan Is Hot!");
  3745.                 }
  3746.                 else
  3747.                 {
  3748.                     NameFaker namefaker_ = new NameFaker(textBox39.Text);
  3749.                 }
  3750.             }
  3751.             else
  3752.                 MessageBox.Show("Mw3 Not found!", "Open Mw3...");
  3753.         }
  3754.  
  3755.         int namefakeronoff = 0;
  3756.         int fornamecycle = 0;
  3757.         private void checkBox54_CheckedChanged(object sender, EventArgs e)
  3758.         {
  3759.             if(checkBox54.Checked == true)
  3760.             {
  3761.                 namefakeronoff = 1;
  3762.             }
  3763.  
  3764.             if(checkBox54.Checked == false)
  3765.             {
  3766.                 namefakeronoff = 0;
  3767.             }
  3768.         }
  3769.  
  3770.         private void button65_Click(object sender, EventArgs e)
  3771.         {
  3772.             if (Process_Handle("iw5mp"))
  3773.             {
  3774.                 NameFaker namefake = new NameFaker(textBox3.Text);
  3775.             }
  3776.  
  3777.             if (Process_Handle("iw5mp"))
  3778.             {
  3779.                 WriteInteger(CLAN_TAG_BYTE, 1);
  3780.                 WriteString(CLAN_TAG_TEXT, textBox46.Text);
  3781.             }
  3782.             else
  3783.                 MessageBox.Show("Mw3 Not Found.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1);
  3784.         }
  3785.  
  3786.         private void button66_Click(object sender, EventArgs e)
  3787.         {
  3788.             Form4_mw3_info forminfo = new Form4_mw3_info();
  3789.             forminfo.Show();
  3790.         }
  3791.  
  3792.         private void textBox39_KeyDown(object sender, KeyEventArgs e)
  3793.         {
  3794.             if (Process_Handle("iw5mp"))
  3795.             {
  3796.                 if (textBox39.Text == "")
  3797.                 {
  3798.                     NameFaker fakename = new NameFaker("Eithan Is Hot!");
  3799.                 }
  3800.                 else
  3801.                 {
  3802.                     NameFaker namefaker_ = new NameFaker(textBox39.Text);
  3803.                 }
  3804.             }
  3805.             else
  3806.                 MessageBox.Show("Mw3 Not found!", "Open Mw3...");
  3807.         }
  3808.  
  3809.         private void checkBox67_CheckedChanged(object sender, EventArgs e)
  3810.         {
  3811.             if (checkBox67.Checked == true)
  3812.             {
  3813.                 //WriteFloat(0x05ACCC20, 0);//nospread
  3814.                 //WriteInteger(0x00435D90, 195);//nospread
  3815.                 //MessageBox.Show("you get nospread aswell", "you get nospread aswel");
  3816.                 //MessageBox.Show("set your shoot button to L and Left Mouse Click! And you press X for rapid shooting!", "WARNING!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  3817.             }
  3818.            
  3819.             if(checkBox67.Checked == false)
  3820.             {
  3821.                 //WriteFloat(0x05ACCC20, 1);
  3822.                 label170.Text = "0";
  3823.             }
  3824.         }
  3825.        
  3826.         private void button67_Click(object sender, EventArgs e)
  3827.         {
  3828.             bool check_connection = System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();
  3829.            
  3830.             if (check_connection == true)
  3831.                 MessageBox.Show("You have internet connection!", "YAYAYA", MessageBoxButtons.OK, MessageBoxIcon.Information);
  3832.             else
  3833.                 MessageBox.Show("You are not connected to the internet", "NONONONO", MessageBoxButtons.OK, MessageBoxIcon.Error);
  3834.         }
  3835.  
  3836.         bool CHAT_SPAM_ON_OFF = true;
  3837.         private void checkBox68_CheckedChanged(object sender, EventArgs e)
  3838.         {
  3839.             if(checkBox68.Checked == true)
  3840.             {
  3841.                 CHAT_SPAM_ON_OFF = true;
  3842.             }
  3843.  
  3844.             if(checkBox68.Checked == false)
  3845.             {
  3846.                 CHAT_SPAM_ON_OFF = false;
  3847.             }
  3848.         }
  3849.  
  3850.         //byte[] pattern = new byte[]
  3851.         //{ \x8B\x54\x24\x08\x8B\x4C\x24\x04\xFF\x4C\x24\x0C\ x53\x56\xC6\x02,"xxxxxxxxxxxxxxxx" };
  3852.  
  3853.  
  3854.         private void button68_Click(object sender, EventArgs e)
  3855.         {
  3856.             if(Process_Handle("iw5mp"))
  3857.             {
  3858.                 if(textBox2.Text == "")
  3859.                 {
  3860.                     WriteInteger(CLAN_TAG_BYTE, 0);
  3861.                     WriteString(CLAN_TAG_TEXT, "");
  3862.                 }
  3863.                 else
  3864.                 {
  3865.                     WriteInteger(CLAN_TAG_BYTE, 1);
  3866.                     WriteString(CLAN_TAG_TEXT, textBox2.Text);
  3867.                 }
  3868.             }
  3869.             else MessageBox.Show("Mw3 Not found", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
  3870.         }
  3871.  
  3872.         int namegenon_off = 0;
  3873.         private void checkBox1_CheckedChanged_1(object sender, EventArgs e)
  3874.         {
  3875.             if(checkBox1.Checked == true)
  3876.             {
  3877.                 namegenon_off = 1;
  3878.             }
  3879.  
  3880.             if(checkBox1.Checked == false)
  3881.             {
  3882.                 namegenon_off = 0;
  3883.             }
  3884.         }
  3885.  
  3886.         private void button69_Click(object sender, EventArgs e)
  3887.         {
  3888.             if(Process_Handle("iw5mp"))
  3889.             {
  3890.                 WriteInteger(g_speed, (int)numericUpDown5.Value);
  3891.             }
  3892.         }
  3893.  
  3894.         private void button70_Click(object sender, EventArgs e)
  3895.         {
  3896.             if(Process_Handle("iw5mp"))
  3897.             {
  3898.                 WriteInteger(g_gravity, (int)numericUpDown6.Value);
  3899.             }
  3900.         }
  3901.  
  3902.         int invisablename = 0;
  3903.         private void checkBox35_CheckedChanged(object sender, EventArgs e)
  3904.         {
  3905.             if(checkBox35.Checked == true)
  3906.             {
  3907.                 invisablename = 1;
  3908.             }
  3909.  
  3910.             if(checkBox35.Checked == false)
  3911.             {
  3912.                 invisablename = 0;
  3913.             }
  3914.         }
  3915.  
  3916.         int titlecycle = 0;
  3917.         int title_text = 0x01406A2D;
  3918.         int titlebyte2 = 0x01406A48;
  3919.         int title_byte = 0x01406A2C;
  3920.  
  3921.         int namecycle = 0;
  3922.         private void timer1_clantag_and_name_Tick(object sender, EventArgs e)
  3923.         {
  3924.             #region name cycle for me only xD
  3925.             if (checkBox82.Checked == true)
  3926.             {
  3927.                 if(Process_Handle("iw5mp"))
  3928.                 {
  3929.                     namecycle++;
  3930.                     if(namecycle == 0)
  3931.                     {
  3932.                         NameFaker namefaker2 = new NameFaker("@Treyarch I Hack");
  3933.                     }
  3934.  
  3935.                     if(namecycle == 1)
  3936.                     {
  3937.                         NameFaker namefake = new NameFaker("SirSpamModz");
  3938.                     }
  3939.  
  3940.                     if(namecycle == 2)
  3941.                     {
  3942.                         NameFaker namefaker2 = new NameFaker("@Treyarch I Hack");
  3943.                     }
  3944.  
  3945.                     if(namecycle ==3)
  3946.                     {
  3947.                         NameFaker namefake = new NameFaker("SirSpamModz");
  3948.                         namecycle = 0;
  3949.                     }
  3950.  
  3951.                 }
  3952.             }
  3953.             #endregion
  3954.  
  3955.             #region love clan tag thing
  3956.             if (clantagonoff == 1)
  3957.             {
  3958.                 clantagupthing++;
  3959.                 if (Process_Handle("iw5mp"))
  3960.                 {
  3961.                     WriteInteger(0x01406A2B, 1);
  3962.                     if (clantagupthing == 0)
  3963.                     {
  3964.                         WriteString(0x01406a4c, "<^13");
  3965.                     }
  3966.  
  3967.                     if (clantagupthing == 1)
  3968.                     {
  3969.                         WriteString(0x01406a4c, "<^23");
  3970.                     }
  3971.  
  3972.                     if (clantagupthing == 2)
  3973.                     {
  3974.                         WriteString(0x01406a4c, "<^33");
  3975.                     }
  3976.  
  3977.                     if (clantagupthing == 3)
  3978.                     {
  3979.                         WriteString(0x01406a4c, "<^43");
  3980.                     }
  3981.  
  3982.                     if (clantagupthing == 4)
  3983.                     {
  3984.                         WriteString(0x01406a4c, "<^53");
  3985.                     }
  3986.  
  3987.                     if (clantagupthing == 5)
  3988.                     {
  3989.                         WriteString(0x01406a4c, "<^63");
  3990.                     }
  3991.  
  3992.                     if (clantagupthing == 6)
  3993.                     {
  3994.                         WriteString(0x01406a4c, "<^73");
  3995.                     }
  3996.  
  3997.                     if (clantagupthing == 7)
  3998.                     {
  3999.                         WriteString(0x01406a4c, "<^83");
  4000.                     }
  4001.  
  4002.                     if (clantagupthing == 8)
  4003.                     {
  4004.                         WriteString(0x01406a4c, "<^93");
  4005.                         clantagupthing = 0;
  4006.                     }
  4007.                 }
  4008.             }
  4009.             #endregion
  4010.  
  4011.             #region
  4012.             if (titleonoff == 1)
  4013.             {
  4014.                 if(Process_Handle("iw5mp"))
  4015.                 {
  4016.                     titlecycle++;
  4017.  
  4018.                     if(titlecycle == 0 )
  4019.                     {
  4020.                         WriteString(title_text, textBox50.Text);
  4021.                     }
  4022.  
  4023.                     if(titlecycle == 1)
  4024.                     {
  4025.                         WriteString(title_text, textBox51.Text);
  4026.                     }
  4027.  
  4028.                     if(titlecycle == 2)
  4029.                     {
  4030.                         WriteString(title_text, textBox52.Text);
  4031.                     }
  4032.  
  4033.                     if(titlecycle == 3)
  4034.                     {
  4035.                         WriteString(title_text, textBox53.Text);
  4036.                     }
  4037.  
  4038.                     if(titlecycle == 4)
  4039.                     {
  4040.                         WriteString(title_text, textBox54.Text);
  4041.                     }
  4042.  
  4043.                     if(titlecycle == 5)
  4044.                     {
  4045.                         WriteString(title_text, textBox32.Text);
  4046.                         titlecycle = 0;
  4047.                     }
  4048.                 }
  4049.             }
  4050.             #endregion
  4051.  
  4052.             #region clan tag cycle thing
  4053.             if (clantagcycle_on_off_new == 1)
  4054.             {
  4055.                 clantagcycle_title_new++;
  4056.                 if (Process_Handle("iw5mp"))
  4057.                 {
  4058.                     WriteInteger(CLAN_TAG_BYTE, 1);
  4059.                     if (clantagcycle_title_new == 0)
  4060.                     {
  4061.                         WriteString(0x01406a4c, textBox33.Text);
  4062.                     }
  4063.  
  4064.                     if (clantagcycle_title_new == 1)
  4065.                     {
  4066.                         WriteString(0x01406a4c, textBox34.Text);
  4067.                     }
  4068.  
  4069.                     if (clantagcycle_title_new == 2)
  4070.                     {
  4071.                         WriteString(0x01406a4c, textBox35.Text);
  4072.                     }
  4073.  
  4074.                     if (clantagcycle_title_new == 3)
  4075.                     {
  4076.                         WriteString(0x01406a4c, textBox36.Text);
  4077.                     }
  4078.  
  4079.                     if (clantagcycle_title_new == 4)
  4080.                     {
  4081.                         WriteString(0x01406a4c, textBox37.Text);
  4082.                     }
  4083.  
  4084.                     if (clantagcycle_title_new == 5)
  4085.                     {
  4086.                         WriteString(0x01406a4c, textBox38.Text);
  4087.                         clantagcycle_title_new = 0;
  4088.                     }
  4089.                 }
  4090.             }
  4091.             #endregion
  4092.  
  4093.             #region name cycle
  4094.             if (namefakeronoff == 1)
  4095.             {
  4096.                 if (Process_Handle("iw5mp"))
  4097.                 {
  4098.                     fornamecycle++;
  4099.                     if (fornamecycle == 0)
  4100.                     {
  4101.                         NameFaker one = new NameFaker(textBox40.Text);
  4102.                     }
  4103.  
  4104.                     if (fornamecycle == 1)
  4105.                     {
  4106.                         NameFaker two = new NameFaker(textBox41.Text);
  4107.                     }
  4108.  
  4109.                     if (fornamecycle == 2)
  4110.                     {
  4111.                         NameFaker three = new NameFaker(textBox42.Text);
  4112.                     }
  4113.  
  4114.                     if (fornamecycle == 3)
  4115.                     {
  4116.                         NameFaker fore = new NameFaker(textBox43.Text);
  4117.                     }
  4118.  
  4119.                     if (fornamecycle == 4)
  4120.                     {
  4121.                         NameFaker five = new NameFaker(textBox44.Text);
  4122.                     }
  4123.  
  4124.                     if (fornamecycle == 5)
  4125.                     {
  4126.                         NameFaker six = new NameFaker(textBox45.Text);
  4127.                     }
  4128.  
  4129.                     if (fornamecycle == 6)
  4130.                     {
  4131.                         NameFaker six = new NameFaker(textBox40.Text);
  4132.                         fornamecycle = 0;
  4133.                     }
  4134.                 }
  4135.             }
  4136.             #endregion
  4137.         }
  4138.  
  4139.         private void button56_Click(object sender, EventArgs e)
  4140.         {
  4141.            
  4142.         }
  4143.  
  4144.         int titleonoff = 0;
  4145.         private void checkBox81_CheckedChanged(object sender, EventArgs e)
  4146.         {
  4147.  
  4148.             if(Process_Handle("iw5mp"))
  4149.             {
  4150.                 WriteInteger(titlebyte2, 1);
  4151.                 WriteInteger(title_byte, 1);
  4152.             }
  4153.             if(checkBox81.Checked == true)
  4154.             {
  4155.                 titleonoff = 1;
  4156.             }
  4157.  
  4158.             if(checkBox81.Checked == false)
  4159.             {
  4160.                 titleonoff = 0;
  4161.             }
  4162.         }
  4163.  
  4164.         private void button56_Click_1(object sender, EventArgs e)
  4165.         {
  4166.             if (Process_Handle("iw5mp"))
  4167.             {
  4168.                 WriteInteger(0x005D46AB8, (int)numericUpDown9.Value);
  4169.             }
  4170.             else
  4171.                 MessageBox.Show("open mw3");
  4172.         }
  4173.  
  4174.         bool Spawn_Trap_on_you_on_off = false;
  4175.         private void checkBox83_CheckedChanged(object sender, EventArgs e)
  4176.         {
  4177.             if(checkBox83.Checked == true)
  4178.             {
  4179.                 numericUpDown12.Enabled = true;
  4180.                 numericUpDown13.Enabled = true;
  4181.  
  4182.                 numericUpDown11.Enabled = true;
  4183.                 //numericUpDown10.Enabled = true;
  4184.                 checkBox84.Enabled = true;
  4185.                 Spawn_Trap_on_you_on_off = true;
  4186.             }
  4187.  
  4188.             if(checkBox83.Checked == false)
  4189.             {
  4190.                 numericUpDown12.Enabled = false;
  4191.                 numericUpDown13.Enabled = false;
  4192.  
  4193.                 checkBox84.Checked = true;
  4194.                 numericUpDown11.Enabled = false;
  4195.                 numericUpDown10.Enabled = false;
  4196.                 checkBox84.Enabled = false;
  4197.                 Spawn_Trap_on_you_on_off = false;
  4198.             }
  4199.         }
  4200.  
  4201.         int spawntrapotherthing = 1;
  4202.         private void checkBox84_CheckedChanged(object sender, EventArgs e)
  4203.         {
  4204.             if(checkBox84.Checked == true)
  4205.             {
  4206.                 numericUpDown10.Enabled = false;
  4207.                 spawntrapotherthing = 1;
  4208.             }
  4209.  
  4210.             if(checkBox84.Checked == false)
  4211.             {
  4212.                 numericUpDown10.Enabled = true;
  4213.                 spawntrapotherthing = 0;
  4214.             }
  4215.         }
  4216.  
  4217.         private void button71_Click(object sender, EventArgs e)
  4218.         {
  4219.             numericUpDown12.Value = 0;
  4220.             numericUpDown13.Value = 0;
  4221.             numericUpDown11.Value = 200;
  4222.         }
  4223.  
  4224.  
  4225.         bool freeze_players_tp_thing = false;
  4226.         private void checkBox85_CheckedChanged(object sender, EventArgs e)
  4227.         {
  4228.             if(checkBox85.Checked == true)
  4229.             {
  4230.                 freeze_players_tp_thing = true;
  4231.             }
  4232.  
  4233.             if(checkBox85.Checked == false)
  4234.             {
  4235.                 freeze_players_tp_thing = false;
  4236.             }
  4237.         }
  4238.  
  4239.         private void button72_Click(object sender, EventArgs e)
  4240.         {
  4241.             numericUpDown12.Value = 30;
  4242.             numericUpDown13.Value = 10;
  4243.             numericUpDown11.Value = 249;
  4244.             checkBox85.Checked = true;
  4245.             checkBox84.Checked = true;
  4246.         }
  4247.  
  4248.         private void checkBox86_CheckedChanged(object sender, EventArgs e)
  4249.         {
  4250.             if(checkBox86.Checked == true)
  4251.             {
  4252.                 this.TopMost = true;
  4253.             }
  4254.  
  4255.             if(checkBox86.Checked == false)
  4256.             {
  4257.                 this.TopMost = false;
  4258.             }
  4259.         }
  4260.  
  4261.         private void checkBox87_CheckedChanged(object sender, EventArgs e)
  4262.         {
  4263.             if(checkBox87.Checked == true)
  4264.             {
  4265.                 checkBox87.Checked = false;
  4266.                 Form_health_overlay fomroverlay = new Form_health_overlay();
  4267.                 fomroverlay.Show();
  4268.             }
  4269.  
  4270.             if(checkBox87.Checked == false)
  4271.             {
  4272.                 Form_health_overlay fomroverlay = new Form_health_overlay();
  4273.                 fomroverlay.Hide();
  4274.             }
  4275.         }
  4276.  
  4277.         private void button73_Click(object sender, EventArgs e)
  4278.         {
  4279.             //MessageBox.Show("I have not added Multi Player Soport For this Yet!", "");
  4280.             Form4_Console_Remake formlog = new Form4_Console_Remake();
  4281.             button73.Enabled = false;
  4282.             formlog.Show();
  4283.         }
  4284.  
  4285.         private void button75_Click(object sender, EventArgs e)
  4286.         {
  4287.             if (Process_Handle("iw5mp"))
  4288.             {
  4289.                 WriteFloat(FovScale, 2);
  4290.                 numericUpDown8.Value = 35;
  4291.             }
  4292.         }
  4293.  
  4294.         private void NumP1UpDownGun_ValueChanged(object sender, EventArgs e)
  4295.         {
  4296.             if(Process_Handle("iw5mp"))
  4297.                 WriteInteger(Primary_Base_Address, (int)P1gun.Value);
  4298.             else
  4299.                 MessageBox.Show("Mw3 Not Found!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
  4300.         }
  4301.        
  4302.         private void Player2Gun_ValueChanged(object sender, EventArgs e)
  4303.         {
  4304.             if (Process_Handle("iw5mp"))
  4305.                 WriteInteger(Primary_Base_Address + (1 * Primary_Size), (int)Player2Gun.Value);
  4306.             else
  4307.                 MessageBox.Show("Mw3 Not Found!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
  4308.                
  4309.         }
  4310.  
  4311.         private void button74_Click(object sender, EventArgs e)
  4312.         {
  4313.             if(Process_Handle("iw5mp"))
  4314.             {
  4315.                 WriteString(0x0880B88, "Flubba\n");
  4316.             }
  4317.         }
  4318.  
  4319.        
  4320.         private void button76_Click(object sender, EventArgs e)
  4321.         {
  4322.             if (Process_Handle("iw5mp"))
  4323.             {
  4324.                 WriteBytes(((ClientClearNmae + 0x82) + 0x00), colorone);
  4325.                 WriteBytes(((ClientClearNmae + 0x82) + 0x01), colortwo);
  4326.             }
  4327.             else
  4328.                 MessageBox.Show("Mw3 Not Open", "", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
  4329.         }
  4330.  
  4331.         private void button77_Click(object sender, EventArgs e)
  4332.         {
  4333.             if(Process_Handle("iw5mp"))
  4334.             {
  4335.                 WriteBytes(((ClientClearNmae + 0x82) + 0x00), colorone);
  4336.                 WriteBytes(((ClientClearNmae + 0x82) + 0x01), colortwo);
  4337.                 NameFaker namefak = new NameFaker("^ddfacebook");
  4338.             }
  4339.         }
  4340.  
  4341.         bool namething = false;
  4342.         private void checkBox89_CheckedChanged(object sender, EventArgs e)
  4343.         {
  4344.             if (checkBox89.Checked == true)
  4345.             {
  4346.                 namething = true;
  4347.             }
  4348.             else
  4349.             {
  4350.                 namething = false;
  4351.             }
  4352.         }
  4353.  
  4354.         int SV_GameSendServerCommand = 0x52E330;
  4355.         private void button78_Click(object sender, EventArgs e)
  4356.         {
  4357.             if(Process_Handle("iw5mp"))
  4358.             {
  4359.                 int i =0;
  4360.                 WriteString(SV_GameSendServerCommand, "c\" ^5HEY \"");
  4361.             }
  4362.         }
  4363.  
  4364.         private void checkBox90_CheckedChanged(object sender, EventArgs e)
  4365.         {
  4366.             if(checkBox90.Checked == true)
  4367.             {
  4368.                 if(Process_Handle("iw5mp"))
  4369.                 {
  4370.                     WriteInteger(draw_gun, 1);
  4371.                 }
  4372.             }
  4373.  
  4374.             if(checkBox90.Checked == false)
  4375.             {
  4376.                 if (Process_Handle("iw5mp"))
  4377.                 {
  4378.                     WriteInteger(draw_gun, 0);
  4379.                 }
  4380.             }
  4381.         }
  4382.  
  4383.         private void checkBox91_CheckedChanged(object sender, EventArgs e)
  4384.         {
  4385.             if(checkBox91.Checked == true)
  4386.             {
  4387.                 if(Process_Handle("iw5mp"))
  4388.                 {
  4389.                     WriteInteger(DrawHud, 1);
  4390.                 }
  4391.             }
  4392.  
  4393.             if(checkBox91.Checked == false)
  4394.             {
  4395.                 if (Process_Handle("iw5mp"))
  4396.                 {
  4397.                     WriteInteger(DrawHud, 0);
  4398.                 }
  4399.             }
  4400.         }
  4401.  
  4402.         private void checkBox92_CheckedChanged(object sender, EventArgs e)
  4403.         {
  4404.             if(checkBox92.Checked == true)
  4405.             {
  4406.                 if(Process_Handle("iw5mp"))
  4407.                 {
  4408.                     WriteInteger(0x05AAD6B4, 0);
  4409.                 }
  4410.             }
  4411.  
  4412.             if(checkBox92.Checked == false)
  4413.             {
  4414.                 if (Process_Handle("iw5mp"))
  4415.                 {
  4416.                     WriteInteger(0x05AAD6B4, 1);
  4417.                 }
  4418.             }
  4419.         }
  4420.  
  4421.         private void button79_Click(object sender, EventArgs e)
  4422.         {
  4423.             if(Process_Handle("iw5mp"))
  4424.             {
  4425.                 WriteBytes(((ClientClearNmae + 0x82) + 0x00), colorone);
  4426.                 WriteBytes(((ClientClearNmae + 0x82) + 0x01), colortwo);
  4427.                 NameFaker namefak = new NameFaker("T");
  4428.             }
  4429.         }
  4430.     }
  4431. }
  4432.  
  4433. //host: WriteInteger(int.Parse((ReadInteger(0x0140F1A4)+0xC), System.Globalization.NumberStyles.HexNumber),1);
  4434. //^ddfacebook    dfhgfhfgh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement