Page 1 of 2 12 LastLast
Results 1 to 15 of 29

Hybrid View

  1. #1
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful

    Exclamation How to create a trainer ? source code revealed

    Hello everyone, i'll show you how to create a trainer with VB.NET and reveal the code of my software ( at the end ) : Extinction [II] Trainer

    #1 : First of all download the file in the attachment. ( All credits to Master131 )
    Virus Scans here : #1 - #2

    #2 : Open Visual Studio or Visual Basic and add an existing item, select Memory.vb downloaded previously.





    #3 : Put a Textbox and a button



    #4 : Double Clic on the button and put this code :



    14081D994 is the adress as Float for Jump Height ( Single )
    1403744FC is the adress as Integer for Players Speed ( 4 Byte )

    ( Single = Float )
    ( Integer = 4 Bytes / 8 Bytes )
    ( Short = 2 Bytes )
    ( Byte = Byte )

    To know if the adress is a Byte / Short / Integer or Single open a CE table and see :

    ( as you can see, Jump height adress is a Float )




    So the previous code will write a value ( Textbox ) to 14081D994 as Float.



    With this code, when i'll clic on the button, Jump Height value will be the textbox
    Exemple : On the textbox, i write
    1000 = Super Jump
    39 = Default

    You can download my source in the attachment ! bye all !
    oh and sorry for my english !
    Virus Scan for source : #1 - #2
    <b>Downloadable Files</b> Downloadable Files

  2. The Following 21 Users Say Thank You to KingX735 For This Useful Post:

    amKarma (01-09-2014),andys365 (11-30-2013),butgar (10-31-2017),Cleante (06-07-2020),Diorega (09-27-2018),FsMzPanda (09-02-2018),harvard5026 (12-01-2013),Mauled (11-28-2013),Minnesota Dabs (12-15-2013),nanowall (09-02-2014),nectum93 (12-15-2013),NetinhoRJ (01-23-2014),NoteworthyGamingTv (01-24-2014),ottrwat (09-04-2019),piloterik (12-09-2013),Rikky (11-28-2013),SammyDoge1 (11-29-2013),sandyirawan346 (2 Weeks Ago),vmu123 (11-28-2013),ZusCoo (12-15-2013),_MILIER_ (04-21-2017)

  3. #2
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    //Approved

  4. #3
    Mauled's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,421
    Reputation
    212
    Thanks
    196
    My Mood
    Amazed
    Thanks for This, Maybe this is my chance to get my foot in the door to start learning

  5. #4
    gmack101's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    39
    My Mood
    Fine
    not bad i like it good job

  6. #5
    GTEUK1's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    76
    Reputation
    22
    Thanks
    64
    My Mood
    Cheeky
    Was going to say this was master131 memory class but see you give credits so + rep for that

    The problem many are having is the way they set up their project in the first place, I have not downloaded / tried the source but was interested in the memory module to see how it compared to others but then realised it was masters.

    I would assume your source gives many a template to work from but I do hope they learn from it as most copy / paste

    I will admit I used many sites to copy / paste but took time to learn what each bit did and why it did that

    My memory class is an adaptation of @Jorndel old 32bit memory class, I have made massive changes / adaptations and improved over time
    @master131 looks more efficient than many I have seen but I am more of a "I will use what works for me" type of guy.

    So download this and learn how it works and evolve from it .

  7. #6
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,668
    My Mood
    Breezy
    Just an FYI, an Integer is not 8 bytes, it's only 4. A Long is 8 bytes.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  8. The Following 2 Users Say Thank You to master131 For This Useful Post:

    Lovroman (11-29-2013),steebchen (12-15-2013)

  9. #7
    andys365's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    172
    My Mood
    Cheeky
    I keep on getting issues with, Return WriteMemory(New IntPtr(address), value), and it's giving me, "Arithmetic operation resulted in an overflow." even when I'm doing it the exact same way you did in the coding.

  10. #8
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    Quote Originally Posted by andys365 View Post
    I keep on getting issues with, Return WriteMemory(New IntPtr(address), value), and it's giving me, "Arithmetic operation resulted in an overflow." even when I'm doing it the exact same way you did in the coding.
    You didn't compile it as 64 bit app.

  11. #9
    andys365's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    172
    My Mood
    Cheeky
    Quote Originally Posted by Lovroman View Post
    You didn't compile it as 64 bit app.
    I figured that part out, but I don't understand why building his program works perfectly fine, while mine doesn't. I checked the build properties for his and nothing was under 64 bit...
    Last edited by andys365; 11-30-2013 at 02:28 AM.

  12. #10
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    Very nice but try to make a utube video explaining everything

    YOU ONLY LIVE ONCE


  13. #11
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    why don't guy's try to learn it yourself rather then trying to get spoon-fed more ?
    FBI got my PC...Hardcore cheating is paused atm..

  14. #12
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Oh btw : to fix this error : "Arithmetic operation resulted in an overflow."

    uncheck " prefer 32 bits "


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

    andys365 (11-30-2013)

  16. #13
    distiny's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    560
    Reputation
    67
    Thanks
    562
    My Mood
    Cynical
    Target CPU: x64
    FBI got my PC...Hardcore cheating is paused atm..

  17. #14
    KingX735's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    632
    Reputation
    49
    Thanks
    4,922
    My Mood
    Cheerful
    Quote Originally Posted by distiny View Post
    Target CPU: x64
    Yeah but you can't use 32 bits theme with x64..

  18. The Following User Says Thank You to KingX735 For This Useful Post:

    andys365 (11-30-2013)

  19. #15
    NooR123's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    352
    Reputation
    24
    Thanks
    3,457
    My Mood
    Amazed
    iw6mp64_ship.exe+44BF1D5 how do i use this in my code?


Page 1 of 2 12 LastLast

Similar Threads

  1. HOW TO CREATE A TRAINER ?
    By levin_klein22 in forum CrossFire Help
    Replies: 0
    Last Post: 10-20-2010, 04:16 AM
  2. [Request] How to make chams from source code [Spoonfed]
    By mutemulti in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 05-26-2010, 05:10 PM
  3. How to Edit a files source Code to change so that it is less detectable
    By zakodia in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 02-19-2010, 07:24 PM
  4. Replies: 7
    Last Post: 01-17-2010, 07:16 AM

Tags for this Thread