| View previous topic :: View next topic |
| Author |
Message |
Chidori Grandmaster Cheater
Reputation: 1
Joined: 25 Apr 2008 Posts: 691 Location: Canada
|
Posted: Thu Aug 07, 2008 10:29 pm Post subject: i want to learn how to hack |
|
|
| i am tired of asking people for hacks or searching for hacks i want to learn how to make my own does anyone have tutorial for this, like for writing dll files and injecting and stuff.
|
|
| Back to top |
|
 |
MSxMex Advanced Cheater
Reputation: 0
Joined: 16 May 2008 Posts: 66
|
Posted: Thu Aug 07, 2008 11:14 pm Post subject: Re: i want to learn how to hack |
|
|
| chidori257 wrote: | | i am tired of asking people for hacks or searching for hacks i want to learn how to make my own does anyone have tutorial for this, like for writing dll files and injecting and stuff. |
well for cheatengine you could learn ASM, go to the ASM tutorials section here
|
|
| Back to top |
|
 |
TeNsIOn Advanced Cheater
Reputation: 0
Joined: 10 Jun 2008 Posts: 66
|
Posted: Sat Aug 09, 2008 11:42 am Post subject: |
|
|
yes thanks MSxMex, you need to start at the basics. I would learn ASM so you can write scripts for CE and example do CRC bypasses stuff. then u should learn delphi cuz u need to learn how ce works and mebe make ur own uce. then learn c++ cuz lets be honest that is the best programming language. its versitale (im a nub i cant spell) and faster. and visual c cuz thats wut windows uses. this probably wasnt useful so im sorry.
_________________
Respect List
- DarkByte
- x0r
- Wiccaan
_________________
My Projects
_________________
- Combat Arms D3D Hook (Just need a bypass)
- Maple Story Trainer
- WarRock D3D Hook (needs bypass) |
|
| Back to top |
|
 |
Chidori Grandmaster Cheater
Reputation: 1
Joined: 25 Apr 2008 Posts: 691 Location: Canada
|
Posted: Sat Aug 09, 2008 12:36 pm Post subject: |
|
|
| TeNsIOn wrote: | | yes thanks MSxMex, you need to start at the basics. I would learn ASM so you can write scripts for CE and example do CRC bypasses stuff. then u should learn delphi cuz u need to learn how ce works and mebe make ur own uce. then learn c++ cuz lets be honest that is the best programming language. its versitale (im a nub i cant spell) and faster. and visual c cuz thats wut windows uses. this probably wasnt useful so im sorry. | but when doing asm where do i write the scripts it doesnt tell me that
|
|
| Back to top |
|
 |
TeNsIOn Advanced Cheater
Reputation: 0
Joined: 10 Jun 2008 Posts: 66
|
Posted: Sat Aug 09, 2008 6:28 pm Post subject: |
|
|
View my pics. you have a choice betwwe Auto-Assemble, and Script engine. auto-assemble injects into an address and script engine im not to sure but probably injects into the whole process. please correct me if im wrong.
| Description: |
| First open your process and then press View Memory |
|
| Filesize: |
48.07 KB |
| Viewed: |
5071 Time(s) |

|
| Description: |
|
| Filesize: |
118.85 KB |
| Viewed: |
5071 Time(s) |

|
| Description: |
|
| Filesize: |
119.06 KB |
| Viewed: |
5071 Time(s) |

|
_________________
Respect List
- DarkByte
- x0r
- Wiccaan
_________________
My Projects
_________________
- Combat Arms D3D Hook (Just need a bypass)
- Maple Story Trainer
- WarRock D3D Hook (needs bypass)
Last edited by TeNsIOn on Sat Aug 09, 2008 7:43 pm; edited 1 time in total |
|
| Back to top |
|
 |
Chidori Grandmaster Cheater
Reputation: 1
Joined: 25 Apr 2008 Posts: 691 Location: Canada
|
Posted: Sat Aug 09, 2008 7:06 pm Post subject: |
|
|
| TeNsIOn wrote: | | View my pics. you have a choice betwwe Auto-Assemble, and Script engine. auto-assemble injects into an address and script engine im to sure but probably injects into the whole process. please correct me if im wrong. | oooo i got it but how do i writ the scripts now lol
|
|
| Back to top |
|
 |
TeNsIOn Advanced Cheater
Reputation: 0
Joined: 10 Jun 2008 Posts: 66
|
|
| Back to top |
|
 |
Chidori Grandmaster Cheater
Reputation: 1
Joined: 25 Apr 2008 Posts: 691 Location: Canada
|
Posted: Sat Aug 09, 2008 9:10 pm Post subject: |
|
|
| TeNsIOn wrote: | learn ASM lol!  | i went to a tutorial but it dont tell me howto write scripts
|
|
| Back to top |
|
 |
