Results 1 to 9 of 9
  1. #1
    Admin King-OrgY's Avatar
    Join Date
    Nov 2007
    Posts
    4,537

    Punkbuster Clean ScreenShoots (easy way?)

    Code:
    //Punkbuster used GetSystemTimeAsFileTime for PBSS you know 
    
    .idata:0045D0E4 ; void __stdcall GetSystemTimeAsFileTime(LPFILETIME lpSystemTimeAsFileTime)
    .idata:0045D0E4                 extrn GetSystemTimeAsFileTime:dword ; CODE XREF: _time+9p
    
    void CleanVisuals( LPFILETIME lpSystemTimeAsFileTime )
    {    
    
    cvar.on=0;//Clean out visuals
    cvar.pbmade=false;//Punkbuster Screenshoot notifications
    
        Sleep(2000);//2 Sek Time before visuals goes back On
    
    cvar.pbmade=true;//Punkbuster Screenshoot notifications
    cvar.on=1;//Clean out visuals
    
    }
    
    void (WINAPI*orig_PunkbusterClean_Screenshoots)( LPFILETIME lpSystemTimeAsFileTime );
    void WINAPI hook_PunkbusterClean_Screenshoots( LPFILETIME lpSystemTimeAsFileTime ) 
    {
        _beginthread((void (__cdecl *)(void *))CleanVisuals, 0, lpSystemTimeAsFileTime );
        
        orig_PunkbusterClean_Screenshoots( lpSystemTimeAsFileTime );
    }
    
            
    detour it
    
    DetourFunction( ( PBYTE )GetSystemTimeAsFileTime, ( PBYTE )&hook_PunkbusterClean_Screenshoots );
    __asm mov [ orig_PunkbusterClean_Screenshoots ], eax;
    or if you like trampolines

    Code:
    void CleanVisuals( LPFILETIME lpSystemTimeAsFileTime )
    {    
    
    cvar.on=0;//Clean out visuals
    cvar.pbmade=false;//Punkbuster Screenshoot notifications
    
        Sleep(2000);//2 Sek Time before visuals goes back On
    
    cvar.pbmade=true;//Punkbuster Screenshoot notifications
    cvar.on=1;//Clean out visuals
    
    }
    DETOUR_TRAMPOLINE(DWORD WINAPI orig_PunkbusterClean_Screenshoots( LPFILETIME lpSystemTimeAsFileTime ), GetSystemTimeAsFileTime);
    void WINAPI hook_PunkbusterClean_Screenshoots( LPFILETIME lpSystemTimeAsFileTime ) 
    {
        _beginthread((void (__cdecl *)(void *))CleanVisuals, 0, lpSystemTimeAsFileTime );
        
        orig_PunkbusterClean_Screenshoots( lpSystemTimeAsFileTime );
    }
    
    DetourFunctionWithTrampoline((PBYTE)orig_PunkbusterClean_Screenshoots, (PBYTE)hook_PunkbusterClean_Screenshoots);
    haha

    Credits:deadnesser,ida,rcontool(for testing is rly work),gamedeception.net and GetSystemTimeAsFileTime Function (Windows)
    Attached Images Attached Images

  2. #2
    VIP buffalo's Avatar
    Join Date
    Apr 2006
    Posts
    677

    Re: Punkbuster Clean ScreenShoots (easy way?)

    I see crosshair hax omg.

  3. #3
    Admin King-OrgY's Avatar
    Join Date
    Nov 2007
    Posts
    4,537

    Re: Punkbuster Clean ScreenShoots (easy way?)

    Quote Originally Posted by buffalo View Post
    I see crosshair hax omg.
    haha yes


    Code:
    g_pDraw.CG_DrawStringExt(640 / 2.03 ,480 / 2.03, "+", colorRed, 0, 1, 8, 8, 500);
     if(cvar.on==1)
       {
    should be hire
    ...
    me -> dummy
    don't ban me pb for cheating

  4. #4
    Senior Member
    Join Date
    Aug 2008
    Posts
    172

    Re: Punkbuster Clean ScreenShoots (easy way?)

    n1 King good job =)
    Here to help with ANY questions about Aimbots.net

    Fell free to PM me anytime if you need help!

  5. #5
    VIP sir3n's Avatar
    Join Date
    Jul 2006
    Location
    england
    Posts
    1,825

    Re: Punkbuster Clean ScreenShoots (easy way?)

    hacker !!! and you little cheater using text draw for crosshair... get some skills and use drawrect

  6. #6
    Junior Member
    Join Date
    Aug 2009
    Posts
    1

    Re: Punkbuster Clean ScreenShoots (easy way?)

    where write the code?

  7. #7
    Semi-Coder Bubble's Avatar
    Join Date
    Jul 2008
    Posts
    379

    Re: Punkbuster Clean ScreenShoots (easy way?)

    in notepad and save it as .exe lol... try in MS VC++

  8. #8
    Semi-Coder t00ny's Avatar
    Join Date
    Jan 2008
    Posts
    360

    Re: Punkbuster Clean ScreenShoots (easy way?)

    Quote Originally Posted by Bubble View Post
    in notepad and save it as .exe lol
    You took lessons from me

  9. #9
    Senior Member
    Join Date
    Feb 2007
    Posts
    214

    Re: Punkbuster Clean ScreenShoots (easy way?)

    leet haxors =)

Similar Threads

  1. CS 1.6 Hack with SS clean
    By greenmaster in forum Counterstrike 1.6 Cheats
    Replies: 3
    Last Post: January 24th, 2010, 15:54
  2. Clean Punkbuster screenshot
    By reptilee in forum Anti-Cheat
    Replies: 4
    Last Post: January 3rd, 2010, 16:19
  3. help ETH 1.4 with clean pbss
    By algo in forum Enemy Territory Cheats
    Replies: 0
    Last Post: August 26th, 2008, 14:48
  4. My ET:TCE clean chams
    By wurzil in forum Gallery
    Replies: 21
    Last Post: September 4th, 2007, 20:26
  5. Clean pb screen?
    By Bestop in forum Enemy Territory Cheats
    Replies: 10
    Last Post: September 1st, 2007, 11:59

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •