Outdateddll loader + no recoil

Posts 111 of 11 · Page 1 of 1
dll loader + no recoil
1 - put p14yer.dll and hng_mod_to_load.exe to hng folder
2 - run hng_mod_to_load.exe as admin.
3 - run game and hng dll loader should pop up.

optional - put nr.dll to hng folder and heres how to load:

remember button dont work ^^.
norecoil works with chams and without it.

c++ norecoil code (win32 dll, char set: multybyte)
Code:
#include <Windows.h>
#include <tlhelp32.h>
#include <tchar.h>

DWORD get_module(DWORD pid, char *module_name) {
	HANDLE hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pid); 
	MODULEENTRY32 me32;
	me32.dwSize = sizeof(MODULEENTRY32);

	while (Module32Next(hModuleSnap, &me32)) {
		if (strcmp(me32.szModule, module_name) == 0) {
			return (DWORD)me32.modBaseAddr;
		}
	} return NULL;
}

bool bCompare(const BYTE* pData, const BYTE* bMask, const char* szMask) {
    for(;*szMask;++szMask,++pData,++bMask)
        if(*szMask=='x' && *pData!=*bMask ) 
            return false;

    return (*szMask) == NULL;
}

DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask) {
    for(DWORD i=0; i < dwLen; i++)
        if( bCompare( (BYTE*)( dwAddress+i ),bMask,szMask) )
            return (DWORD)(dwAddress+i);

    return 0;
}

void WriteToMemory(uintptr_t address, char* value, int bytes) {
	unsigned long oldProdection;
	VirtualProtect((LPVOID)(address), bytes, PAGE_EXECUTE_READWRITE, &oldProdection);
	memcpy((LPVOID)address, value, bytes);
	VirtualProtect((LPVOID)(address), bytes, oldProdection, NULL);
}

BOOL WINAPI DllMain(HINSTANCE hInst, DWORD reason, LPVOID) {
	if (reason == DLL_PROCESS_ATTACH) {
		DWORD dw_player = get_module(GetCurrentProcessId(), "player_.dll");
		if (!dw_player) dw_player = get_module(GetCurrentProcessId(), "player.dll");
		DWORD no_recoil = FindPattern(dw_player, 0x228000, (PBYTE)"\xFF\xD0\x84\xC0\x0F\x94\xC0", "xxxxxxx");

		if (no_recoil) WriteToMemory(no_recoil + 0x20 +6, "\x01", 1);
	}
}
virus scans:
https://virusscan.jotti.org/en-US/fi...job/ajc31xmqrw
https://www.metascan-online.com/#!/r...0d67/extracted

hng_mod_to_load_mpgh.net.zip48 KB · 422 downloads Clean
Nice man thx for the release btw may i add you on skype for help?
Quote Originally Posted by Beansboy View Post
Nice man thx for the release btw may i add you on skype for help?
email or pm me urs.
can u do aimbot ? (that dont aim team mates)
Looks good.
//Approved
DLL Loader doesn't pop up for me. I'm using HnG steam version.. is that the problem?
Quote Originally Posted by fredmcgriff View Post
DLL Loader doesn't pop up for me. I'm using HnG steam version.. is that the problem?
its not all time top most.
hng should have 2 windows.

if not then: open hng.exe with hex editor and can u find "p14yer.dll"(text string not hex)? if not then u dont have enough privileges to edit hng.exe.
manual fix: goto offset 85605 and write hex code "31 34" or text "14". or find text "player.dll" and ull see "LaunchServer....player.dll" make "player.dll" to "p14yer.dll" after "LaunchServer".
AGGGH Help pls ! The cheats don't inject in hng.exe . I'm opening cheat and the nothing ... Only black window , wth ?
Yeah it doesn't pop up the injector
i make like you and game still crash/doesnt work
Posts 111 of 11 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?