PDA

View Full Version : Tutorial to Make a Trainer


DuoMaxwell
12-21-2004, 04:12 PM
Hello everyone. I have begun coding in Visual Basic 6.0 Professional a while ago. I am pretty "fluent" in the "language" and I would like to have a tutorial on how to make a trainer for a game. If somebody could make one or lead me to an existing tutorial I would be very grateful.

P.S. First, I'm sorry if this is off subject as I am a "n00b" on this forum board.
Second, Please include an example of making a trainer.
Third, Please no flame, I don't appreciate it and will be ignoring it. If you have a complaint please state it in a constructive way or else it won't be read (by me at least).

- Duo Maxwell

mango
12-21-2004, 05:31 PM
go to www.gamehacking.com. Lots of help there

thedarklegend
01-29-2005, 05:59 AM
Here is some code i've dug up, pretty simply. I've also posted it here (http://www.dan-gibbs.com/dl/tutorial02.php).

Heres some form code that needa editing:

And heres some form code from a trainer i made which should be pretty easy to edit.
Private Const m_cheatname1_Code_Location As Long = &HADDRESS ' the mem address goes here. E.g 12345

Private Sub cmdCheat1_Click()

Dim buffer(2) As Byte '2, the number of buffers, edit accordingly
buffer(0) = &H01
buffer(1) = &H02
buffer(2) = &H03

If WriteBytes("GAME WINDOW NAME", m_cheatname1_Code_Location, buffer()) = True Then
MsgBox "The Cheat Was Enabled " & vbCrLf & "<Cheat Name> is now on ", vbInformation, "Done"
Else
MsgBox "Cheat Could not be enabled! " & vbCrLf & "Please check that <game> is currently running!", vbCritical, "ERROR"
End If
End Sub

Private Sub cmdExit_Click()
End
End Sub


Should make a bit more sense, posted wrong form code sorry....

thedarklegend
01-29-2005, 06:00 AM
The module code is too long to post so check out that link

DABhand
01-29-2005, 07:10 PM
Hey may know what VB is but you best explain what the hex codes are :P

thedarklegend
01-30-2005, 05:39 AM
Well haxadecimal is pretty easy to learn, just google it. They are the memory addresses that are edited to make the cheats work. To find these memory addresses look here (http://www.dan-gibbs.com/dl/tutorial01.php) . If you really want to get into making cheats then learning some ASM would be good. With that source code it will be very simple to create a first trainer that can freeze values such as ammo and lives.

Find memory here (http://www.dan-gibbs.com/dl/tutorial01.php)

Find source code here (http://www.dan-gibbs.com/dl/tutorial02.php)

Just ask if you need any help with it as i kind of rushed the tutorial

DABhand
01-30-2005, 08:49 AM
I mean to say He and not Hey at the start of my post ;) :P

The most easiest one to remember is 90h which is NOP

Personally I hate using NOP's but in some games its the only thing you can do :P

lokesh
02-06-2005, 09:21 AM
Instead of making trainer , I would prefer downloading Game Trainers from the Net!

DABhand
02-06-2005, 02:43 PM
Your quite the moaner arent you dude ;) hehe

limbofix
03-01-2005, 11:46 AM
I have a trainer for Shade-Wrath of Angels (PC) that is not working properly, and I would like to ask if any of you guys want to take a good look at it n check what is wrong...
The trainer keeps the health bar up but the player die, probally the source are wrong...don't know :) :1drink:

limbofix
03-01-2005, 11:49 AM
the trainer can be downloaded here:


http://dlh.net/cheats/pc/english/shade+wrath+of+angels/trainer.html


thx :sword:

hatriq
03-16-2005, 09:39 AM
the new patch has been out for over a month does anyone plan on putting out a trainer or at least a nocd fix for this game?

Thank You
hatriq

kukkie
04-08-2005, 02:28 AM
The patch is out,
the trainer sucks
who has a working trainer
who was made a working trainer

Thanks Kukkie :run:

Creativity
05-11-2005, 01:24 PM
Try downloading these great tools:
Game trainer Studio 1.6.2 by Epsilon(GTS 1.6.2)
This software is WYSIWYG tool, you need to arrange the elements on a form and it will generate the ASM code and compile it and hence the output will be really small and helps to defeat DMA too,example games like Commandos:BTCOD. It contains many tools and you can even add Custom codes into your trainer
Trainers created by me for games like Chris sawyer's Locomotion,Car tycoon,Need for speed PU,Revolt which are available for download at Megagames site
Artmoney 7.08 or later
Helps you to search the memory addresses exactly and its really fast in making it. another feature is it is able to Hack DMA(Dynamic memory allocation)

Tsearch 1.6b
Helps you to search memory adresses for particular values,Artmoney may sometime fail but Tsearch will not.It even generates Poke code for TMK 1.51

Trainer maker kit 1.51(TMK 1.51)
yet another tool for creating executable trainers same like GTS 1.6.2 but it lacks DMA hacking and exe generated by it is large even without a bitmap or any images

Enjoy, making trainers
Ramz_creativity
(Ramz_creativity@yahoo.co.uk)

talldude227
11-28-2005, 07:14 PM
I am programing in VB .net 2003, and would like some sample code for that. The code previosly listed doesn't work for 2003. Also the links you gave seem to be dead.

ob.nikon
06-06-2006, 06:49 AM
Try downloading these great tools:
Game trainer Studio 1.6.2 by Epsilon(GTS 1.6.2)
This software is WYSIWYG tool, you need to arrange the elements on a form and it will generate the ASM code and compile it and hence the output will be really small and helps to defeat DMA too,example games like Commandos:BTCOD. It contains many tools and you can even add Custom codes into your trainer
Trainers created by me for games like Chris sawyer's Locomotion,Car tycoon,Need for speed PU,Revolt which are available for download at Megagames site
Artmoney 7.08 or later
Helps you to search the memory addresses exactly and its really fast in making it. another feature is it is able to Hack DMA(Dynamic memory allocation)

Tsearch 1.6b
Helps you to search memory adresses for particular values,Artmoney may sometime fail but Tsearch will not.It even generates Poke code for TMK 1.51

Trainer maker kit 1.51(TMK 1.51)
yet another tool for creating executable trainers same like GTS 1.6.2 but it lacks DMA hacking and exe generated by it is large even without a bitmap or any images

Enjoy, making trainers
Ramz_creativity
(Ramz_creativity@yahoo.co.uk)



I search the first one in Google and it found me only non-help sites :(
From where can I download those files?
Because I'm really need it :]

thanks,
Ofir.

frogcity
05-25-2007, 09:06 PM
use a game trainer maker software to make a game trainer
http://www.lazygame.com/mesetup.exe

Hello everyone. I have begun coding in Visual Basic 6.0 Professional a while ago. I am pretty "fluent" in the "language" and I would like to have a tutorial on how to make a trainer for a game. If somebody could make one or lead me to an existing tutorial I would be very grateful.

P.S. First, I'm sorry if this is off subject as I am a "n00b" on this forum board.
Second, Please include an example of making a trainer.
Third, Please no flame, I don't appreciate it and will be ignoring it. If you have a complaint please state it in a constructive way or else it won't be read (by me at least).

- Duo Maxwell

albi
10-19-2007, 03:51 AM
use a game trainer maker software to make a game trainer
http://www.lazygame.com/mesetup.exe

thats not a trainer maker

Narlene
12-07-2007, 09:24 PM
thats not a trainer maker

Yeah but who cares
Everything doesn't have to be perfect
lol:)