Re: HackShield Custom SDK
Good luck.
No clue what that code does except for Load a dll O_o
Re: HackShield Custom SDK
Once you load a DLL in your memory space, you're free to use any function that it exports. You can call it like...
Code:
if(!HSRUN())
//Error code here...
else
//Success!
Re: HackShield Custom SDK
:o Cool
How do you know the functions though o-o
Re: HackShield Custom SDK
Those are my functions, my DLL is going to do all the hardwork for you, like handling the requests and everything else.
Re: HackShield Custom SDK
That should be void * or DWORD_PTR; you're storing an address, if you identify it as a DWORD, you'll have problems on x64 platforms.
Re: HackShield Custom SDK
Hope this can be done and release ^^
btw, is this c#? C++ stuff?
or in other lang
Re: HackShield Custom SDK
Quote:
Originally Posted by
johnlth93
Hope this can be done and release ^^
btw, is this c#? C++ stuff?
or in other lang
C++, dude.
Re: HackShield Custom SDK
C++... not for me lol
dunno at all
anyway, really hope Pserver will have HS or something... so can prevent more of those "noob" hacker
well expert hacker can actually bypass it lol
Re: HackShield Custom SDK
Hi, there i can gives u something good hackshied source later
Re: HackShield Custom SDK
Good luck.
HackShield will be on your ass soon.
Re: HackShield Custom SDK
Re: HackShield Custom SDK
Hackshield is crap, i simply dont understand why Nexon decided Hackshield instead of GameGuard. Noone ever made a proper bypass for GameGuard, where it's been 3 weeks, and im almost fully bypassed... (except for some dual instaces of ws2_32.dll, need to figure that one out...)
I can use a completly clean Cheat Engine 5.5 while being in MapleStory
Re: HackShield Custom SDK
PunkBuster ftw.
/sarcasm.
Re: HackShield Custom SDK
Quote:
Originally Posted by
IDEEKAY
Well there wasn't much attention on the forums about EMULATING HackShield.
Anyways... I'm creating a SDK for the emulated HackShield, so the coder is able emulate their own HackShield :)
Currently the progress is 65%, I'm just fixing some of HackShield's shitty coding, and their dumb exploits
Once it's released, you are able to do
Code:
HMODULE hDLL = LoadLibrary("HSSDK.dll");
DWORD dwHSRUN;
if(hDLL != NULL)
dwHSRUN = GetProcAddress(hDLL, "%$S$#@HSRUN$%#$#");
Then, you would do...
Code:
typedef bool (__stdcall * HSRUN)(LPVOID HSCALLBACK) = dwHSRUN;
Well... something like that.
will it hook RPM/WPM CreateRemoteThread etc? because if it doesn't I can easily write a bypass xD