| View previous topic :: View next topic |
| Author |
Message |
bergerman123 Newbie cheater
Reputation: 0
Joined: 09 Dec 2008 Posts: 17 Location: Underground
|
Posted: Wed Dec 10, 2008 5:05 pm Post subject: Learning C++but howdoes this relate to creating/coding hacks |
|
|
| im starting to learn C++ on the intrenat and reading a couple books but how does this relate to makeing/coding hacks, like if you read C++ books how are you going to be able to know how to make and code hacks?
|
|
| Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Wed Dec 10, 2008 5:16 pm Post subject: Re: Learning C++but howdoes this relate to creating/coding h |
|
|
| bergerman123 wrote: | | im starting to learn C++ on the intrenat and reading a couple books but how does this relate to makeing/coding hacks, like if you read C++ books how are you going to be able to know how to make and code hacks? |
after learning the syntax, you study and learn the techniques of hacking.
_________________
|
|
| Back to top |
|
 |
Innovation Grandmaster Cheater
Reputation: 12
Joined: 14 Aug 2008 Posts: 617
|
Posted: Wed Dec 10, 2008 5:17 pm Post subject: |
|
|
Books show you the basic layout and how to code easy stuff so you don't get confused jumping to harder things.
- Examples are always what helped me -
If you are making a DLL trainer and want to edit the byte at address 00564ADD to 90 (no operation):
| Code: | | *(BYTE*)0x00564ADD = 0x90; |
If you are making an executable trainer:
Read this tutorial: http://theoklibrary.org/showthread.php?t=296
Just look at the many sources of C++ trainers/bots to learn.
Last edited by Innovation on Wed Dec 10, 2008 9:21 pm; edited 1 time in total |
|
| Back to top |
|
 |
pkedpker Master Cheater
Reputation: 1
Joined: 11 Oct 2006 Posts: 412
|
Posted: Wed Dec 10, 2008 5:31 pm Post subject: |
|
|
learn the basics of C++ which will get up to the pointer part and explain to you exactly what memory is.. when you know that.. you will know how to use C++ to alter your RAM Data (memory aka cheat engine hack!).
then you will get more and more knowledge as you keep learning.
_________________
|
|
| Back to top |
|
 |
bergerman123 Newbie cheater
Reputation: 0
Joined: 09 Dec 2008 Posts: 17 Location: Underground
|
Posted: Wed Dec 10, 2008 5:33 pm Post subject: |
|
|
| ok but i did cheat engine on some flash player games and got it to work like swords and sandals 2 and boxhead zombie wars, but now what do i do for like combat arms
|
|
| Back to top |
|
 |
pkedpker Master Cheater
Reputation: 1
Joined: 11 Oct 2006 Posts: 412
|
Posted: Wed Dec 10, 2008 5:44 pm Post subject: |
|
|
for combat arms its protected with a hackshield if you want to make aimbot for that game or simply a ESP or wall hack you have to learn how to do DLL injections those are undetected. and thats how s0beit makes hacks for it. It would require u to learn C++ and go to s0beit's site where he hosts his free version of his hack for combat arms and he put a tutorial source code for combat arms it might help u get started..
it's um.. thisgamesux.net i believe.
_________________
|
|
| Back to top |
|
 |
bergerman123 Newbie cheater
Reputation: 0
Joined: 09 Dec 2008 Posts: 17 Location: Underground
|
Posted: Wed Dec 10, 2008 6:09 pm Post subject: |
|
|
| ok i have the source codes from thisamesux.net that sobeit made and gave to us now how would i go about makeing a simple wallhack for the game, like what do i need to use out of the codes
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Wed Dec 10, 2008 10:44 pm Post subject: |
|
|
| bergerman123 wrote: | | ok i have the source codes from thisamesux.net that sobeit made and gave to us now how would i go about makeing a simple wallhack for the game, like what do i need to use out of the codes |
This is harder than you think. Don't even bother if you are a beginner.
Most wallhacks hook the games renderer. If you don't have knowledge in whatever API the game is written in (DirectX, OpenGL, etc) then you are boned in this regard.
You can also try finding the function that draws the world, and go from there.
|
|
| Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Thu Dec 11, 2008 1:55 am Post subject: |
|
|
| inoobzx wrote: | Books show you the basic layout and how to code easy stuff so you don't get confused jumping to harder things.
- Examples are always what helped me -
If you are making a DLL trainer and want to edit the byte at address 00564ADD to 90 (no operation):
| Code: | | *(BYTE*)0x00564ADD = 0x90; |
If you are making an executable trainer:
Read this tutorial: http://theoklibrary.org/showthread.php?t=296
Just look at the many sources of C++ trainers/bots to learn. |
http://noz3001.wordpress.com/2007/03/05/writing-a-trainer/
|
|
| Back to top |
|
 |
|