View previous topic :: View next topic |
Author |
Message |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Sun Dec 02, 2007 12:01 pm Post subject: [C++] Dll |
|
|
I took Flyte's suggestion and put my bot's functions in a dll. Injected As PCOMdebug. It gets injected, but it doesn't work. Ill push F8 and auto loot wont work.
Maybe i need to make a procedure. can anyone tel me how to work it.
|
|
Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Sun Dec 02, 2007 12:58 pm Post subject: |
|
|
i made mine as a win32.console.app
yes, in C++ (yeah baby..) it has auto loot, i called postmessagex from pmx.dll.
it'll be easy, don't forget to move the the char Z <-- (left) 16 times (shl / <<)
Code: | DWORD __stdcall aLoot(void* param)
{
while(lol)
{
PostMessageX( hWnd,WM_KEYDOWN,'Z',(MapVirtualKey('Z',0) << 16) | 0x01000001);
Sleep(10);
}
return 0;
} |
that's the code me and assaf127 created, enjoy it (i made a bot, but it wasn't ment for release cause i just wanted to see if it really works)
use CreateThread();
|
|
Back to top |
|
 |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Sun Dec 02, 2007 7:03 pm Post subject: |
|
|
I've made mine in non gui, but i want it to be in a dll so it can support auto pot. And i still need help >_>
|
|
Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Mon Dec 03, 2007 5:24 am Post subject: |
|
|
slippppppppp wrote: | I've made mine in non gui, but i want it to be in a dll so it can support auto pot. And i still need help >_> |
so like executeable can't support auto pot or what ?
i thought you know what you're doing :S
want the whole src ? it only has ac and looter.
|
|
Back to top |
|
 |
|