need help making a trainer ^^

07/18/2010 13:38 arabphoenix#1
now i know how to get the address without the revive hack,
i need to know if there is an easy to way to enter those address to a program
^^
i m not a programmer, dont know how to do this stuffs, but i would like to learn, if there is someone would like to help pm me ^^
07/18/2010 16:47 generichaxor#2
Good to see someone taking an interest in learning to code. This is probably the best game to test your skills on, considering there's NO security because AGE is cheap lol.

I would suggest checking the forums here first for finding the addresses you need. There's plenty of tutorial on here, you just have to look. As for the actual coding, google is going to be your best friend. You can find tutorials EVERYWHERE to learn to code with autoit, c++, c#, etc etc etc. I don't know just how inexperienced you are with programming, but it's not a problem. Basically, there's tutorials all over the internet to take anybody with a functioning brain from "coding retarded" to "I make hacks and you don't, bitch" lol. It will take time, and you will get mad, frustrated, and want to give up because you'll fuck up so much. Don't get yourself down or anything, and keep at it.
07/18/2010 21:59 arabphoenix#3
well i got the address i needed, i just want to learn how to make a program, for example when to activate the autopill without entering cheat engine everytime
07/18/2010 22:27 strikeraid#4
Well, in my sig is a link to my AutoIt source code. I think you'd be interested in the AIO autopots. It has 3 different ways to autopot and yours is included. Just put the address in the program and it'll do the rest. ^_^
07/19/2010 09:06 Mega Byte#5
I will possibly be cleaning up my old C# Map Fun source code and adding comments then uploading it for everyone to look at so that might be a big help to you :).

Remember to read up on ReadProcess Memory and Write Process Memory in the language you want to code in as well as what else you need to learn to program in that language.

Auto it is quite easy for beginers so is C# and VB ide prefer C# over the other two. Ive started using C++ for hacks and its great just very hard to get your head arround the very non descriptive error messages. I will be releasing code later and a tutorial showing how to easily make a hack in C++ that writes to memory :). If you are using C++ you will probably wanna make a dll and use memcpy.

Try googling for
Language ReadProcessMemory tutorial example
Language WriteProcessMemory tutorial example
Language How to make a trainer
Replacing Language with C# AutoIt C++ VB etc whatever you want to code in. There should be loads of examples. You may want to write a class to read and write certian data. I suggest you read up on If statement's data type's struct's class's switch case for loop while loop and are able to use basic maths before you attempt to do anything more advanced :D. Once you know the basic things of a language its not too hard to transfer to a new one as the syntax is quite similar between most.