| View previous topic :: View next topic |
| Author |
Message |
xXx123 Expert Cheater
Reputation: 0
Joined: 27 Sep 2007 Posts: 118
|
Posted: Wed Oct 31, 2007 5:51 am Post subject: question|making an injectible dll file |
|
|
| so listen up XD i made a ct and a trainer of hack to a certain game... i have an injec-tor and i want to turn my trainer to an injectible dll file how do i do that? or is it even posible? cuz i want to use many hacks and not just 1 like in my trainer (its rakion hacks u can only use 1)
|
|
| Back to top |
|
 |
NotReq Expert Cheater
Reputation: 0
Joined: 02 Jan 2007 Posts: 201
|
Posted: Wed Oct 31, 2007 6:13 am Post subject: Re: question|making an injectible dll file |
|
|
| xXx123 wrote: | | so listen up XD i made a ct and a trainer of hack to a certain game... i have an injec-tor and i want to turn my trainer to an injectible dll file how do i do that? or is it even posible? cuz i want to use many hacks and not just 1 like in my trainer (its rakion hacks u can only use 1) |
| Code: | DllMain proc hinstDLL:HINSTANCE, fdwReason:DWORD, lpvReserved:LPVOID
cmp dword ptr ds:[fdwReason], DLL_PROCESS_ATTACH
jne en
invoke CreateThread, NULL, NULL, addr hackEntryPoint, NULL, NULL, NULL |
basically something like that, just create a thread when your dll is attached to a process
|
|
| Back to top |
|
 |
xXx123 Expert Cheater
Reputation: 0
Joined: 27 Sep 2007 Posts: 118
|
Posted: Wed Oct 31, 2007 7:45 am Post subject: |
|
|
| what? what should i do wit this code? @_@
|
|
| Back to top |
|
 |
lurc Grandmaster Cheater Supreme
Reputation: 2
Joined: 13 Nov 2006 Posts: 1900
|
Posted: Wed Oct 31, 2007 11:25 am Post subject: |
|
|
first of all.... what language are u doing this trainer... my guess is ur doing it in C or C++ if u want injectable dll's but be more specific,
btw, that code is MASM32 (Assembly)
_________________
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Wed Oct 31, 2007 11:33 am Post subject: |
|
|
Microsoft Assembly
anyways, the easiest way is in C
| Code: | BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved) |
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Wed Oct 31, 2007 11:48 am Post subject: |
|
|
| Kaspersky wrote: | | Microsoft Assembly |
(Microsoft) Macro Assembler
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Wed Oct 31, 2007 11:49 am Post subject: |
|
|
| slovach wrote: | | Kaspersky wrote: | | Microsoft Assembly |
(Microsoft) Macro Assembler  |
dam
|
|
| Back to top |
|
 |
xXx123 Expert Cheater
Reputation: 0
Joined: 27 Sep 2007 Posts: 118
|
Posted: Wed Oct 31, 2007 12:52 pm Post subject: |
|
|
um people........ i only used cheat engine made hacks that while gg is loading should be closed and i want to inject those hacks into the game...
but without everytime that i activate the hack itll crash...
and another problem any one van give me a vaild link to vb cuz every version i try it crashes when i do a text box and run it...
|
|
| Back to top |
|
 |
Hackerdevelopment Advanced Cheater
Reputation: 0
Joined: 11 Oct 2007 Posts: 55
|
Posted: Wed Oct 31, 2007 1:08 pm Post subject: |
|
|
C++ could make dll's. Try learning that language. (Its not gonna b easy)
_________________
|
|
| Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Wed Oct 31, 2007 5:01 pm Post subject: |
|
|
| Hackerdevelopment wrote: | | C++ could make dll's. Try learning that language. (Its not gonna b easy) |
Just because you had troubles learning it doesn't mean others will.
|
|
| Back to top |
|
 |
|