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 


What next (pls read full thread)

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine
View previous topic :: View next topic  
Author Message
Panic
How do I cheat?
Reputation: 0

Joined: 27 Apr 2008
Posts: 3

PostPosted: Wed Apr 30, 2008 6:12 pm    Post subject: What next (pls read full thread) Reply with quote

ok so, ive finished the tutorial a couple days ago. but recently ive tryd to hack ghost online n noticed tht there's way more to hacking then wat the tutorial teaches u. so i search a little..i find about trainers,ct's,bots and a whole lot more. so im wondering where do i start? could someone point me in the right direction?

thnx in advance.
Back to top
View user's profile Send private message
Chase Payne
Grandmaster Cheater
Reputation: 1

Joined: 20 Mar 2008
Posts: 533

PostPosted: Wed Apr 30, 2008 6:17 pm    Post subject: Reply with quote

Start with trainers first then go to AA, then try to write a trainer in c++ and other languages in vb6... that will keep you occupied for at least a year.
Back to top
View user's profile Send private message
Panic
How do I cheat?
Reputation: 0

Joined: 27 Apr 2008
Posts: 3

PostPosted: Wed Apr 30, 2008 6:23 pm    Post subject: Reply with quote

lol wow thnx bro but uh..
mind translating tht in noob?
AA, vb6, c++ ???
Back to top
View user's profile Send private message
Chase Payne
Grandmaster Cheater
Reputation: 1

Joined: 20 Mar 2008
Posts: 533

PostPosted: Wed Apr 30, 2008 6:41 pm    Post subject: Reply with quote

Auto assembly
Code:
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)

0041E8EA:
jmp newmem
nop
returnhere:

newmem:
cmp eax,#30
jl 00400488
jmp originalcode
00400488:
push eax
mov eax,#1000000
mov [edx+10],eax
pop eax
jmp returnhere //this is allocated memory, you have read,write,execute access
//place your code here


originalcode:
mov [edx+10],eax
mov ecx,[ebp-04]

exit:
jmp returnhere

C++
Code:
if (hunger > 50) {
   searchForFood();
}
else {
   searchForMate();
}

 

They are languages that tell what the computer should do.
Visual basic 6 is a programming software that allows you to create programs with C and more.
Back to top
View user's profile Send private message
Panic
How do I cheat?
Reputation: 0

Joined: 27 Apr 2008
Posts: 3

PostPosted: Wed Apr 30, 2008 7:00 pm    Post subject: Reply with quote

Chase Payne wrote:
Auto assembly
Code:
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)

0041E8EA:
jmp newmem
nop
returnhere:

newmem:
cmp eax,#30
jl 00400488
jmp originalcode
00400488:
push eax
mov eax,#1000000
mov [edx+10],eax
pop eax
jmp returnhere //this is allocated memory, you have read,write,execute access
//place your code here


originalcode:
mov [edx+10],eax
mov ecx,[ebp-04]

exit:
jmp returnhere

C++
Code:
if (hunger > 50) {
   searchForFood();
}
else {
   searchForMate();
}

 

They are languages that tell what the computer should do.
Visual basic 6 is a programming software that allows you to create programs with C and more.


like i dont need to copy those codes right? or do i?
lol damn im noob.
Back to top
View user's profile Send private message
Chase Payne
Grandmaster Cheater
Reputation: 1

Joined: 20 Mar 2008
Posts: 533

PostPosted: Wed Apr 30, 2008 7:04 pm    Post subject: Reply with quote

Lawl, I'm still quite new to this also... especially c++... no there just examples
Back to top
View user's profile Send private message
Psy
Grandmaster Cheater Supreme
Reputation: 1

Joined: 27 Mar 2008
Posts: 1366

PostPosted: Thu May 01, 2008 2:29 am    Post subject: Reply with quote

Quote:
Visual basic 6 is a programming software that allows you to create programs with C and more.

Ehh??
Back to top
View user's profile Send private message
Chase Payne
Grandmaster Cheater
Reputation: 1

