| View previous topic :: View next topic |
| Author |
Message |
Ashwin How do I cheat?
Reputation: 0
Joined: 20 Mar 2012 Posts: 5 Location: Meerut, UP, INDIA, ASIA,...
|
Posted: Tue Mar 20, 2012 11:39 pm Post subject: making a dll by Code block |
|
|
hi friends,
How can i make a .dll by using CODE BLOCK,
which set the value of following address of a game,
0x68E70C = 213
0x68E710 = 25
0x68E708 = 27
0x68E704 = 1
--------------------------------
_________________
I am a GTA VC Modder, |
|
| Back to top |
|
 |
NoMercy Master Cheater
Reputation: 1
Joined: 09 Feb 2009 Posts: 289
|
Posted: Wed Mar 21, 2012 6:09 am Post subject: |
|
|
Use tne enyrtpoint DllMain()
Then call a function which set the value of those address. Google has thousand of examples.
|
|
| Back to top |
|
 |
Ashwin How do I cheat?
Reputation: 0
Joined: 20 Mar 2012 Posts: 5 Location: Meerut, UP, INDIA, ASIA,...
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Mon Apr 02, 2012 3:38 pm Post subject: |
|
|
Here's a small push in the right direction:
| Code: |
BOOL APIENTRY DllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved )
{
switch( fdwReason )
{
case DLL_PROCESS_ATTACH:
{
*(BYTE*)0x12345678 = 0x01
}
break;
}
return TRUE;
}
|
_________________
- Retired. |
|
| Back to top |
|
 |
|