Results 1 to 4 of 4
  1. #1
    thesparkofhope's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Deadman's Wonderland
    Posts
    63
    Reputation
    12
    Thanks
    68
    My Mood
    Amazed

    Question VS2012 Trainer :D

    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
     
    //Give me credits if you use this or learned from it - Distiny @MPGH
     
     
     
    namespace Memory_Hack_Base
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
     
            mem aw = new mem();   //our mem class; I named it aw since the game we will work on is cod: Advanced Warfare  aka AW
     
     
            //Variables
     
            long A_tampering = 0x14a817b80;    //declaring the address for the tampering check
            bool god;
            bool ammo1;
            bool ammo2;
            bool Explosives;
     
            private void Form1_Load(object sender, EventArgs e)
            {
                timer1.Start();
                timer2.Start();
                timer3.Start();
                timer4.Start();
            }
     
            private void disable_tampering_check()
            {
                if (aw.ProcHandle("s1_sp64_ship"))     // this is a check to make sure Advanced Warfare is running.
                {
                    aw.WriteInteger(A_tampering, 0);
     
                }
            }
     
            private void button1_Click(object sender, EventArgs e)  // the save button
            {
                god = !god;
            }
     
            private void timer1_Tick(object sender, EventArgs e)
            {
                if (aw.ProcHandle("s1_sp64_ship"))     // this is a check to make sure Advanced Warfare is running.
                {
                    if (god)
     
                    disable_tampering_check();    //calls the function to disable the Tampering check.
                    aw.WriteInteger(0x1434BFBA4, 9999); //This is just an example, aw.WriteInteger(address, value);
     
                }
            }
     
            private void button2_Click(object sender, EventArgs e)
            {    
                ammo1 = !ammo1;
            }
     
            private void timer2_Tick(object sender, EventArgs e)
            {
                if (aw.ProcHandle("s1_sp64_ship"))     // this is a check to make sure Advanced Warfare is running.
                {
                    if (ammo1)
     
                        disable_tampering_check();    //calls the function to disable the Tampering check.
                    aw.WriteInteger(0x1437A9218, 100); //This is just an example, aw.WriteInteger(address, value);
     
                }
            }
     
            private void button3_Click(object sender, EventArgs e)
            {
                ammo2 = !ammo2;
            }
     
            private void timer3_Tick(object sender, EventArgs e)
            {
                if (aw.ProcHandle("s1_sp64_ship"))     // this is a check to make sure Advanced Warfare is running.
                {
                    if (ammo2)
     
                        disable_tampering_check();    //calls the function to disable the Tampering check.
                    aw.WriteInteger(0x1437A9230, 100); //This is just an example, aw.WriteInteger(address, value);
     
                }
            }
     
            private void button4_Click(object sender, EventArgs e)
            {
                Explosives = !Explosives;
            }
     
            private void timer4_Tick(object sender, EventArgs e)
            {
                if (aw.ProcHandle("s1_sp64_ship"))     // this is a check to make sure Advanced Warfare is running.
                {
                    if (Explosives)
     
                    disable_tampering_check();    //calls the function to disable the Tampering check.
                    aw.WriteInteger(0x1437A9248, 6); //This is just an example, aw.WriteInteger(address, value);
     
                }
            }
     
            private void button5_Click(object sender, EventArgs e)
            {
     
     
                if (aw.ProcHandle("s1_sp64_ship"))     // this is a check to make sure Advanced Warfare is running.
                {
                    disable_tampering_check();    //calls the function to disable the Tampering check.
                    aw.WriteInteger(0x141057D34, 99); //This is just an example, aw.WriteInteger(address, value);
     
                }
            }
        }
    }
    Well thats the code (Distinys one:P)
    but if i start it it wont change an ingame adress?
    is it because ofteh tickers or the bools?
    Last edited by Lovroman; 11-21-2014 at 06:59 AM.

  2. #2
    rgerogerg's Avatar
    Join Date
    Sep 2014
    Gender
    female
    Posts
    8
    Reputation
    10
    Thanks
    0
    s1_mp64_ship should be the process name instead of sp64.

  3. #3
    thesparkofhope's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Deadman's Wonderland
    Posts
    63
    Reputation
    12
    Thanks
    68
    My Mood
    Amazed
    well that is because it should be a singleplayer trainer ^^

  4. #4
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    Heh, all i will say for now.





  5. The Following User Says Thank You to SammyDoge1 For This Useful Post:

    thesparkofhope (11-24-2014)

Similar Threads

  1. The Warrock Trainer
    By tomvernons in forum WarRock - International Hacks
    Replies: 4
    Last Post: 02-05-2006, 01:23 AM
  2. (SEARCHING)WarRock Trainer
    By User Namem in forum Hack Requests
    Replies: 11
    Last Post: 02-02-2006, 07:48 PM
  3. C++ Trainer Skeleton
    By Dave84311 in forum C++/C Programming
    Replies: 40
    Last Post: 01-27-2006, 09:23 PM
  4. Trainer?
    By outrage20 in forum Gate To Heaven Hacks
    Replies: 1
    Last Post: 01-17-2006, 05:52 AM
  5. MPGH Warrock Trainer v1.010206
    By Dave84311 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 01-10-2006, 06:41 PM