Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 55
  1. #31
    Brucie's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    11
    compile this in visual c++:

    Code:
    #include <Windows.h>
    #include <iostream>
    
    void (__cdecl *SendCommandToConsole)(int a1,int a2,char *cvar)=(void (__cdecl *)(int,int,char *))0x0446DD0;//for alteriwnet
    
    HANDLE mw2 = GetCurrentProcess();
    
    DWORD WINAPI Qs(LPVOID)
    {//start of main qs
    
    /*Collor codes
    ^1 - RED
    ^2 - GREEN
    ^3 - YELLOW
    ^4 - BLUE
    ^5 - CYAN
    ^6 - PINK
    ^7 - WHITE
    ^8 - DEFAULT MAP COLOR
    ^9 - GREY OR DEFAULT MAP COLOR
    ^0 - BLACK
    */
    
    
    bool OnOff = false;//false == off, true == on
    bool AimCross = false;//same as above
    byte IsInGame = 0;//if higher then zero you are in game
    	for(;;)
    	{//start of for
    
    		ReadProcessMemory(mw2, (LPVOID)0x007F4988, &IsInGame, (DWORD)sizeof(IsInGame), NULL);//reads to IsInGame
    
    		if(GetAsyncKeyState(VK_F5))//on off for qs
    		{//f5
    			OnOff =! OnOff;
    			Sleep(300);
    
    		if(OnOff == true)
    		{
    			SendCommandToConsole(1,1, "say_irc ^1A^2Q^4S^0/^7O^7N");
    
    		}
    
    		if(OnOff == false)
    		{
    			SendCommandToConsole(1,1, "say_irc ^1A^2Q^4S^0/^7O^7F^7F");
    
    		}
    
    		}//end of f5
    
    
    		if(GetAsyncKeyState(VK_F6))//on off for aimassist + crosshair
    		{//aim+Cross on off
    
    			AimCross =! AimCross;
    			Sleep(300);
    
    			if(AimCross == true)
    			{
    
    				SendCommandToConsole(1,1, "say_irc Aim/Cross/ON");
    				*(byte*)0x0646F098 = 1;
    				*(float*)0x0646F188 = 1.2;
    				*(float*)0x0646F138 = 12;
    				*(float*)0x0646EA58 = 100;
    				*(float*)0x0646EE68 = 1.2;
    				*(float*)0x0646EEB8 = 12;
    				*(float*)0x0646EA08 = 100;
    				*(BYTE*)0x0646EE18 = 1;
    
    			}
    
    			if(AimCross == false)
    			{
    
    				SendCommandToConsole(1,1, "say_irc Aim/Cross/OFF");
    				*(byte*)0x0646F098 = 0;
    				*(float*)0x0646F188 = 1.2;
    				*(float*)0x0646F138 = 12;
    				*(float*)0x0646EA58 = 100;
    				*(float*)0x0646EE68 = 1.2;
    				*(float*)0x0646EEB8 = 12;
    				*(float*)0x0646EA08 = 100;
    				*(BYTE*)0x0646EE18 = 0;
    
    			
    			}
    
    
    
    
    		}//end of aim+Corss on off
    
    
    
    
    		if(OnOff == true)//if OnOff is even
    		{//start of on off
    		if(IsInGame > 0)//if you are spawned
    		{//start of is in game
    		if(GetAsyncKeyState(VK_RBUTTON))
    		{//start of qs
    
    			*(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
    			Sleep(200);
    
    
    		}//end of qs
    		}//end of is in game
    		}//end of onoff
    	}//end of for
    
    
    
    
    
    return 1;
    }//end of mainqs
    
    BOOL WINAPI DllMain (HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
        if (dwAttached == DLL_PROCESS_ATTACH)//if dll is injected do this
        {
    
    		CreateThread( 0, 0, Qs, 0 , 0, 0 );
    
    	}
    
      return 1;
    }
    F5 - autoquickscope
    F6 - xhair, aimassist(????), esp

    pm me if you want dll

  2. The Following 2 Users Say Thank You to Brucie For This Useful Post:

    al3xand3r (05-25-2011),ansony99 (07-08-2011)

  3. #32
    Locke's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Bergen, Norway
    Posts
    804
    Reputation
    6
    Thanks
    67
    My Mood
    Yeehaw
    Eh, when you guys are talking about boxes/ESP, you mean like wallhack?

  4. #33
    Skynet1337's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    yes ESp is something like wallhack (boxes)
    But i got an question how do i get this to work <.< i compiled it to .dll and all but wen i press f6/f5 nothing happens pls help me or send me an working .dll

  5. #34
    Brucie's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    11
    Last edited by Brucie; 05-26-2011 at 12:38 PM.

  6. The Following 6 Users Say Thank You to Brucie For This Useful Post:

    al3xand3r (05-26-2011),Bountygrime (05-29-2011),brohh (05-14-2015),cjrayne (07-13-2011),donovandetroz (08-16-2013),FrostyTheSnowCone (07-06-2011)

  7. #35
    al3xand3r's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I got the dll file but now... I tried 3 dll injector and none of them works damn... if someone know good way to inject that dll I would like to know

    sry for my bad english:P

  8. #36
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    @Brucie

    /approved



  9. #37
    Brucie's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    11
    Quote Originally Posted by al3xand3r View Post
    I got the dll file but now... I tried 3 dll injector and none of them works damn... if someone know good way to inject that dll I would like to know

    sry for my bad english:P
    I use winject and it works fine.

  10. #38
    **Seals**'s Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    1,197
    Reputation
    102
    Thanks
    227
    My Mood
    Breezy
    @Brucie
    Before you call the if() on the DLL main, call the DisableThreadLibraryCalls().
    Code:
    BOOL WINAPI DllMain (HINSTANCE hModule, DWORD reason, LPVOID lpvReserved)
    {
        DisableThreadLibraryCalls(hModule);
        if (reason == DLL_PROCESS_ATTACH)//if dll is injected do this
        {
    
    		CreateThread( 0, 0, Qs, 0 , 0, 0 );
    
    	}
    
      return 1;
    }
    This is a good suggestion.

  11. #39
    Ralle24's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Maybbe nooby question but is there any download link, i really want it and guys say sweet nice 1 and so and im like *** no dload link

  12. #40
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by Ralle24 View Post
    Maybbe nooby question but is there any download link, i really want it and guys say sweet nice 1 and so and im like *** no dload link
    Well, if you see this is a

    [Source Code] AutoQuickScope Update1 + AimAssist + Crosshair

    That means not that its download able, But you get the source for the prog/hack/whatever

    And you have to build it yourself.

    i guess this is for a dll file. And then you need a prog that builds it for you, and then you need a injector so you can get it work.

    Or having a program with the dll file included.

    If you had eyes. look, here is the dll file....
    Last edited by Jorndel; 05-29-2011 at 12:17 PM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  13. The Following User Says Thank You to Jorndel For This Useful Post:

    ansony99 (07-12-2011)

  14. #41

  15. #42
    Ralle24's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    K ty, -.- pretty ***** on myself for missunderstanding it. Yep just time to search thru tha 3500 emails for the right 1,.

    just another questin no1 that could make an crosshair sight hack, like the 1 in steady aim upgrade in some zombie mods. pretty fast? or how long it take on average to create 1?

  16. #43
    Hackerbro's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1
    So how does this work? If I'm using Mw2 liberation at the same time, can I copy and paste this all no notepad and save as AutoQuickScope.dll and put it to the shieldloader section in liberation so it would run at the same time when I run liberation?
    If not, can you tell me how this works then?

  17. #44
    Locke's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Bergen, Norway
    Posts
    804
    Reputation
    6
    Thanks
    67
    My Mood
    Yeehaw
    I've never used Liberation's Shield Loader, but I'm guessing it would work.

  18. #45
    Hackerbro's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1
    And i tried to inject this with winjector while I was running mw2 through mw2 liberation so does that effect somehow? It said something's wrong... Here's what it says:
    Process Opened(iw4mp.exe)... ok
    DLL injected ... ok
    Verify failed
    So can some1 help with that?

    I tested using this with Liberation's Shield Loader but didn't work :/
    Last edited by Hackerbro; 06-02-2011 at 04:37 AM.

Page 3 of 4 FirstFirst 1234 LastLast