Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


i want to learn how to hack

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking
View previous topic :: View next topic  
Author Message
Chidori
Grandmaster Cheater
Reputation: 1

Joined: 25 Apr 2008
Posts: 691
Location: Canada

PostPosted: Thu Aug 07, 2008 10:29 pm    Post subject: i want to learn how to hack Reply with quote

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
View user's profile Send private message AIM Address MSN Messenger
MSxMex
Advanced Cheater
Reputation: 0

Joined: 16 May 2008
Posts: 66

PostPosted: Thu Aug 07, 2008 11:14 pm    Post subject: Re: i want to learn how to hack Reply with quote

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
View user's profile Send private message
TeNsIOn
Advanced Cheater
Reputation: 0

Joined: 10 Jun 2008
Posts: 66

PostPosted: Sat Aug 09, 2008 11:42 am    Post subject: Reply with quote

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
View user's profile Send private message
Chidori
Grandmaster Cheater
Reputation: 1

Joined: 25 Apr 2008
Posts: 691
Location: Canada

PostPosted: Sat Aug 09, 2008 12:36 pm    Post subject: Reply with quote

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
View user's profile Send private message AIM Address MSN Messenger
TeNsIOn
Advanced Cheater
Reputation: 0

Joined: 10 Jun 2008
Posts: 66

PostPosted: Sat Aug 09, 2008 6:28 pm    Post subject: Reply with quote

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.


scripting1.JPG
 Description:
First open your process and then press View Memory
 Filesize:  48.07 KB
 Viewed:  5075 Time(s)

scripting1.JPG



scripting2.JPG
 Description:
then select this
 Filesize:  118.85 KB
 Viewed:  5075 Time(s)

scripting2.JPG



scripting3.JPG
 Description:
or select this
 Filesize:  119.06 KB
 Viewed:  5075 Time(s)

scripting3.JPG



_________________
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
View user's profile Send private message
Chidori
Grandmaster Cheater
Reputation: 1

Joined: 25 Apr 2008
Posts: 691
Location: Canada

PostPosted: Sat Aug 09, 2008 7:06 pm    Post subject: Reply with quote

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
View user's profile Send private message AIM Address MSN Messenger
TeNsIOn
Advanced Cheater
Reputation: 0

Joined: 10 Jun 2008
Posts: 66

PostPosted: Sat Aug 09, 2008 7:43 pm    Post subject: Reply with quote

learn ASM lol! Laughing Laughing
_________________
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
View user's profile Send private message
Chidori
Grandmaster Cheater
Reputation: 1

Joined: 25 Apr 2008
Posts: 691
Location: Canada

PostPosted: Sat Aug 09, 2008 9:10 pm    Post subject: Reply with quote

TeNsIOn wrote:
learn ASM lol! Laughing Laughing
i went to a tutorial but it dont tell me howto write scripts
Back to top
View user's profile Send private message AIM Address MSN Messenger
TeNsIOn
Advanced Cheater
Reputation: 0

Joined: 10 Jun 2008
Posts: 66

PostPosted: Sat Aug 09, 2008 10:06 pm    Post subject: Reply with quote

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? Crying or Very sad
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



step1.JPG
 Description:
 Filesize:  123.78 KB
 Viewed:  5046 Time(s)

step1.JPG



step2.JPG
 Description:
 Filesize:  24.46 KB
 Viewed:  5046 Time(s)

step2.JPG



step3.JPG
 Description:
 Filesize:  13.17 KB
 Viewed:  5046 Time(s)

step3.JPG



step4.JPG
 Description:
 Filesize:  67.28 KB
 Viewed:  5046 Time(s)

step4.JPG



_________________
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
View user's profile Send private message
Chidori
Grandmaster Cheater
Reputation: 1

Joined: 25 Apr 2008
Posts: 691
Location: Canada

PostPosted: Sun Aug 10, 2008 9:46 pm    Post subject: Reply with quote

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? Crying or Very sad
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
View user's profile Send private message AIM Address MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites