Thread: Player Box Code

Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    [Banned]mark0108's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    UK,Manchester
    Posts
    1,106
    Reputation
    16
    Thanks
    1,039
    My Mood
    Relaxed
    wHAT DO I DO wITH tHIS iN C++ nEED HELP

  2. #17
    J0shin707's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    289
    Reputation
    10
    Thanks
    178
    My Mood
    Cynical
    How old is this random bypass code I have saved?

    Code:
    BYTE ZCHP3[] = {0xEB, 0x09};
    #define AbnormalBehavior 0x00440353
    BYTE AB[] = {0xE9, 0x8A, 0x00, 0x00, 0x00};
    
    //Write To Memory
    DWORD OldProtection;
    void WriteToMemory(DWORD Offset, DWORD Pointer, DWORD Length){
    VirtualProtect((void *)Offset, Length, PAGE_EXECUTE_READWRITE, &OldProtection);
    RtlMoveMemory((void *)Offset, (const void*)Pointer, Length);
    VirtualProtect((void *)Offset, Length, OldProtection, &OldProtection);
    }
    void ModifyMemory( BYTE *Offset, BYTE *ByteArray, DWORD Length){
    for(DWORD i = 0; i < Length; i++)
    WriteToMemory((DWORD)Offset + i, (DWORD)ByteArray + i, 1);
    }
    
    void Bypass()
    {
    ModifyMemory((BYTE*)HackDetect1, HD1, 2);
    ModifyMemory((BYTE*)HackDetect2, HD2, 2);
    //ModifyMemory((BYTE*)HackDetect3, HD3, 2);
    ModifyMemory((BYTE*)HackDetect4, HD4, 2);
    ModifyMemory((BYTE*)HackDetect5, HD5, 2);
    //ModifyMemory((BYTE*)IsDebuggerPresent, IDP, 1);
    //ModifyMemory((BYTE*)ZCheckHackProcess1, ZCHP1, 2);
    //ModifyMemory((BYTE*)ZCheckHackProcess2, ZCHP2, 2);
    //ModifyMemory((BYTE*)ZCheckHackProcess3, ZCHP3, 2);
    ModifyMemory((BYTE*)AbnormalBehavior, AB, 5);
    }
    
    bool APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){
    if(dwReason == DLL_PROCESS_ATTACH){
    DisableThreadLibraryCalls(hModule);
    Bypass();
    return true;
    }
    return true;
    }
    Someone should give it a try just to see what happens, i'm not really sure where to put these codes. When I tried it before I get compiling errors
    Last edited by J0shin707; 07-22-2010 at 10:38 AM.

  3. #18
    Osama_Farooq's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Gotham City
    Posts
    2,138
    Reputation
    317
    Thanks
    661
    My Mood
    Angelic
    which software you use for making a hack
    visual basic?

  4. #19
    bottleman's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    2
    dose anyone have a good C++ tut that i can watch so i can use this code??

  5. #20
    ClamPie's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    United States
    Posts
    958
    Reputation
    11
    Thanks
    117
    My Mood
    Aggressive
    Quote Originally Posted by bottleman View Post
    dose anyone have a good C++ tut that i can watch so i can use this code??
    1st off, stop necroing old ass threads....this thing should have been locked by a MOD ages ago.

    2ndly, There is a C++ tutorial section on the main forum page.

    3rdly, there is already a working box hack. [MPGH]Blood and swiftdude both have released one. One of them is stickied to the top of the main Crossfire Forum, look for it there...
    [IMG]https://i227.photobucke*****m/albums/dd287/Darkwiz666/Signatures/ClampPieSig2.png[/IMG]

    Quote Originally Posted by JohnKun View Post
    fucking noobs these days need to use their brain.exe. for vista users, run as admin.
    Clampie's UGC/Karma Koin Cardshop on indefinite hold...

  6. #21
    ikkeikke's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    2
    My Mood
    Paranoid
    Can someone just send a .dll file? I dont know how to converse it into a .dll. I pressed THX, so can someone help me know?

  7. #22
    NicoFighter's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Look behind you. Fucked: 1000 times
    Posts
    304
    Reputation
    11
    Thanks
    199
    My Mood
    Bitchy

    Talking

    Nice....

Page 2 of 2 FirstFirst 12