Results 1 to 2 of 2
  1. #1
    Horror's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    51,4.
    Posts
    6,920
    Reputation
    574
    Thanks
    5,050
    My Mood
    Twisted

    Post Find The Mistake(s).

    Something very strange is going on ...
    so, ill explain my problem a bit more, today, out of nowhere , my hack stopped working (the non released version). Everything else exept Player 1 & 2 Stopped working ...
    So , the code of player 2 : (wich works)
    Code:
    #region Player 2
            private void button3_Click(object sender, EventArgs e)
            {
                if (comboBox2.Text == "Activate Godmode")
                {
                    Process_Handle("iw5mp");
                    WriteInteger(0x1B3ADB8, 999999);
                }
                else
                    if (comboBox2.Text == "De-Activate Godmode")
                    {
                        Process_Handle("iw5mp");
                        WriteInteger(0x1B3ADB8, 100);
                    }
                    else
                        if (comboBox2.Text == "Give Unl. Ammo")
                        {
                            Process_Handle("iw5mp");
                            WriteInteger(0x1D04CD4, 999999999);
                            WriteInteger(0x1D04CBC, 999999999);
                            WriteInteger(0x1D04CC8, 999999999);
                            WriteInteger(0x1D04CE0, 999999999);
                            WriteInteger(0x1D04CC0, 999999999);
                            WriteInteger(0x1D04C54, 999999999);
                            WriteInteger(0x1D04C44, 999999999);
                        }
                        else
                            if (comboBox2.Text == "Take All Ammo")
                            {
                                Process_Handle("iw5mp");
                                WriteInteger(0x1D04CD4, 0);
                                WriteInteger(0x1D04CBC, 0);
                                WriteInteger(0x1D04CC8, 0);
                                WriteInteger(0x1D04CE0, 0);
                                WriteInteger(0x1D04CC0, 0);
                                WriteInteger(0x1D04C54, 0);
                                WriteInteger(0x1D04C44, 0);
                            }
                            else
                                if (comboBox2.Text == "Teleport On")
                                {
                                    Process_Handle("iw5mp");
                                    WriteInteger(0x01D07BB8, 2);
                                }
                                else
                                    if (comboBox2.Text == "Teleport Off")
                                    {
                                        Process_Handle("iw5mp");
                                        WriteInteger(0x01D07BB8, 0);
                                    }
                                    else
                                        if (comboBox2.Text == "Freeze Player")
                                        {
                                            Process_Handle("iw5mp");
                                            WriteInteger(0x01D07BB8, 1);
                                        }
                                        else
                                            if (comboBox2.Text == "Un-Freeze Player")
                                            {
                                                Process_Handle("iw5mp");
                                                WriteInteger(0x01D07BB8, 0);
                                            }
            }
            #endregion
    Now, the code of Player 3 : (wich doesnt work)
    Code:
    #region Player 3
            private void button4_Click(object sender, EventArgs e)
            {
                if (comboBox3.Text == "Activate Godmode")
                {
                    Process_Handle("iw5mp");
                    WriteInteger(0x1B3B02C, 999999);
                }
                else
                    if (comboBox3.Text == "De-Activate Godmode")
                    {
                        Process_Handle("iw5mp");
                        WriteInteger(0x1B3B02C, 100);
                    }
                    else
                        if (comboBox3.Text == "Give Unl. Ammo")
                        {
                            Process_Handle("iw5mp");
                            WriteInteger(0x1D085C0, 999999999);
                            WriteInteger(0x1D085A8, 999999999);
                            WriteInteger(0x1D085B4, 999999999);
                            WriteInteger(0x1D085CC, 999999999);
                            WriteInteger(0x1D085AC, 999999999);
                            WriteInteger(0x1D08540, 999999999);
                            WriteInteger(0x1D08530, 999999999);
                        }
                        else
                            if (comboBox3.Text == "Take All Ammo")
                            {
                                Process_Handle("iw5mp");
                                WriteInteger(0x1D085C0, 0);
                                WriteInteger(0x1D085A8, 0);
                                WriteInteger(0x1D085B4, 0);
                                WriteInteger(0x1D085CC, 0);
                                WriteInteger(0x1D085AC, 0);
                                WriteInteger(0x1D08540, 0);
                                WriteInteger(0x1D08530, 0);
                            }
                            else
                                if (comboBox3.Text == "Teleport On")
                                {
                                    Process_Handle("iw5mp");
                                    WriteInteger(0x1D0B4A4, 2);
                                }
                                else
                                    if (comboBox3.Text == "Teleport Off")
                                    {
                                        Process_Handle("iw5mp");
                                        WriteInteger(0x1D0B4A4, 0);
                                    }
                                    else
                                        if (comboBox3.Text == "Freeze Player")
                                        {
                                            Process_Handle("iw5mp");
                                            WriteInteger(0x1D0B4A4, 1);
                                        }
                                        else
                                            if (comboBox3.Text == "Un-Freeze Player")
                                            {
                                                Process_Handle("iw5mp");
                                                WriteInteger(0x1D0B4A4, 0);
                                            }
            }
            #endregion
    I already checked All the adresses in cheat engine, and all of the adresses are right. Also, Button3 is the button for Player 2, Button 4 the one for Player 3, etc etc etc. Combob.ox 3 (without the . , will appear) is the one for player 3 , etc. So, whats the difference between Player 2's code and Player 3's code what makes it fail ?
    /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    EDIT : I solved the problem by retyping my whole project ... w/o Copy&Paste (tested with copy and paste, but then it failed) ... It looks exactly the same as before but now it works ...
    Last edited by Horror; 08-05-2012 at 03:44 PM.
     

    Minion+ : February 2014 - January 2015
    Counter Strike: Global Offensive Minion : November 2014 - January 2015
    Alliance of Valiant Arms Minion : August 2014 - January 2015
    Need For Speed World Minion : January 2014 - January 2015
    Rust Minion : January 2014 - January 2015
    Call of Duty Minion : January 2013 - January 2015
    Editor : December 2012 - April 2013
    Donator : March 2014 - Current
    Member : October 2010 - Current

    Previously known as "Isaakske".

  2. #2
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    /Marked as Solved then

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

Similar Threads

  1. Finding the Field of View
    By djtrickdog in forum Combat Arms Hacks & Cheats
    Replies: 0
    Last Post: 08-15-2008, 12:57 AM
  2. How to finding the new adresses?
    By mojo007 in forum Visual Basic Programming
    Replies: 2
    Last Post: 04-10-2008, 11:34 AM
  3. Find the 3....
    By Nurbek92 in forum General
    Replies: 8
    Last Post: 07-20-2007, 05:39 PM
  4. Help me to find the adress?
    By Scottsmith in forum WarRock - International Hacks
    Replies: 4
    Last Post: 05-24-2007, 11:35 PM
  5. can someone help me to find the unlim ammo adress for rpg7?
    By mheeniac in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-10-2007, 10:30 AM