Results 1 to 5 of 5
  1. #1
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow

    Counter strike...

    Yo.



    Made this dll for CSS. I know the on and off system is retarded...there isn't really one actually. I know it's really poorly made but it's 2:20AM and i'm tired. So if you play CSS and want a source to look at. Enjoy.

    Code:
    #include <windows.h>
    
    #define BYPASS 0x0DFAE744
    #define wallhack 0x243AEC3C
    #define smoke 0x243E7A3C
    #define speed 0x0DF6181C
    #define asuswall 0x0D8EB46C
    #define nofog 0x243ECF1C
    
    DWORD wall = wallhack;
    DWORD sm = smoke;
    DWORD sp = speed;
    DWORD as = asuswall;
    DWORD nf = nofog;
    
    void Hotkey()
    {
    	while(1)
    	{
    		if(GetAsyncKeyState(VK_LMENU) && GetAsyncKeyState(VkKeyScan('b')))
    		{
    			DWORD byp = BYPASS;
    			*(DWORD*)byp = 0x1;
    		}
    		
    		if(GetAsyncKeyState(VK_F1))
    		{
    			*(DWORD*)wall = 0x2;
            }
            
            if(GetAsyncKeyState(VK_F2))
    		{                        
    			*(DWORD*)sm = 0x0;
            }
            
            if(GetAsyncKeyState(VK_F3))
    		{
    			*(DWORD*)sp = 0x20;
            }
            
            if(GetAsyncKeyState(VK_F4))
    		{
    			*(DWORD*)as = 0x1;
            }
            
            if(GetAsyncKeyState(VK_F5))
    		{
    			*(DWORD*)nf = 0x0;
            }
            
            if(GetAsyncKeyState(VK_LMENU) && GetAsyncKeyState(VkKeyScan('q')))
            {
                 *(DWORD*)wall = 0x1;
                 *(DWORD*)sm = 0x1;
                 *(DWORD*)sp = 0x0;
                 *(DWORD*)as = 0x0;
                 *(DWORD*)nf = 0x1;
            }                                     
    
    	}
    }
    
    bool APIENTRY DllMain(HINSTANCE hinst, DWORD reason, LPVOID asd)
    {
    	if(reason == DLL_PROCESS_ATTACH)
    	{
    		MessageBox(NULL,"Injected","Injected",MB_OK);
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)Hotkey,0,0,0);
    	}
    	return true;
    }
    Credits to me for code.
    Credits to antonio007 for addresses.

    I never even played CSS by the way... I'm just bored.

    Oh yeah, i'm open to suggestions on how to improve this.
    Last edited by Void; 12-05-2009 at 01:27 AM.

  2. #2
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    I sense a VAC ban in 3-4 weeks :P
    Ah we-a blaze the fyah, make it bun dem!

  3. #3
    Thats the way it is's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    95
    Reputation
    9
    Thanks
    11
    My Mood
    Tired
    Well instead making a wallhack etc etc you can also just make a sv_cheats bypass and then use console commands to make wallhacks no fog full bright
    Cause There ain't no rest for the wicked

  4. #4
    crushed's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    My name is Jay. k?
    Posts
    415
    Reputation
    10
    Thanks
    113
    My Mood
    Sneaky
    Is this what you were secretly planning last night?

  5. #5
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Quote Originally Posted by crushed View Post
    Is this what you were secretly planning last night?
    I definitly was doing something last night to have come up with this piece of crap.

Similar Threads

  1. Making Counter Strike Clan
    By quin123 in forum General
    Replies: 30
    Last Post: 09-01-2006, 11:37 PM
  2. Counter Strike Clan
    By quin123 in forum General Gaming
    Replies: 13
    Last Post: 08-04-2006, 04:09 PM
  3. Request: Counter-Strike CD KeyGen.
    By The_Enigma in forum Hack Requests
    Replies: 9
    Last Post: 08-01-2006, 03:30 AM
  4. Counter Strike: Source
    By Flawless in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 15
    Last Post: 06-03-2006, 08:28 PM