View previous topic :: View next topic |
Author |
Message |
disen_lau How do I cheat?
Reputation: 0
Joined: 21 Mar 2008 Posts: 1
|
Posted: Sat Mar 22, 2008 10:16 pm Post subject: Help on port to vc++ |
|
|
Hi,
I'v ported the dbk32 to VC++ environment, but when I invoke 'OP' and passes the MapleStory's PID,
the IOCTL_CE_OPENPROCESS failured. Did I missed some steps?? Or how should i do?
thanks. |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25785 Location: The netherlands
|
Posted: Sun Mar 23, 2008 5:32 am Post subject: |
|
|
The initialize part will have to go in the dllmain section. (It's the part where it opens and configures the driver) _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
disen_lau How do I cheat?
Reputation: 0
Joined: 21 Mar 2008 Posts: 1
|
Posted: Mon Mar 24, 2008 4:05 am Post subject: |
|
|
Dark Byte wrote: | The initialize part will have to go in the dllmain section. (It's the part where it opens and configures the driver) |
Yes,i'v done the initializion at the dllmain.
I call the functions as list blow:
SetGlobalDebugState(TRUE);
ProtectMe(GetCurrentProcessId(), TRUE, FALSE, NULL, 0));
OP(PROCESS_ALL_ACCESS, FALSE,MapleID);
It still reply me "ERROR_ACCESS_DENIED"(Obtain by call GetLastError()) |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25785 Location: The netherlands
|
Posted: Mon Mar 24, 2008 6:50 am Post subject: |
|
|
is the driverhandle you get valid?
Also, my driver doesn't work nice with GetLastError, if it fails it just says Failure, nothing as specific as access denied.
This probably indicates that a earlier function is blocked (deviceiocontrol?)
oh, and I see you target maple, make sure you target it before gg is loaded, else it'll have to use the fake processlist _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
|