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 


adding "hacks" to a 3rd gen language
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
headriot
How do I cheat?
Reputation: 0

Joined: 11 Sep 2007
Posts: 4

PostPosted: Tue Sep 11, 2007 2:42 pm    Post subject: adding "hacks" to a 3rd gen language Reply with quote

how can i insert a "hack" which i would use from cheat engine,
lets just say the address to freeze the time from minesweeper.
how could i put that into VB6 and make it so it auto attaches to minesweeper.
and on the click of a button it freezes the time?

obviously minesweeper is a poor example i just want to be able to learn how to do this,
if its possible that is.

I only have VB6 atm, im doing a computing course in college atm and soon im learning delphi.
cant wait.
+rep for helping.
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Tue Sep 11, 2007 3:00 pm    Post subject: Reply with quote

you can't "inset a hack" from CE to a client

you have to get the address and change the memory

_________________
Back to top
View user's profile Send private message
headriot
How do I cheat?
Reputation: 0

Joined: 11 Sep 2007
Posts: 4

PostPosted: Tue Sep 11, 2007 3:05 pm    Post subject: Reply with quote

no i mean i want to know how to code a button in VB so when i click it, it does what it does in CE.
so i can just mess about and create a stupid minesweeper program.
Back to top
View user's profile Send private message
lurc
Grandmaster Cheater Supreme
Reputation: 2

Joined: 13 Nov 2006
Posts: 1900

PostPosted: Tue Sep 11, 2007 3:20 pm    Post subject: Reply with quote

look at the coding of the CE, and see how it works.
then change it to VB

_________________
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Tue Sep 11, 2007 3:24 pm    Post subject: Reply with quote

oh theres a way to do that

is it WriteProcessMemory / WriteProcessMemoryEx ?

i forget, appalsap knows im sure

_________________
Back to top
View user's profile Send private message
TheSorc3r3r
I post too much
Reputation: 0

Joined: 06 Sep 2006
Posts: 2404

PostPosted: Tue Sep 11, 2007 4:22 pm    Post subject: Reply with quote

WriteProcessMemory, inject a DLL
_________________


Don't laugh, I'm still learning photoshop!
Back to top
View user's profile Send private message
sponge
I'm a spammer
Reputation: 1

Joined: 07 Nov 2006
Posts: 6009

PostPosted: Tue Sep 11, 2007 4:41 pm    Post subject: Reply with quote

TheSorc3r3r wrote:
WriteProcessMemory, inject a DLL

mmm -1 for handle. in gg protected stuff that should work i think.... at least for RPM.

_________________
Back to top
View user's profile Send private message
Symbol
I'm a spammer
Reputation: 0

Joined: 18 Apr 2007
Posts: 5094
Location: Israel.

PostPosted: Tue Sep 11, 2007 4:47 pm    Post subject: Reply with quote

You can use WriteProcessMemory() and make a trainer/inject a dll, but you can also make a trainer with Cheat Engine 5.3, press the "Advanced Options" and then press "Ok" and start building...
Oh and make sure your .CT is loaded...
Back to top
View user's profile Send private message
Programmer
Cheater
Reputation: 0

Joined: 02 Sep 2007
Posts: 48

PostPosted: Tue Sep 11, 2007 5:54 pm    Post subject: Reply with quote

Try hacking MapleStory with SQL!! Screw 3RD gen, 4th is where its at!
_________________
Back to top
View user's profile Send private message
headriot
How do I cheat?
Reputation: 0

Joined: 11 Sep 2007
Posts: 4

PostPosted: Wed Sep 12, 2007 11:54 am    Post subject: Reply with quote

Thanks for the help Smile
Im actually very new to VB so what you said didnt make much sense.
do i add the Write process memory etc. into the button coding.
and to "inject a .dll" does that mean i need to like write a code on startup
of this program to send a file to winmine.exe?

a link to a tutorial or similar coding website would also help ALOT.

and @ Programmer, lol i'd love to but i dont even know how to 3rd gen yet Sad

in college where only just learning how to convert binary hex and deniary using pascal, 2nd week of the course.

EDIT: i found "inject a .dll" inside of CE do i inject it into a program i make in VB?

EDIT:

Okay i've actually made a trainer and it works fine, thanks for the help there.

now i want to take it a step further and code it through Visual basics
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Wed Sep 12, 2007 2:29 pm    Post subject: Reply with quote

FindWindow
GetWindowThreadProcessId
OpenProcess
WriteProcessMemory

Look them up on MSDN.
Back to top
View user's profile Send private message
oib111
I post too much
Reputation: 0

Joined: 02 Apr 2007
Posts: 2947
Location: you wanna know why?

PostPosted: Wed Sep 12, 2007 4:19 pm    Post subject: Reply with quote

headriot wrote:
Thanks for the help Smile
Im actually very new to VB so what you said didnt make much sense.
do i add the Write process memory etc. into the button coding.
and to "inject a .dll" does that mean i need to like write a code on startup
of this program to send a file to winmine.exe?

a link to a tutorial or similar coding website would also help ALOT.

and @ Programmer, lol i'd love to but i dont even know how to 3rd gen yet Sad

in college where only just learning how to convert binary hex and deniary using pascal, 2nd week of the course.

EDIT: i found "inject a .dll" inside of CE do i inject it into a program i make in VB?

EDIT:

Okay i've actually made a trainer and it works fine, thanks for the help there.

now i want to take it a step further and code it through Visual basics


WriteProcessMemory is an standard API used for writing bytes to memory(API = Application Programming Interface). I am not sure if vb supoorts dll files, so you might have to make it in another language, but the API is the same still. Btw, you would make the button click inject the .dll file into the application you want to hack and then the .dll would do w/e it does. In this case writeprocessmemory.

Btw, the inject dll file option in CE injects into the current process that CE is attached too. I think xP, I havn't used CE in a very long time.

_________________


8D wrote:

cigs dont make people high, which weed does, which causes them to do bad stuff. like killing
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
kittonkicker
I post too much
Reputation: 1

Joined: 19 Apr 2006
Posts: 2171

PostPosted: Wed Sep 12, 2007 4:54 pm    Post subject: Reply with quote

Can you even call APIs in VB? I've never tried XD
_________________
All gone Sad
Back to top
View user's profile Send private message
oib111
I post too much
Reputation: 0

Joined: 02 Apr 2007
Posts: 2947
Location: you wanna know why?

PostPosted: Wed Sep 12, 2007 4:59 pm    Post subject: Reply with quote

you prolly can, but our not calling the API in vb, your coding a dll in C++ that does it
_________________


8D wrote:

cigs dont make people high, which weed does, which causes them to do bad stuff. like killing
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Programmer
Cheater
Reputation: 0

Joined: 02 Sep 2007
Posts: 48

PostPosted: Wed Sep 12, 2007 5:43 pm    Post subject: Reply with quote

kittonkicker wrote:
Can you even call APIs in VB? I've never tried XD


Yeah, but its fucking stupid =P

_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
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