Thread: Trainer help.

Results 1 to 5 of 5
  1. #1
    StonedEngine's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Location
    Germany?
    Posts
    68
    Reputation
    10
    Thanks
    48
    My Mood
    Amused

    Trainer help.

    Hello, I have created trainers before but really simple ones. I am doing a simple Ghost trainer using Jorndels 1st Memory class.
    Here is my code
    Code:
    private void button1_Click(object sender, EventArgs e)
            {
                CC.ProcessName = "iw6mp_ship";
                CC.Write._Int32(0x144E82D7, 1);
    
            }
    I get everything that the piece of code is doing I think.. Now, how does the program know what to change the value to? How does It see whats in TextBox1? Also is the 0x1 needed before the address? Note I am still learning C# and C++ Still a noob in both of the languages.
    What do I need to add? Something like CC.Write,_Int32(0x144E82D7, TextBox1.text) ? I did that and It gave me a error.

    Thanks for your help! Note this is my 2nd account on MPGH, My fist one is HitoKiri~ but I am on my laptop and I used that one with my desktop. I will be posting the simple hack once it was done but I might need someone to test the hack because I do not have Ghost installed on my laptop.
    Again, Thanks everyone!

  2. #2
    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
    Quote Originally Posted by StonedEngine View Post
    Hello, I have created trainers before but really simple ones. I am doing a simple Ghost trainer using Jorndels 1st Memory class.
    Here is my code
    Code:
    private void button1_Click(object sender, EventArgs e)
            {
                CC.ProcessName = "iw6mp_ship";
                CC.Write._Int32(0x144E82D7, 1);
    
            }
    I get everything that the piece of code is doing I think.. Now, how does the program know what to change the value to? How does It see whats in TextBox1? Also is the 0x1 needed before the address? Note I am still learning C# and C++ Still a noob in both of the languages.
    What do I need to add? Something like CC.Write,_Int32(0x144E82D7, TextBox1.text) ? I did that and It gave me a error.

    Thanks for your help! Note this is my 2nd account on MPGH, My fist one is HitoKiri~ but I am on my laptop and I used that one with my desktop. I will be posting the simple hack once it was done but I might need someone to test the hack because I do not have Ghost installed on my laptop.
    Again, Thanks everyone!


    EDIT: Here's what i use in C# :
    Code:
                    {
                        Write.......(Addy, Convert.ToInt32(textBox1.Text));
                    }
    Last edited by SammyDoge1; 02-14-2014 at 07:50 AM.

  3. #3
    StonedEngine's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Location
    Germany?
    Posts
    68
    Reputation
    10
    Thanks
    48
    My Mood
    Amused
    Quote Originally Posted by SammyDoge1 View Post


    EDIT: Here's what i use in C# :
    Code:
                    {
                        Write.......(Addy, Convert.ToInt32(textBox1.Text));
                    }
    With Jorndels Memory Class? So it would be CC.Write(Address, Convert.Toint32(textBox1.Text));

  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
    Quote Originally Posted by StonedEngine View Post
    With Jorndels Memory Class? So it would be CC.Write(Address, Convert.Toint32(textBox1.Text));
    Yes, but dont forget Int in the Write. Heres the exact code:
    Code:
     WriteInteger(Address, Convert.Toint32(textBox1.Text));
    With Jorndels Mem class.
    Last edited by SammyDoge1; 02-14-2014 at 08:30 AM.





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

    StonedEngine (02-14-2014)

  6. #5
    StonedEngine's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Location
    Germany?
    Posts
    68
    Reputation
    10
    Thanks
    48
    My Mood
    Amused
    Quote Originally Posted by SammyDoge1 View Post

    Yes,
    Code:
     WriteInteger(Address, Convert.Toint32(textBox1.Text));
    With Jorndels Mem class.
    Thank you!!

  7. The Following User Says Thank You to StonedEngine For This Useful Post:

    SammyDoge1 (02-14-2014)

Similar Threads

  1. [Help Request] Universal Trainer help
    By xBear Grylls in forum Visual Basic Programming
    Replies: 9
    Last Post: 01-25-2013, 11:03 PM
  2. [Help Request] Mw3 Trainer help
    By Lovroman in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 16
    Last Post: 11-14-2012, 10:30 AM
  3. [Help Request] Universal Trainer help
    By xBear Grylls in forum Visual Basic Programming
    Replies: 2
    Last Post: 09-08-2012, 02:55 PM
  4. [Help Request] Trainer Help for MW3 version 1.5.388 Single Player
    By NightmareTX_RETIRED in forum Call of Duty Modern Warfare 3 Help
    Replies: 5
    Last Post: 04-20-2012, 06:17 PM
  5. [Help Request] Dark Trainer Help
    By azndino27 in forum MapleStory Help
    Replies: 8
    Last Post: 11-25-2011, 07:23 PM