Results 1 to 14 of 14
  1. #1
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84

    Simple AutoIt Kills Trainer

    Hey guys watsup this is a tutorial on how to make a simple trainer for mw2 with AutoIt.

    Firstly -- We need all the correct files to begin scripting in AutoIt v3.
    The VERY First thing we need to download and install is AutoIt 3 itself... here's the link https://www.autoitscrip*****m/cgi-bin/...t-v3-setup.exe
    The Second thing we need to download and install is the current beta version.. here's the link https://www.autoitscrip*****m/autoit3/...beta-setup.exe
    The Third thing we need to download and install is the Script Editor for AutoIt which is SciTE.. here's the link https://www.autoitscrip*****m/cgi-bin/...TE4AutoIt3.exe
    The Fourth thing we need is NomadMemory.au3 to edit the memory on mw2:
    https://www.autoitscrip*****m/forum/in...ttach_id=23428

    We need to open up SciTE Script Editor and SAVE a BLANK file. We do this because the actual Tools menu is only available on a previously saved project.. If you click on the Tools menu before saving you'll see it has about 5 things, when if you click on it AFTER you save, it'll have a nice list going all the way down your screen.
    Ok, now we right click anywere e.g. desktop and go to new -> AutoIt v3 Script. Name it “Mw2 Trainer” now that’s done right click on the Autoit script and click edit.

    Now we can create the hack. We first have to include NomadMemory.au3 to edit mw2’s memory and require admin rights .
    Code:
    #Include <NomadMemory.au3>
    #RequireAdmin
    Now we want to tell AutoIt to only run this script if mw2 is open. Make sure you have mw2 open before you run this script or you will be spammed by autoit scripts lol. Also a message box is included to tell you what you are doing.

    Code:
    While ProcessExists ("iw4mp.exe") = False ; This code is telling autoit to only open this script if mw2 is open
    	MsgBox (0, "Modern Warfare 2 Kills hack", "Kills hack")
    Wend
    Now we want to set some variables so that we can write to memory. A Input box will determine the amount of kills you want .
    Code:
    $points = InputBox ("Moderrn Warfare 2 Kills hack" , "Enter amount of Kills you want. Have mw2 open")
    
    $open = _MemoryOpen(ProcessExists("iw4mp.exe"))
    Ok, now we must enter the address for kills.
    Code:
    $adresse1 = 0x01B2C8B0
    Lastly we will tell AutoIt to write to memory whatever you have entered in the Inputbox.
    Code:
     _MemoryWrite($adresse1,$open,$points,"dword")
    MsgBox(0, "Success", "Please Wait 5 Seconds")
    This is what the script should look like at when your done
    Code:
    #Include <NomadMemory.au3>
    #RequireAdmin
    
    While ProcessExists ("iw4mp.exe") = False ; This code is telling autoit to only open this script if mw2 is open
    	MsgBox (0, "Modern Warfare 2 Kills hack", "Kills hack")
    WEnd
    
    $points = InputBox ("Moderrn Warfare 2 XP hack" , "Enter amount of XP you want. Have mw2 open")
    
    $open = _MemoryOpen(ProcessExists("iw4mp.exe"))
    
    $adresse1 = 0x01B2C8B0
    
    _MemoryWrite($adresse1,$open,$points,"dword")
    MsgBox(0, "Success", "Please Wait 5 Seconds")
    To run it press f5.

    There you have a simple mw2 trainer lol. If you want to learn more about AutoIt read the Helpfile as it is very usefull or search for some tutorials on the Internet. Or go here :https://www.mpgh.net/forum/161-tutori...is-autoit.html

    Imo AutoIt is a easier language to learn then VB but it depends what you want to do.

    To change other stats use Ck's addresses and replace them in the autoit script.

    Virusscans:
    Jotti : CK's MW2 ADRESSES.rar - Jotti's malware scan
    Viruscan:CK's MW2 ADRESSES.rar MD5:e43ade567f3eafd9c4e90f2779a97b91 - VirSCAN.org Scanners did not find malware!

    CREDITS:
    Grim - For his AutoIT Auto Click Tutorial and help.
    House - Approving links
    Me - For making tut

    HAVE FUN!

    Ouside links approved by House
    Last edited by House; 10-12-2010 at 02:56 AM. Reason: Edited script

  2. The Following 5 Users Say Thank You to @osma8 For This Useful Post:

    Grim (01-11-2011),House (10-09-2010),Insane (10-09-2010),Jonny21 (01-15-2011),sythe179 (10-13-2010)

  3. #2
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    autoit, gj ^^
    Outside links approved
    /Attachment Approved

  4. The Following 3 Users Say Thank You to House For This Useful Post:

    @osma8 (10-09-2010),Insane (10-09-2010),sythe179 (10-13-2010)

  5. #3
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84
    Quote Originally Posted by House View Post
    autoit, gj ^^
    Outside links approved
    /Attachment Approved
    Ty Obi One Konobi

  6. #4
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    PS: outside links fail house

    Ex Middleman

  7. #5
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84
    Quote Originally Posted by Insane View Post
    PS: outside links fail house
    He gotcha RUN FOREST RUN!!

  8. #6
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    What the hell are you saying osma?



  9. #7
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    Quote Originally Posted by Insane View Post
    PS: outside links fail house
    Links he gave me on msn were working -.- I ll tell him to fix that asap/

  10. The Following 2 Users Say Thank You to House For This Useful Post:

    Insane (10-10-2010),sythe179 (10-13-2010)

  11. #8
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84
    Quote Originally Posted by House View Post
    Links he gave me on msn were working -.- I ll tell him to fix that asap/
    There all wrking.

    Blubb Insane thought House was being lazy nd not checkin all the links lol. So yea my bad...lol.

  12. #9
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1,627
    Reputation
    11
    Thanks
    325
    My Mood
    Angelic
    Looks good, Links work for me - lol

  13. #10
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive
    thanks for the tut
    anyway autoit is not my thing.
    question:
    #Include <NomadMemory.au3
    #RequireAdmin

    did you mean:
    #Include <NomadMemory.au3>
    #RequireAdmin
    ?
    Helped out over 5000 guys with my level trainer and other stuff.

    Selling Steam accounts. Send me a message if you're interested.



    Nice forum needs to expands! Register now for a good position! (PM me)


  14. #11
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84
    Quote Originally Posted by jabbathehutt View Post
    thanks for the tut
    anyway autoit is not my thing.
    question:
    #Include <NomadMemory.au3>
    #RequireAdmin

    did you mean:
    #Include <NomadMemory.au3>
    #RequireAdmin
    ?
    Yea it is i'll fix it lol. Srry ma bad i was rushin to post it so i frgt to proof read./ Eh i cant seem to edit my post. Can a Minion please do it?
    Last edited by House; 10-12-2010 at 02:37 AM.

  15. #12
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive
    Haha, why did you edit the quote?
    o0
    Helped out over 5000 guys with my level trainer and other stuff.

    Selling Steam accounts. Send me a message if you're interested.



    Nice forum needs to expands! Register now for a good position! (PM me)


  16. #13
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    House did.



  17. #14
    @osma8's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    749
    Reputation
    26
    Thanks
    84
    Quote Originally Posted by Blubb1337 View Post
    House did.
    Yea he made my day when he did that lol.

Similar Threads

  1. [Outdated] Very simple onehit kill cheat
    By Derail in forum BattleOn Games Hacks, Cheats & Trainers
    Replies: 5
    Last Post: 09-28-2010, 09:49 AM
  2. [Release] ZerO's Simple MW2 Rank Trainer [1.2.208]
    By iZ3RO in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 95
    Last Post: 08-29-2010, 05:24 PM
  3. Sijan's Simple First Kill Badges
    By Sijan111 in forum CrossFire Mods & Rez Modding
    Replies: 6
    Last Post: 07-25-2010, 07:43 AM
  4. Sijan's Simple Second kill badges
    By Sijan111 in forum CrossFire Mods & Rez Modding
    Replies: 3
    Last Post: 07-25-2010, 07:42 AM
  5. [Release] Simple super jump trainer
    By dezer in forum WarRock - International Hacks
    Replies: 19
    Last Post: 07-12-2007, 05:22 PM