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 


Keboard Hook.
Goto page Previous  1, 2, 3, 4  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Thu Jul 19, 2007 8:11 am    Post subject: Reply with quote

Well that can be made using a keyboard hook also.

rEakW0n wrote:

btw. in what is MzBot written? is there a source of it?


Probably Assembly/C

oib111 wrote:
Lol, your trying to make a bot aren't you? Well, best way is to use MzBot's driver. Or email Zuan for it.


The best way is to do it your self, since his driver only enables you to use SendInput.

_________________
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: Thu Jul 19, 2007 8:20 am    Post subject: Reply with quote

Ok. Thank you for that piece of knowledge. Sorry if that sounds sarcastic, its not.
_________________


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
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Thu Jul 19, 2007 9:16 am    Post subject: Reply with quote

if you use that hook on maplestory it wont run

maplestory blocks all common code hooks, you have to have a bypassed version

_________________
Back to top
View user's profile Send private message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Thu Jul 19, 2007 10:44 am    Post subject: Reply with quote

blankrider wrote:
if you use that hook on maplestory it wont run

maplestory blocks all common code hooks, you have to have a bypassed version


Well no... I just coded a key logger using a global keyboard hook. When you focus on MapleStory, the hook it self is not stopped. BUT all letters returns as "a" and numbers as "1" I beleive that because of npkcrypt.sys So it's possible to make a keyboard hook that when F7 is pressed a pop up comes, but don't do that, you should just register a hot key or use GetAsyncKeyState. More simple and easy.

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

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Thu Jul 19, 2007 12:32 pm    Post subject: Reply with quote

If you want to use SendInput, you can use MzBot's method.


Edit:
@Guy above me:
GetAsyncKeyState is NOT blocked by "KeyCrypt". Nor modified in anyway.
Back to top
View user's profile Send private message
DeletedUser14087
I post too much
Reputation: 2

Joined: 21 Jun 2006
Posts: 3069

PostPosted: Thu Jul 19, 2007 12:47 pm    Post subject: Reply with quote

Hook your app on MapleStory :S

then do something similiar to this

if Odd(GetAsyncKeyState(VK_F1)) then
keybd_event(VK_Z) KEY_DOWN
else
keybd_event(VK_Z) KEY_UP

but it wont work lol MapleStory allready patched it
Back to top
View user's profile Send private message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Thu Jul 19, 2007 12:49 pm    Post subject: Reply with quote

compactwater wrote:

Edit:
@Guy above me:
GetAsyncKeyState is NOT blocked by "KeyCrypt". Nor modified in anyway.


I know thats why I told him to register a hot key or use GetAsyncKeyState for his HotKeys and not to do a keyboard hook.

_________________
Back to top
View user's profile Send private message
KingZero
Expert Cheater
Reputation: 0

Joined: 27 Jun 2006
Posts: 103

PostPosted: Thu Jul 19, 2007 1:01 pm    Post subject: Reply with quote

Look on http://www.torry.net/
There you can find some units for keyboard hooks or for hotkey.
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Thu Jul 19, 2007 1:31 pm    Post subject: Reply with quote

I belive i saw somewhere MzBot is writting in C++ ?

also, oib ... your code just makes the radiobutton go on and then directly off.
Back to top
View user's profile Send private message MSN Messenger
KingZero
Expert Cheater
Reputation: 0

Joined: 27 Jun 2006
Posts: 103

PostPosted: Thu Jul 19, 2007 1:56 pm    Post subject: Reply with quote

Kevinnn wrote:
I belive i saw somewhere MzBot is writting in C++ ?

also, oib ... your code just makes the radiobutton go on and then directly off.

Its written in ASM !?
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Thu Jul 19, 2007 1:58 pm    Post subject: Reply with quote

okay, wasnt sure. Some guy said it on another forum, which usefull programs was written in what language.
Back to top
View user's profile Send private message MSN Messenger
Reak
I post too much
Reputation: 0

Joined: 15 May 2007
Posts: 3496

PostPosted: Thu Jul 19, 2007 4:14 pm    Post subject: Reply with quote

Well I got it with compactwater help, thx!

Kaspersky wrote:
Hook your app on MapleStory :S

then do something similiar to this

if Odd(GetAsyncKeyState(VK_F1)) then
keybd_event(VK_Z) KEY_DOWN
else
keybd_event(VK_Z) KEY_UP

but it wont work lol MapleStory allready patched it


this is exactly that why which is working for me xD
Back to top
View user's profile Send private message
TheSorc3r3r
I post too much
Reputation: 0

Joined: 06 Sep 2006
Posts: 2404

PostPosted: Thu Jul 19, 2007 6:52 pm    Post subject: Reply with quote

I think you're looking for this.
_________________


Don't laugh, I'm still learning photoshop!
Back to top
View user's profile Send private message
malfunction
Grandmaster Cheater Supreme
Reputation: 0

Joined: 30 Jan 2007
Posts: 1015
Location: http://www.behindthecorner.com/

PostPosted: Fri Jul 20, 2007 3:07 am    Post subject: Reply with quote

if its for maplestory, u cant use the windows api, u need to make ur own....
mzbot --> C++
mspro --> VB

_________________
Back to top
View user's profile Send private message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Fri Jul 20, 2007 8:00 am    Post subject: Reply with quote

skyllakarean wrote:
if its for maplestory, u cant use the windows api, u need to make ur own....

Not necessarily

Quote:
mspro --> VB

The driver was written in Assembly, only the user face was made in VB (Sorry if you had dreams about making a fully bypassed bot in VB, not going to happen.)

And MzBot, the driver is written in Assembly/C. And I don't think that the user face is written in C++

_________________
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 Previous  1, 2, 3, 4  Next
Page 2 of 4

 
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