Page 1 of 4 123 ... LastLast
Results 1 to 15 of 51
  1. #1
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh

    My Hotkey Source (server crasher and remote kill!)

    this is Semi-Detected

    i crash in about 10 minutes with this source (usually only if i use rapid fire though)

    anyway, this base isn't home built or anything, its not custom, its just bits of bases i've collected over time from different releases of other bases and thrown into 1 base and it just so happened to work (hence the semi detected)

    this is slightly noob proof since you have to make it undetected...

    what hacks are already in the base
    All updated Addies, it will run straght from compile (and crash in 10 minutes)
    Semi Custom Server Crasher ( if u just want that, i'll pst it so u dont need to dig thruogh)
    Rapid Fire (credits to @NOOB for both recoil and rapid)
    No Recoil
    Gamestatus is in here, but not acutally used, although an example is given

    Main.cpp
    Code:
    #include <windows.h>
    #include <stdio.h>
    #include <d3dx9.h>
    #pragma comment( lib, "d3dx9.lib" )
    #define Rapid 0x37504115
    #define LTBase 0x378F5D78
    #define LTClient 0x378F5D90
    #define UnwrappedConsole 0x485F60
    #define DrawPrim 0x8024F8
    #define GameStatus 0x37906D28
    #define GameClientShell 0x3793B218
    #define ClientInfo 0x378F4A8C
    #define SBullets 0x374FE0B6
    #define Range1 0x37503699
    #define Range2 0x37503A19
    #define NameTag1 0x372DB630
    #define NameTag2 0x372DB6AD
    #define PlayerByIndex 0x37151500
    #define LocalPlayer 0x371520C0
    #define Recoil1 0x37497B00
    #define Recoil2 0x375AAA69
    #define Recoil3 0x37497B14
    #define Recoil4 0x37497B20
    #define Beast 0x3790F0EC
    #define Worldblock 0x07F19D8
    #define ADDR_REMOTEKILL1    0x375037C1
    #define ADDR_REMOTEKILL2    0x375037C2
    #define ADDR_REMOTEKILL3    0x37503B41
    #define ADDR_REMOTEKILL4    0x37503B42
    
    typedef HRESULT ( WINAPI* oPresent ) ( LPDIRECT3DDEVICE9 pDevice, CONST RECT *pSourceRect, CONST RECT *pDestRect, HWND hDestWindowOverride, CONST RGNDATA *pDirtyRegion);
    oPresent pPresent;
    
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll"   ) != NULL )
    return true;
    return false;
    }
    void Memoria( void* pvAddress, void* pvBuffer, size_t len )
    {
    if( *(BYTE*)pvAddress == *(BYTE*)pvBuffer )
    return;
    
    memcpy( ( void* )pvAddress, ( void* )pvBuffer, len );
    }
    
    bool bDataCompare(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(bDataCompare( (BYTE*)( dwAddress+i ),bMask,szMask) ) 
                return (DWORD)(dwAddress+i); 
         
        return 0; 
    }
    
    
    DWORD VTable(int index)
    {
    DWORD* devicePtr = 0;
    
    DWORD hD3D9 = NULL;
    
    while(hD3D9 == NULL){
    Sleep(100);
    try
    {
    hD3D9 = (DWORD)GetModuleHandleA("d3d9.dll");}
    catch(...)
    {
    hD3D9 = NULL;
    }}
    
    DWORD addy = FindPattern(hD3D9, 0x1280000, (PBYTE)"\xC7\x06\x00\x00\x00\x00\x89\x86\x00\x00\x00\x00\x89\x86", "xx????xx????xx");
    Memoria (&devicePtr, (void*)(addy+2), 4);
    
    if(devicePtr == NULL){
    return 0;}
    
    return devicePtr[index];
    
    }
    void CPush(const char* cmd)
    {
    _asm
    {
    PUSH cmd
    MOV EAX, 0x485F60
    CALL EAX
    ADD ESP, 0x4
    }
    }
    void main() 
    {
    	//if((*(BYTE *)GameStatus =5) && GetAsyncKeyState(VK_DELETE) & 1){
    	/*if(GetAsyncKeyState(VK_DELETE) & 1){
    memcpy((VOID *)Beast, (VOID *)(PBYTE)"\x01", 1);
    }else {
    memcpy((VOID *)Beast, (VOID *)(PBYTE)"\x00", 1);
    }*/
    if(GetAsyncKeyState(VK_LBUTTON) & 1 )
    {
    	Memoria((LPVOID) (Rapid), "\x90\x90", 2);
    	Memoria((LPVOID) (Recoil1), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (Recoil2), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (Recoil3), "\x90\x90\x90", 3);
    	Memoria((LPVOID) (Recoil4), "\x90\x90\x90", 3);
    	
    }else{
    	Memoria((LPVOID) (Rapid), "\x74\x3E", 2);
    	Memoria((LPVOID) (Recoil1), "\xD8\x66\x58", 3);
    	Memoria((LPVOID) (Recoil2), "\xD9\x46\x54", 3);
    	Memoria((LPVOID) (Recoil3), "\xD9\x5E\x58", 3);
    	Memoria((LPVOID) (Recoil4), "\xD9\x5E\x4C", 3);
    }
    if(GetAsyncKeyState(VK_NUMPAD1) & 1 ){
    *(long*)Beast = (((0xFF-0x80)+(0x20+0xFF))-(0xFF+0x90)); // Beast mode on
    } else {
    *(long*)Beast = 1;
    }/*
    if(GetAsyncKeyState(VK_END) & 1){
    /*void DoServerCrash(int Value)
    {
    	if (Value == 0)
    		return;
    
    	CAutoMessage Msg;
    	Msg.Writeuint8(104);
    	Msg.WriteWString((wchar_t*) L"Hey Nexon, how's it goin? I hope you don't mind me crashing your game server like this, i just get annoyed at how you run this game. you will read this a lot, bye! :)");
    	g_LTClient->SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }
    }*/}
    
    /*void RemoteKill( bool Kill )
    {
    	if( GetAsyncKeyState(VK_NUMPAD2) &1 )
     	{
     		DWORD dwOldVProtection;
     		VirtualProtect( (void*) ADDR_REMOTEKILL1, 5, PAGE_EXECUTE_READWRITE, &dwOldVProtection );
     		*(BYTE*)ADDR_REMOTEKILL1 = 0xE8;
     		*(DWORD*)ADDR_REMOTEKILL2 = ( (DWORD)IntersectAndPenetrateSegment ) - ( (DWORD)ADDR_REMOTEKILL2 + 0x4 );
     		VirtualProtect( (void*) ADDR_REMOTEKILL1, 5, dwOldVProtection, &dwOldVProtection);
    
    		VirtualProtect( (void*) ADDR_REMOTEKILL3, 5, PAGE_EXECUTE_READWRITE, &dwOldVProtection );
    		*(BYTE*)ADDR_REMOTEKILL3 = 0xE8;
    		*(DWORD*)ADDR_REMOTEKILL4 = ( (DWORD)IntersectAndPenetrateSegment ) - ( (DWORD)ADDR_REMOTEKILL4 + 0x4 );
    		VirtualProtect( (void*) ADDR_REMOTEKILL3, 5, dwOldVProtection, &dwOldVProtection);
     	}
     	else
    	{
     		Memoria( (PBYTE)ADDR_REMOTEKILL1, (PBYTE)"\x8B\x51\x64\xFF\xD2", 5 );
    		Memoria( (PBYTE)ADDR_REMOTEKILL3, (PBYTE)"\x8B\x51\x64\xFF\xD2", 5 );
    	}
     }*/
    
    
    HRESULT WINAPI gellPresent(LPDIRECT3DDEVICE9 pDevice, CONST RECT *pSourceRect, 
       CONST RECT *pDestRect, HWND hDestWindowOverride, CONST RGNDATA *pDirtyRegion)
    {
    _asm pushad;
    main();
    _asm popad;
    return pPresent(pDevice, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
    }
    
    void *DetourCreate( BYTE *src, const BYTE *dst )
    {
    int len = 5;
    
    BYTE *jmp = (BYTE*)malloc( len+5 );
    DWORD dwBack;
    VirtualProtect( src, len, PAGE_EXECUTE_READWRITE, &dwBack );
    memcpy( jmp, src, len );	
    jmp += len;
    jmp[0] = 0xE9;
    *(DWORD*)( jmp+1 ) = (DWORD)( src+len - jmp ) - 5;
    src[0] = 0xE9;
    *(DWORD*)( src+1 ) = (DWORD)( dst - src ) - 5;
    VirtualProtect( src, len, dwBack, &dwBack );
    
    return( jmp-len );
    }
    
    void Hook(void)
    {
    DWORD dwPresent  = VTable(17);
    pPresent    = (oPresent)DetourCreate(( PBYTE)dwPresent, ( PBYTE )gellPresent);
    }
    
    DWORD WINAPI dwD3D9Thread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(100);
    Hook();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, dwD3D9Thread, NULL, NULL, NULL);
    }
    return TRUE;
    }


    Sever crasher and remote kill (credits to gellin on RK)
    Code:
    if(GetAsyncKeyState(VK_END) & 1){
    /*void DoServerCrash(int Value)
    {
    	if (Value == 0)
    		return;
    
    	CAutoMessage Msg;
    	Msg.Writeuint8(104);
    	Msg.WriteWString((wchar_t*) L"Hey Nexon, how's it goin? I hope you don't mind me crashing your game server like this, i just get annoyed at how you run this game. you will read this a lot, bye! :)");
    	g_LTClient->SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }
    }*/}
    
    /*void RemoteKill( bool Kill )
    {
    	if( GetAsyncKeyState(VK_NUMPAD2) &1 )
     	{
     		DWORD dwOldVProtection;
     		VirtualProtect( (void*) ADDR_REMOTEKILL1, 5, PAGE_EXECUTE_READWRITE, &dwOldVProtection );
     		*(BYTE*)ADDR_REMOTEKILL1 = 0xE8;
     		*(DWORD*)ADDR_REMOTEKILL2 = ( (DWORD)IntersectAndPenetrateSegment ) - ( (DWORD)ADDR_REMOTEKILL2 + 0x4 );
     		VirtualProtect( (void*) ADDR_REMOTEKILL1, 5, dwOldVProtection, &dwOldVProtection);
    
    		VirtualProtect( (void*) ADDR_REMOTEKILL3, 5, PAGE_EXECUTE_READWRITE, &dwOldVProtection );
    		*(BYTE*)ADDR_REMOTEKILL3 = 0xE8;
    		*(DWORD*)ADDR_REMOTEKILL4 = ( (DWORD)IntersectAndPenetrateSegment ) - ( (DWORD)ADDR_REMOTEKILL4 + 0x4 );
    		VirtualProtect( (void*) ADDR_REMOTEKILL3, 5, dwOldVProtection, &dwOldVProtection);
     	}
     	else
    	{
     		Memoria( (PBYTE)ADDR_REMOTEKILL1, (PBYTE)"\x8B\x51\x64\xFF\xD2", 5 );
    		Memoria( (PBYTE)ADDR_REMOTEKILL3, (PBYTE)"\x8B\x51\x64\xFF\xD2", 5 );
    	}
     }*/
    enjoy fixing this shit XD i also dont know if thats a good crasher...i nevr got it to work without the code giving me an error
    Last edited by supercarz1991; 06-12-2011 at 12:07 AM.

    commando: You're probably the best non-coder coder I know LOL


  2. The Following User Says Thank You to supercarz1991 For This Useful Post:

    dllbaseII (07-23-2011)

  3. #2
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    /fp
    This source is useless.
    Too many bugs, you can't even do Server Crasher cause it's patched i think.
    No I do not make game hacks anymore, please stop asking.

  4. #3
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    no its not, i was in a game 15 minutes ago that got crashed :/ it sucked, i was doing well

    and the bugs are my bad lol

    commando: You're probably the best non-coder coder I know LOL


  5. #4
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Quote Originally Posted by supercarz1991 View Post
    no its not, i was in a game 15 minutes ago that got crashed :/ it sucked, i was doing well

    and the bugs are my bad lol
    IVE MADE ALL THE VIP SOURCE AND NOW ALL RELEASE IT

    AND PS: ITS REALLY BUGGY U NEED TO WRITE UR OWN FUNCION FOR REMOTEKILL =)

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  6. #5
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    idc enough for RK, i dont even hack or play CA anymore, its also buggy cuz i'm still new to coding (but good enough i can do something useful)

    i like noping random things

    commando: You're probably the best non-coder coder I know LOL


  7. #6
    Lmsjr1234's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Under your bed
    Posts
    1,366
    Reputation
    11
    Thanks
    230
    My Mood
    Amused
    Quote Originally Posted by flameswor10 View Post
    /fp
    This source is useless.
    Too many bugs, you can't even do Server Crasher cause it's patched i think.
    It isn't patched i know of a VIP that has it.
    My Mods
    Roulette WheelX
    No Smoke ModX
    Clear Infected ScreenX
    Colorful SmokeX
    Anywhere Bomb Defuse ModX
    Colored Knife Crosshair ModX

  8. #7
    S0aD's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    2,247
    Reputation
    5
    Thanks
    590
    Remote Kill = C+P Gellin's Base
    Crash Server = FAIL!
    Last edited by S0aD; 06-12-2011 at 06:37 AM.

  9. The Following User Says Thank You to S0aD For This Useful Post:

    matypatty (06-12-2011)

  10. #8
    Wilds's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    here
    Posts
    522
    Reputation
    1
    Thanks
    170
    My Mood
    Relaxed
    Quote Originally Posted by S0aD View Post
    Remote Kill = C+P Gellin's Base
    Crash Server = FAIL!
    i agree

    but with server crasher u only have to know how to use it.

  11. #9
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by S0aD View Post
    Remote Kill = C+P Gellin's Base
    Crash Server = FAIL!
    Server Crasher is good.

    @supercarz1991 CREDITS FOR ServerCrasher to @mmbob

    But you need classes for each /

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  12. The Following User Says Thank You to CAFlames For This Useful Post:

    matypatty (06-12-2011)

  13. #10
    elcamu987's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    705
    Reputation
    1
    Thanks
    42
    My Mood
    Angelic
    i will add some dotours and some addresses

  14. #11
    S0aD's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    2,247
    Reputation
    5
    Thanks
    590
    Quote Originally Posted by CAFlames View Post


    Server Crasher is good.

    @supercarz1991 CREDITS FOR ServerCrasher to @mmbob

    But you need classes for each /
    Is true...
    But this "Crash Server" Is a Bug of Game

  15. #12
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Server crasher can be done via a command in the cshell.

  16. #13
    bruno2204_backup's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    199
    Reputation
    10
    Thanks
    21
    My Mood
    Relaxed
    What is "IntersectAndPenetrateSegment"
    Quer meu msn ? Espere a barrinha abaixo carregar :



    unforgiven_ch@live.com

  17. #14
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Quote Originally Posted by Fabolous View Post
    Server crasher can be done via a command in the cshell.
    Code:
    PushToConsole("DebugGame 1");
    It crashes the room as the game sends a "Error" to the server.
    No I do not make game hacks anymore, please stop asking.

  18. #15
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by flameswor10 View Post
    Code:
    PushToConsole("DebugGame 1");
    It crashes the room as the game sends a "Error" to the server.
    Dam, you sound srs.

    troll?

Page 1 of 4 123 ... LastLast