Account Hooking

03/28/2010 23:18 SaM.ThE.MaN#1
Hi,
I would like to know how to hook an account with my bot,
Example i play conquer online.I open my bot and it show my char name and i click hook,and then bot is connected to my account,how to hook the bot to the character,
Thank you
03/28/2010 23:29 ms​#2
You need to find and then call the internal login-function of the game client. You can do this by either injecting a DLL and calling the function using function pointers (which is not possible with AutoIt) or you can do it from an external program using the CreateRemoteThreadEx-API.

If you want to login without the client, you need to find out the packet-encryption (if there is any) and parse the game protocol. This takes much more effort though.
03/29/2010 11:57 SaM.ThE.MaN#3
auto it cant hook accounts?but Hiyoal this it with elipse
03/30/2010 04:06 Nullable#4
Quote:
Originally Posted by Disconnect View Post
injecting a DLL and calling the function using function pointers (which is not possible with AutoIt)
^
|
Quote:
Originally Posted by SaM.ThE.MaN View Post
auto it cant hook accounts?but Hiyoal this it with elipse
Hook is not the correct term for what you're trying to do, I assume you're trying to 'hook' the account which means 'read' some values related to the character
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
03/30/2010 12:12 Xereon#5
You can also try to connect your DLL with AutoIT for example with Guimessages. So the real hook is in your DLL, but you can call your functions from your AutoIT script.

PS: Maybe take a look at a project called "Guildwars Client Api"