Results 1 to 15 of 17

Threaded View

  1. #1
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed

    My Version Of Auto QuickScope

    This is my version of AutoQuickScope. Right now it only works for alteriwnet, because of i dont have the real game and therefore cant find the offsets.

    Excuse my bad english

    You can copy and paste the code in to a c++ Dll or remake it for youre use:

    0x00B32788//this is the memory adress to make ads, 1 = ads, 0 = hip;


    Code:
    DWORD WINAPI Qs(LPVOID)
    {
    
    int OnOff = 1;
    	for(;;)
    	{
    
    
    		if(GetAsyncKeyState(VK_F5))//you can change this to any button
    		{
    			OnOff += 1;
    		}
    
    
    		if(OnOff %2 == 0)//if OnOff is even enable AutoQuickScope
    		{
    		if(GetAsyncKeyState(VK_RBUTTON))//if the Right mouse button is pressed
    		{
    
    			*(byte*)0x00B32788 = 1;//ads = true
    			Sleep(260);
    			mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);//leftclick down
    			mouse_event(MOUSEEVENTF_LEFTUP, 0,0,0,0);//lefclick down
    			Sleep(20);
    			*(byte*)0x00B32788 = 0;//ads = false
    
    
    		}
    		}
    
    	}
    
    
    
    
    return 1;
    }
    Last edited by winberg; 04-11-2011 at 08:58 AM.

Tags for this Thread