Additional Info
|
Ive been looking into codeing for awhile now but all the learning videos that ive found on youtube seem to belive that ive all ready understand some of what there going on about and as im very new and shiney to all of this i was wondering if anyone on here might be able to direct me to some materials that could give me a better understanding of basic codeing so that i could try and turn my hand to making my own trainers and to help me be able to read AoBs on my fav online games. |
Additional Info
|
if it's AoB's you're looking to learn about, do you at least know the basics of scanning with 4bytes, double, float etc? |
Additional Info
|
i know the basics for some games but others confuse me at times so i generally try each one intill i see something familar |
Additional Info
|
Not sure if you're ready for dealing with AoBs just yet, but if you wan't to give it a try, check out this tutorial I made https://konghack.com/topic/10171-a_quick_little_tutorial_on_aob_hacking_with_cheat_engine |
Additional Info
|
coding actual programs, and messing around with games are drastically different. if you only want to learn more about messing with games, you should read up on the cheat engine forums, and the help file included with CE. the tutorial that comes with cheat engine is also very useful for teaching you both basic and advanced techniques for the program. you dont really need to know any coding languages to make aob's, but knowing assembly, actionscript3, or lua will help. especially assembly
|
Additional Info
|
thenewcomer Posted on: 01/10/2016 5:43pm if you want to learn actual programming then my best advice is to find a language that you would actually use, try to find some kind of quide/tutorial/textbook for that language, and read a lot of source code. reading source code not only gets you familiar with the language and syntax, but it can also show you some interesting coding methods other people use. |
Additional Info
|
So I decided to learn c++ today, and ran into way too many issues doing so using downloadable programs, then I found this amazing website http://www.tutorialspoint.com/codingground.htm where I clicked c++ and I found http://www.tutorialspoint.com/compile_cpp_online.php a place online where I could practice some coding without having to worry about technical difficulties and installing software(all I had to do was to put in a code, click compile then execute). For any noobs like me interested in learning any language of coding, you can check out this dude's channel https://www.youtube.com/user/CodingMadeEasy/playlists, pick the language of coding you want to learn, skip the part where he explains the software requirements and jump straight into learing and practicing the coding using this website http://www.tutorialspoint.com/codingground.htm |
Additional Info
|
For simple command line programs this online thing is good enough. But when it comes to working with files and setting up a GUI it probably won't work. Setting up an environment for C++ is really easy actually. Some IDEs like Code::Blocks install everything you need in one go. But even setting up everything yourself is simple enough. I personally use GCC and Notepad++ to program in C/C++ and once you've set that up its pretty easy. At first i was using Dev-C++ and Code::Blocks but switched to that simpler setup for more control. Creating a GUI is still probably easier in an IDE though. |
Additional Info
|
For simple command line programs this online thing is good enough. But when it comes to working with files and setting up a GUI it probably won't work. Setting up an environment for C++ is really easy actually. Some IDEs like Code::Blocks install everything you need in one go. But even setting up everything yourself is simple enough. I personally use GCC and Notepad++ to program in C/C++ and once you've set that up its pretty easy. At first i was using Dev-C++ and Code::Blocks but switched to that simpler setup for more control. Creating a GUI is still probably easier in an IDE though.
|