Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful

    multi dll loader p14yer.dll + nr.dll soruce

    first follow vid:


    - then put p14yer.dll and p14yer.txt from here to hng folder
    - edit p14yer.txt as u like (if u leave it same as u got here, then u have to put nr.dll and fix_graph.dll to hng folder too).

    nr.dll source:
    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);
    }
    
    void lala() {
    	DWORD dw_player = NULL;
    
    	while (!dw_player) dw_player = get_module(GetCurrentProcessId(), "player.dll");
    	WriteToMemory(dw_player + 0xB3AD, "\xE9\xBE\xFD\xFF\xFF", 5); // bypas "data corruption detected bla bla bla"
    
    	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);
    }
    
    BOOL WINAPI DllMain(HINSTANCE hInst, DWORD reason, LPVOID) {
    	if (reason == DLL_PROCESS_ATTACH) {
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)&lala, 0, 0, 0);
    	}
    
    	return 1;
    }
    tested on :
    win10 64bit dx11, dx9
    winxp 32bit dx9

    virus scans:
    https://www.metascan-online.com/#!/r...093f/extracted
    https://virusscan.jotti.org/en-US/fi...job/13cdw55w55

    <b>Downloadable Files</b> Downloadable Files
    Last edited by lala; 08-24-2015 at 04:14 PM.

  2. The Following 25 Users Say Thank You to lala For This Useful Post:

    1152551489 (01-26-2016),bobdeen (09-02-2015),dark9011 (09-05-2015),edgar411 (08-25-2015),eferalgane (09-08-2015),Fauler-Sack (08-25-2015),Fr3aXi (09-19-2015),ICanaan01 (08-30-2015),kiss88 (03-23-2016),koolio97488 (09-25-2015),kurbart (08-25-2015),label1234567 (08-28-2015),MadMas (08-24-2015),MartinSkopje (03-11-2016),martipalo98 (10-09-2015),mohanad3egy (08-30-2015),paolo313 (08-30-2015),ringding (10-06-2015),Seduced (09-27-2015),SHEBALEMI (08-26-2015),Stangerup (08-28-2015),Szilard. (08-25-2015),teomantuncer (09-17-2015),X-ite (09-18-2015),Xenoleonidas121 (05-05-2016)

  3. #2
    Color's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    19,896
    Reputation
    2588
    Thanks
    7,864
    My Mood
    Lurking
    Looks good.
    //Approved

    Member Since 8/05/2012
    Editor 4/04/13 - 4/21/13
    Middleman 7/14/13 - 11/4/13

    Battlefield Minion 6/13/14-3/20/15
    Steam Minion 7/16/14-3/20/15

    Minion+ 10/1/14-3/20/15
    M.A.T. Minion 10/19/14-3/20/15
    ROTMG Minion 1/14/15-3/20/15

    Donator Since 2/26/15 (Thanks @Cursed!)
    Steam Minion 5/9/15 - 11/5/15
    OSFPS Minion 9/15/15 - 11/5/15


  4. The Following 3 Users Say Thank You to Color For This Useful Post:

    ilyapavlov78 (08-24-2015),[MPGH]lala (08-24-2015),MadMas (08-24-2015)

  5. #3
    MadMas's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    117
    works in dx11 I have some problem in p14yer.txt may game load only one DLL per game not multi so now I have No-Recoil or FixView mayby I sun fix that to load all DLL togeter

    OK I figure what wrong If someone have the same problem If you edit p14yer.txt In diferent editor can make this problem and fix problem in WordPad works my custom notepad not works in this and WorPad fix problem everything works perfect

    in this you have:
    + NoRecoil
    + CustomView
    Last edited by MadMas; 08-24-2015 at 06:55 PM.

  6. #4
    ilyapavlov78's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Data corruption detected, please run Verify Files in hngsync. in pvp lol

    - - - Updated - - -

    not working in pvp... only in training
    Error
    Data corruption detected, please run Verify Files in hngsync

  7. #5
    Divine_Hex's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful
    This comment may not belong here but flowing_around I see that you are top dog on Heroes & Generals hacking, and I am looking for top notch, great hacking tool easy to use and containing many different choices. I want to know where I may be able to get one of these, paid and kept up to date constantly.

  8. #6
    empty577's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed
    Hmm for me loader dont start :3

    - - - Updated - - -

    Work only in training

  9. #7
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful
    Quote Originally Posted by ilyapavlov78 View Post
    Data corruption detected, please run Verify Files in hngsync. in pvp lol

    - - - Updated - - -

    not working in pvp... only in training
    Error
    Data corruption detected, please run Verify Files in hngsync
    loader loads dlls, and nothing more.

    - - - Updated - - -

    Quote Originally Posted by Divine_Hex View Post
    This comment may not belong here but flowing_around I see that you are top dog on Heroes & Generals hacking, and I am looking for top notch, great hacking tool easy to use and containing many different choices. I want to know where I may be able to get one of these, paid and kept up to date constantly.
    google is ur friend (and same time ur enemy).

  10. #8
    176974's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    My Mood
    Amused
    Quote Originally Posted by flowing_around View Post
    loader loads dlls, and nothing more.

    - - - Updated - - -



    google is ur friend (and same time ur enemy).
    hi. I have a problem with this error : youtube(dot)com/watch?v=LviBomnhMSs

    anyway, I found your hngsync.exe size is 884kb, and mine is 886kb. Is it matter?

  11. #9
    ilyapavlov78's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 176974 View Post
    hi. I have a problem with this error : youtube.com/watch?v=LviBomnhMSs

    anyway, I found your hngsync.exe size is 884kb, and mine is 886kb. Is it matter?
    i have same problem, working only in training, with this loader you can say good bye to battles with players

  12. #10
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful
    Quote Originally Posted by ilyapavlov78 View Post
    i have same problem, working only in training, with this loader you can say good bye to battles with players
    it seems to be nr.dll fail that it dont bypass it.
    theres nothing to do with loader, loader goal is to load dll(not to bypass that error message).
    maybe try to buld ur own version of nr.dll, source code is in this post. i suggest to use visual c++ 2010 express.

    - - - Updated - - -

    Quote Originally Posted by 176974 View Post
    hi. I have a problem with this error : youtube(dot)com/watch?v=LviBomnhMSs

    anyway, I found your hngsync.exe size is 884kb, and mine is 886kb. Is it matter?
    i should not .. it seems my old modded one ^^ .. delete player.dll and let hng download it again(if u havent yet).

  13. #11
    ilyapavlov78's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    I removed nr.dll from loader but problem still exists

  14. #12
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful
    Quote Originally Posted by ilyapavlov78 View Post
    I removed nr.dll from loader but problem still exists
    ^^ .. nr.dll only contains "data corruption ba bla bla" bypass.
    again loader goal is to load dlls and nothing more, so it dont bypass "data corruption bla bla bla".

    try to build ur own version of it(nr.dll) source code is in this thread.

  15. #13
    empty577's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed
    nr.dll works fine but fix_graph.dll have "data corruption detected bla bla bla"

  16. #14
    Threadstarter
    That’s right. Our weakness is
    Contributor
    Game Hacking Team
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,195
    My Mood
    Cheerful
    Quote Originally Posted by empty577 View Post
    nr.dll works fine but fix_graph.dll have "data corruption detected bla bla bla"
    nr.dll only bypasses it (if ur using 2 dlls from here, they are just for testing).

  17. #15
    bakajohn's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    BGM in the video?

Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 37
    Last Post: 09-03-2014, 06:28 AM
  2. [Help] Combat Arms DLL Loader
    By qwerqwerqwre in forum Visual Basic Programming
    Replies: 7
    Last Post: 01-28-2014, 09:07 PM
  3. Advance Dll Loader starting up ERROR
    By JustusDemee in forum Alliance of Valiant Arms (AVA) Help
    Replies: 0
    Last Post: 01-17-2014, 10:19 AM
  4. [Request] how to make a loader that extracts ur dll or wat ever..?
    By Dead(H)ell in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 7
    Last Post: 01-24-2012, 08:42 AM
  5. DLL Loader
    By kutzki in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 11-11-2010, 06:31 AM