Joined: 20 Mar 2008
Posts: 533

PostPosted: Thu May 01, 2008 8:56 am    Post subject: Reply with quote

Spam much? There's no need to quote that even if i was wrong. It's still a programming software... thats all he needed to know.
Back to top
View user's profile Send private message
Pr0digy
Expert Cheater
Reputation: 0

Joined: 17 Oct 2007
Posts: 134

PostPosted: Thu May 01, 2008 8:57 am    Post subject: Reply with quote

You should start by studying some Ebooks on computers and computer langauges, then from there try to pick up on a Coding language.
Back to top
View user's profile Send private message Send e-mail AIM Address
Psy
Grandmaster Cheater Supreme
Reputation: 1

Joined: 27 Mar 2008
Posts: 1366

PostPosted: Thu May 01, 2008 12:02 pm    Post subject: Reply with quote

Chase Payne wrote:
Spam much? There's no need to quote that even if i was wrong. It's still a programming software... thats all he needed to know.


You can't just tell someone to go and write c++ code in vb6 ffs...
Back to top
View user's profile Send private message
Chase Payne
Grandmaster Cheater
Reputation: 1

Joined: 20 Mar 2008
Posts: 533

PostPosted: Thu May 01, 2008 12:07 pm    Post subject: Reply with quote

[Psych] wrote:
Chase Payne wrote:
Spam much? There's no need to quote that even if i was wrong. It's still a programming software... thats all he needed to know.


You can't just tell someone to go and write c++ code in vb6 ffs...
Quote:
so im wondering where do i start? could someone point me in the right direction?

Quote:
Start with trainers first then go to AA, then try to write a trainer in c++ and other languages in vb6... that will keep you occupied for at least a year.

Start with trainers, then go to aa... if you finished that then try wiriting in vb6. This will keep you occupied for atleast a year or more...
I rewrote it for you Wink
Back to top
View user's profile Send private message
Labyrnth
Moderator
Reputation: 10

Joined: 28 Nov 2006
Posts: 6301

PostPosted: Thu May 01, 2008 1:46 pm    Post subject: Re: What next (pls read full thread) Reply with quote

Panic wrote:
ok so, ive finished the tutorial a couple days ago. but recently ive tryd to hack ghost online n noticed tht there's way more to hacking then wat the tutorial teaches u. so i search a little..i find about trainers,ct's,bots and a whole lot more. so im wondering where do i start? could someone point me in the right direction?
thnx in advance.


What i would do.

1. Learn to use cheat engine and methods trying to alter values you find in games. *By reading/doing tutorials and following along to see if you can get the same results. This is the most helpful and crucial part of the beginning. If you dont follow through here. You wont be successful later.
By doing the tutorials, and building confidence you will stay interested because you see results. Not only will you see results, you will have real questions when you get stuck and people will help because they see you have gotten somewhere and are not just asking for help without trying.

2. Then move to trying to learn to alter what you find from write,reads,access the address you found in games. *By adjusting assembly instructions. ** Learning some Basic assembly instructions at the same time. And starting to get to code injection.

3. Learn to defeat DMA and start to writing your own assembly and code injection/AA scripts using Cheat Engine.

4. Learn to defeat Code Shifting and continue learning to alter assembly and writing AA script and doing code injections.

5. Start using the debugger in Cheat Engine or any other one such as Ollydbg or IDA Pro. *This is where it gets fun, because you finally discover you can dig around in more then just games and understand how the program works in certain places or the whole thing if you have advanced that much.

6. All in the mean time learn a programming language. So by the time you are familiar with altering memory/assembly. You can start to learn to write your own trainer. ** This step is not absolutely needed since you can make a trainer using Cheat Engine ,TMK or GTS. And not worry about learning a language until your ready to bother. Some still do not code their own. But have many releases of trainers from Cheat Engine, TMK,GTS.
TMK = Trainer Maker Kit
GTS = Game Trainer Studio
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine 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