Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive

    [VB.NET] Simple unlock all code

    You know that:
    You're making a trainer and you want to add a button for unlock all but you're to lazy to write every fucking line?
    Code:
                    Dim i As Integer
                    Dim address As Integer
                    Dim s As String
                    For i = &H688 To &H810 Step &H1
                        Address = &H1B2C89C + i
                        s = "&H" + Hex(Address)
                        Memory.Writememory(p(0), s, "9", "4")
                    Next i
                    For i = &H75F To &H80C Step &H1
                        address = &H1B2C89C + i
                        s = "&H" + Hex(address)
                        Memory.Writememory(p(0), s, "9", "4")
                    Next i
                End If
    Just use that. You'll have to replace
    Code:
    Memory.Writememory(p(0), s, "9", "4")
    with your favorite write function and working offsets.
    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)


  2. #2
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1,627
    Reputation
    11
    Thanks
    325
    My Mood
    Angelic
    Um i guess this was helpful
    /Thanked

  3. #3
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive
    Why are u only guessing?
    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)


  4. #4
    0rbit's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Ireland.
    Posts
    212
    Reputation
    15
    Thanks
    724
    My Mood
    Amused
    This code doesn't look familiar at all
    Last edited by 0rbit; 11-02-2010 at 03:25 PM.

    I read all PMs and VMs.
    If you add me on MSN, PM me here so I know who you are, or I will not accept.

    Free Trainer Template: Want this trainer template with your name on it? PM me. (I ain't using it)
    My Stuffs: IWIFix v1.11 | HLoad v1.00b | MW2Hack v1.0 Final | [Tut] Ingame Console/Textbox in DirectX
    Current status: Being awesome.. Duh

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

    Hell_Demon (11-03-2010)

  6. #5
    master131backup's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    94
    Reputation
    19
    Thanks
    163
    My Mood
    Angelic
    No need for quotes on the 9 and 4 because they are integers not strings.

  7. #6
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive
    0RBITTTTTT ARE U DEAD?
    I have some questions to you
    @ master: i know. doesnt really matter.
    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)


  8. #7
    0rbit's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Ireland.
    Posts
    212
    Reputation
    15
    Thanks
    724
    My Mood
    Amused
    Nope still alive and kicking as you may have noticed.

    I read all PMs and VMs.
    If you add me on MSN, PM me here so I know who you are, or I will not accept.

    Free Trainer Template: Want this trainer template with your name on it? PM me. (I ain't using it)
    My Stuffs: IWIFix v1.11 | HLoad v1.00b | MW2Hack v1.0 Final | [Tut] Ingame Console/Textbox in DirectX
    Current status: Being awesome.. Duh

  9. #8
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by 0rbit View Post
    Nope still alive and kicking as you may have noticed.
    Happy to see you're back too and not as busy as before as I can see =).
    Love You All~

  10. The Following User Says Thank You to Melodia For This Useful Post:

    Skyline. (11-03-2010)

  11. #9
    0rbit's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Ireland.
    Posts
    212
    Reputation
    15
    Thanks
    724
    My Mood
    Amused
    Quote Originally Posted by Melodia View Post
    Happy to see you're back too and not as busy as before as I can see =).
    Aye it's been good to have some free time again hehe
    Glad to see you back as Minion again too, best of luck with all that

    I read all PMs and VMs.
    If you add me on MSN, PM me here so I know who you are, or I will not accept.

    Free Trainer Template: Want this trainer template with your name on it? PM me. (I ain't using it)
    My Stuffs: IWIFix v1.11 | HLoad v1.00b | MW2Hack v1.0 Final | [Tut] Ingame Console/Textbox in DirectX
    Current status: Being awesome.. Duh

  12. The Following 3 Users Say Thank You to 0rbit For This Useful Post:

    Hell_Demon (11-03-2010),Melodia (11-02-2010),Skyline. (11-03-2010)

  13. #10
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    The step is unnecessary. The default step is 1, thus it's completely useless.

    Also, you are writing down the integers as strings...

    not much of a good example ^^...



  14. #11
    Skyline.'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    10,160
    Reputation
    416
    Thanks
    1,614
    Quote Originally Posted by Blubb1337 View Post
    The step is unnecessary. The default step is 1, thus it's completely useless.

    Also, you are writing down the integers as strings...

    not much of a good example ^^...
    yes um would you like to dumb it down for me?.
    kthanks =)


  15. The Following User Says Thank You to Skyline. For This Useful Post:

    alexzor (11-04-2010)

  16. #12
    sythe179's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    The internet
    Posts
    660
    Reputation
    15
    Thanks
    1,458
    My Mood
    Paranoid
    Memory.Writememory(p(0), s, "9", "4")
    should be
    Memory.Writememory(p(0), s, 9, 4)
    ?

  17. #13
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive
    ON TIME FOR ALL:
    Yes you can write it without these """ but it doesnt matter.

    @toobanooba
    Blubb means this is the best code he has ever seen.
    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)


  18. #14
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by jabbathehutt View Post
    ON TIME FOR ALL:
    Yes you can write it without these """ but it doesnt matter.

    @toobanooba
    Blubb means this is the best code he has ever seen.
    That is incorrect.



  19. The Following 2 Users Say Thank You to Blubb1337 For This Useful Post:

    alexzor (11-04-2010),Jason (11-03-2010)

  20. #15
    0rbit's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Ireland.
    Posts
    212
    Reputation
    15
    Thanks
    724
    My Mood
    Amused
    Quote Originally Posted by jabbathehutt View Post
    Blubb means this is the best code he has ever seen.
    If I must say so myself, no. It's not.
    I must admit I have done better.

    I read all PMs and VMs.
    If you add me on MSN, PM me here so I know who you are, or I will not accept.

    Free Trainer Template: Want this trainer template with your name on it? PM me. (I ain't using it)
    My Stuffs: IWIFix v1.11 | HLoad v1.00b | MW2Hack v1.0 Final | [Tut] Ingame Console/Textbox in DirectX
    Current status: Being awesome.. Duh

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] [Code]Unlock All Achievements On Black Ops
    By xbeatsszzx in forum Call of Duty Black Ops Server & GSC Modding
    Replies: 14
    Last Post: 05-06-2011, 02:10 PM
  2. bf2 need help to unlock all guns
    By teisisnoob in forum Battlefield 2 Hacks & Cheats
    Replies: 1
    Last Post: 06-27-2009, 04:40 PM
  3. SuperSteam v2.03 Cracked Steam Client - Unlock all steam games in your account!!!
    By tdude511 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 7
    Last Post: 04-16-2009, 05:58 PM
  4. HOW TO UNLOCK ALL WEAPONS! +GP HACK
    By megaspeek in forum Combat Arms Hacks & Cheats
    Replies: 17
    Last Post: 01-23-2009, 12:44 PM
  5. here is how to unlock all slots 5-8
    By shadowsecret in forum WarRock - International Hacks
    Replies: 3
    Last Post: 04-03-2007, 08:43 AM