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 


[Delphi] WriteProcessMemory
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
Reak
I post too much
Reputation: 0

Joined: 15 May 2007
Posts: 3496

PostPosted: Fri Oct 05, 2007 2:14 pm    Post subject: [Delphi] WriteProcessMemory Reply with quote

hey guys,

Well I wanna start making trainers for some noob games w/o a GameGuard.
I wanna do that with delphi.
I've seen a thread with delphi WriteProcessMemory, but I can't find a tutorial for it. Can someone post one or explain me a lil bit how to use it?

For example:
I wanna hack In a simple program like..hmm doesn't matter Very Happy
So I wanna assemble on 0046BDAB like in an AA Script
Code:
0046BDAB:
nop

how?
is this easy ?
tell me please Smile

thanx.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Oct 05, 2007 2:27 pm    Post subject: Reply with quote

So you want to write a nop with WriteProcessMemory?

Sure it's easy, the opcode for NOP is 90, so that's what you would write to it.
Back to top
View user's profile Send private message
Reak
I post too much
Reputation: 0

Joined: 15 May 2007
Posts: 3496

PostPosted: Fri Oct 05, 2007 2:34 pm    Post subject: Reply with quote

slovach wrote:
So you want to write a nop with WriteProcessMemory?

Sure it's easy, the opcode for NOP is 90, so that's what you would write to it.


lol it's just an example. Im looking for an tut how to do that all.
read carefully pl0x
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: Fri Oct 05, 2007 4:37 pm    Post subject: Reply with quote

You mean a tutorial on a trainer or a tutorial on how to use WriteProcessMemory.
_________________


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
Reak
I post too much
Reputation: 0

Joined: 15 May 2007
Posts: 3496

PostPosted: Sat Oct 06, 2007 1:53 am    Post subject: Reply with quote

mhhh...isn't it almost the same ?
I wanna use WriteProcessMemory to make trainers. So a tut about trainers with WriteProcessMemory Very Happy.
Back to top
View user's profile Send private message
SXGuy
I post too much
Reputation: 0

Joined: 19 Sep 2006
Posts: 3551

PostPosted: Sat Oct 06, 2007 4:01 am    Post subject: Reply with quote

www.msdn.com
_________________
Proud member of "The DACEF" (Distruction Against Criminal Egotistical Forces"

Sign up today and receive your free "I Hate x0r Badge"
Back to top
View user's profile Send private message
Noz3001
I'm a spammer
Reputation: 26

Joined: 29 May 2006
Posts: 6220
Location: /dev/null

PostPosted: Sat Oct 06, 2007 4:08 am    Post subject: Reply with quote

Code:
BYTE IrTehHax = 90;
int Writted = 0;
WriteProcessMemory(hProcess, (LPVOID)0x0046BDAB, &IrTehHax, sizeof(IrTehHax), &Writted);


Ofcourse, you might wanna OpenProcess to get hProcess.

GL Making this delphi
Back to top
View user's profile Send private message MSN Messenger
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Sat Oct 06, 2007 4:59 am    Post subject: Reply with quote

0x90 = nop in asm

it's easy !!!


rEakW0n wrote:
mhhh...isn't it almost the same ?
I wanna use WriteProcessMemory to make trainers. So a tut about trainers with WriteProcessMemory Very Happy.


Fuck Tuts !, you don't know ? don't try -_-

edit: go on msn i'll help you
Back to top
View user's profile Send private message
Noz3001
I'm a spammer
Reputation: 26

Joined: 29 May 2006
Posts: 6220
Location: /dev/null

PostPosted: Sat Oct 06, 2007 5:27 am    Post subject: Reply with quote

Kaspersky wrote:
0x90 = nop in asm

it's easy !!!


rEakW0n wrote:
mhhh...isn't it almost the same ?
I wanna use WriteProcessMemory to make trainers. So a tut about trainers with WriteProcessMemory Very Happy.


Fuck Tuts !, you don't know ? don't try -_-

edit: go on msn i'll help you


*Ehem* *Coughs*
Back to top
View user's profile Send private message MSN Messenger
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Sat Oct 06, 2007 5:36 am    Post subject: Reply with quote

@ reakw0n

If you wanna build a trainer for MS with Delphi using WMP it wont work for you.

@ noz's the leetness

; )
Back to top
View user's profile Send private message
SXGuy
I post too much
Reputation: 0

Joined: 19 Sep 2006
Posts: 3551

PostPosted: Sat Oct 06, 2007 7:12 am    Post subject: Reply with quote

Nozticales rulez
_________________
Proud member of "The DACEF" (Distruction Against Criminal Egotistical Forces"

Sign up today and receive your free "I Hate x0r Badge"
Back to top
View user's profile Send private message
Reak
I post too much
Reputation: 0

Joined: 15 May 2007
Posts: 3496

PostPosted: Sat Oct 06, 2007 2:05 pm    Post subject: Reply with quote

Kaspersky wrote:
@ reakw0n

If you wanna build a trainer for MS with Delphi using WMP it wont work for you.

@ noz's the leetness

; )


nahw I dont want to make trainers for maple. Just 4 fun for some noob games.

I get on icq in like 3-4 hours cuz Im not @ home atm.

thx @ all btw
Back to top
View user's profile Send private message
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Sun Oct 07, 2007 6:06 am    Post subject: Reply with quote

rEakW0n wrote:
Kaspersky wrote:
@ reakw0n

If you wanna build a trainer for MS with Delphi using WMP it wont work for you.

@ noz's the leetness

; )


nahw I dont want to make trainers for maple. Just 4 fun for some noob games.

I get on icq in like 3-4 hours cuz Im not @ home atm.

thx @ all btw


Renko wrote:
Don't use @ too much -_-"


btw, wtf is "I'm not @ home atm" ?

can't you say it without the @ ;s ?
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sun Oct 07, 2007 10:59 am    Post subject: Reply with quote

you used @ but are confused to what exactly it is?
Back to top
View user's profile Send private message
Renkokuken
GO Moderator
Reputation: 4

Joined: 22 Oct 2006
Posts: 3249

PostPosted: Sun Oct 07, 2007 11:22 am    Post subject: Reply with quote

Kaspersky wrote:
rEakW0n wrote:
Kaspersky wrote:
@ reakw0n

If you wanna build a trainer for MS with Delphi using WMP it wont work for you.

@ noz's the leetness

; )


nahw I dont want to make trainers for maple. Just 4 fun for some noob games.

I get on icq in like 3-4 hours cuz Im not @ home atm.

thx @ all btw


Renko wrote:
Don't use @ too much -_-"


btw, wtf is "I'm not @ home atm" ?

can't you say it without the @ ;s ?
"I'm not at home at the moment."

"Thanks everyone, by the way."
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