rapion124 Grandmaster Cheater Supreme
Reputation: 0
Joined: 25 Mar 2007 Posts: 1095
|
Posted: Sat Apr 26, 2008 1:35 pm Post subject: |
|
|
Here's sample code for a DLL of what you would want to do:
| Code: |
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
switch(fdwReason)
{
case DLL_PROCESS_ATTACH:
{
__asm
{
mov byte ptr [0x006FA322], 0x7D
}
}
return TRUE;
}
Compile as a .DLL and inject it into Maplestory. |
|
|