TeNsIOn Advanced Cheater
Reputation: 0
Joined: 10 Jun 2008 Posts: 66
|
Posted: Sat Aug 09, 2008 10:06 pm Post subject: |
|
|
why did you post that as sig?
ok ANYWAYS, if you do cheat engine tut, it shows you how to inject a code. thats basically what you want to do. Here is my pic tut.
By the way, please remove that sig...i'm just trying to help you and ur embarrising me...why would u do that to the person who is helping you lol?
I think ur talking about creating ur own godmode or whatever hack script. i dont really know, but it is a little more complicated and you need to learn ASM!!!!!! I am not joking.
Here is an example godmode code:
| Code: | [ENABLE]
label(returnhere)
label(originalcode)
label(exit)
label(meowmix)
tutorial.exe+58E48:
jmp tutorial.exe+60000
nop
returnhere:
tutorial.exe+60000: // Code cave 1
cmp [ebx+310],#0 //If health is 0 jump to 0400420
je tutorial.exe+00420 // ^^
jmp tutorial.exe+00450 // If health is not 0 continue on next level
tutorial.exe+00450: // next level
cmp [ebx+310],#1000 // if health is 1000 jump to death script
je tutorial.exe+00500 // If health is not 1000 continue to next level
jmp meowmix // Lol I love catz
meowmix:
cmp [ebx+310],#160 // Compare health to 160
jl tutorial.exe+00488 // If it's lower than 160 jump to target
jmp tutorial.exe+00360 // If its above 160, move heath to 0
tutorial.exe+00488:
add [ebx+310],eax
jmp returnhere
/////////////////////////////////////////////////////////////
tutorial.exe+00360:
mov [ebx+310],#0
jmp returnhere
/////////////////////////////////////////////////////////////
tutorial.exe+00420:
add [ebx+310],#1000
jmp returnhere
/////////////////////////////////////////////////////////////
tutorial.exe+00500:
add [ebx+310],#-1001
/////////////////////////////////////////////////////////////
//this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
//sub [ebx+00000310],eax
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat |
If you need anymore help please go to this post: http://forum.cheatengine.org/viewtopic.php?t=112385
| Description: |
|
| Filesize: |
123.78 KB |
| Viewed: |
5042 Time(s) |

|
| Description: |
|
| Filesize: |
24.46 KB |
| Viewed: |
5042 Time(s) |

|
| Description: |
|
| Filesize: |
13.17 KB |
| Viewed: |
5042 Time(s) |

|
| Description: |
|
| Filesize: |
67.28 KB |
| Viewed: |
5042 Time(s) |

|
_________________
Respect List
- DarkByte
- x0r
- Wiccaan
_________________
My Projects
_________________
- Combat Arms D3D Hook (Just need a bypass)
- Maple Story Trainer
- WarRock D3D Hook (needs bypass) |
|
| Back to top |
|
 |
Chidori Grandmaster Cheater
Reputation: 1
Joined: 25 Apr 2008 Posts: 691 Location: Canada
|
Posted: Sun Aug 10, 2008 9:46 pm Post subject: |
|
|
| TeNsIOn wrote: | why did you post that as sig?
ok ANYWAYS, if you do cheat engine tut, it shows you how to inject a code. thats basically what you want to do. Here is my pic tut.
By the way, please remove that sig...i'm just trying to help you and ur embarrising me...why would u do that to the person who is helping you lol?
I think ur talking about creating ur own godmode or whatever hack script. i dont really know, but it is a little more complicated and you need to learn ASM!!!!!! I am not joking.
Here is an example godmode code:
| Code: | [ENABLE]
label(returnhere)
label(originalcode)
label(exit)
label(meowmix)
tutorial.exe+58E48:
jmp tutorial.exe+60000
nop
returnhere:
tutorial.exe+60000: // Code cave 1
cmp [ebx+310],#0 //If health is 0 jump to 0400420
je tutorial.exe+00420 // ^^
jmp tutorial.exe+00450 // If health is not 0 continue on next level
tutorial.exe+00450: // next level
cmp [ebx+310],#1000 // if health is 1000 jump to death script
je tutorial.exe+00500 // If health is not 1000 continue to next level
jmp meowmix // Lol I love catz
meowmix:
cmp [ebx+310],#160 // Compare health to 160
jl tutorial.exe+00488 // If it's lower than 160 jump to target
jmp tutorial.exe+00360 // If its above 160, move heath to 0
tutorial.exe+00488:
add [ebx+310],eax
jmp returnhere
/////////////////////////////////////////////////////////////
tutorial.exe+00360:
mov [ebx+310],#0
jmp returnhere
/////////////////////////////////////////////////////////////
tutorial.exe+00420:
add [ebx+310],#1000
jmp returnhere
/////////////////////////////////////////////////////////////
tutorial.exe+00500:
add [ebx+310],#-1001
/////////////////////////////////////////////////////////////
//this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
//sub [ebx+00000310],eax
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat |
If you need anymore help please go to this post: http://forum.cheatengine.org/viewtopic.php?t=112385 | ty and ill take it off my sig
|
|
| Back to top |
|
 |
|