Some contents are revealed hidden register a free account to see them!

NOTE: If u not post ur account will be set to: Inactive, and can may not be used.

Join the forum, it's quick and easy

Some contents are revealed hidden register a free account to see them!

NOTE: If u not post ur account will be set to: Inactive, and can may not be used.

Would you like to react to this message? Create an account in a few clicks or log in to continue.

3 posters

    Making DLL With source

    Forced™
    Forced™
    G Mod
    G Mod


    Posts : 10
    Join date : 2011-01-22
    Age : 32
    Location : French

    Making DLL With source Empty Making DLL With source

    Post  Forced™ Wed Feb 02, 2011 1:40 pm

    #include <windows.h>
    #include <iostream>

    using namespace std;

    void __cdecl PushToConsole(char* szVal ) {
    DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    if( dwCShell != NULL )
    {
    DWORD *LTClient = ( DWORD* )( (dwCShell + 0x2AAE80) );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
    _asm
    {
    push szVal;
    call CONoff;
    add esp, 4;
    }
    }
    }
    DWORD WINAPI Main(LPVOID) {
    while(GetModuleHandleA("CShell.dll") == NULL ) {
    Sleep(150);
    }

    bool PlayerGlow = true;
    bool FogEnable = false;
    bool Nosmoke = true;
    bool Whitewalls = false;


    for(;Wink {
    __asm pushad;
    if(GetAsyncKeyState(VK_F2)&1) {
    PlayerGlow = !PlayerGlow;
    }
    if(GetAsyncKeyState(VK_F3)&1) {
    FogEnable = !FogEnable;
    }
    if(GetAsyncKeyState(VK_F4)&1) {
    Nosmoke = !Nosmoke;
    }
    if(GetAsyncKeyState(VK_F9)&1) {
    Whitewalls = !Whitewalls;
    }

    if (Nosmoke) {
    PushToConsole("DrawParticles 1");
    }
    else {
    PushToConsole("DrawParticles 0");
    }

    if (FogEnable) {
    PushToConsole("FogEnable 1");
    }
    else {
    PushToConsole("FogEnable 0");
    }
    if (PlayerGlow) {
    PushToConsole("ScreenGlowEnable 1");

    }
    else {
    PushToConsole("ScreenGlowEnable 0");

    }
    if (Whitewalls) {
    PushToConsole("DrawFlat 1");
    }
    else {
    PushToConsole("DrawFlat 0");
    }
    Sleep(100);
    __asm popad;
    }
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    MessageBoxA(0, "The Creators Name Here ", "Successfully Injected", 0);
    system("start [You must be registered and logged in to see this link.]
    CreateThread(NULL, NULL,Main, NULL, NULL, NULL);
    }
    return TRUE;
    }

    Used VB2010 may work in 2008 no promise...
    avatar
    Vampire X-Sergie
    New Member
    New Member


    Posts : 8
    Join date : 2011-05-13

    Making DLL With source Empty Re: Making DLL With source

    Post  Vampire X-Sergie Fri May 13, 2011 4:01 pm

    wtf is this?
    Rene Bergn
    Rene Bergn
    Root Admin
    Root Admin


    Posts : 101
    Join date : 2011-01-20
    Age : 31
    Location : Denmark

    Making DLL With source Empty Re: Making DLL With source

    Post  Rene Bergn Fri May 13, 2011 8:11 pm

    codes used for making hacks...

    Sponsored content


    Making DLL With source Empty Re: Making DLL With source

    Post  Sponsored content


      Current date/time is Thu Sep 19, 2024 8:01 pm