Page 1 of 4 123 ... LastLast
Results 1 to 15 of 55
  1. #1
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed

    AutoQuickScope Update1 + AimAssist + Crosshair

    Hello Again, it had some trouble with the on/of function on my previous AutoQuickSope so here is a small update. Still only works for alterIWnet.

    Thank you

    UpDates:
    1.Improved on/of function + Spam if is it on/off
    2.It now checks if you are in game to avoid wierd mouse behavior outside the game, like in lobby
    3. Internal Xhair, undetected//f6 enable
    4. Aimassist(redbox around enemy)//press f6 to enable

    Sorry my bad english.

    Here is the new code:

    First the SendCommand to Console, credits to alexkak92 at ucforum.

    Code:
    void (__cdecl *SendCommandToConsole)(int a1,int a2,char *cvar)=(void (__cdecl *)(int,int,char *))0x0446DD0;//for alteriwnet
    The main Code credits me:
    Code:
    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
    Last edited by winberg; 04-16-2011 at 05:19 AM.

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

    Derkz (05-26-2011),ErrorFile- (09-01-2011),FrostyTheSnowCone (07-20-2011),romeofarok (09-01-2011),wexley (04-19-2011),wiktype (07-01-2011)

  3. #2
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Lovin' it...!

  4. The Following User Says Thank You to ♪~ ᕕ(ᐛ)ᕗ For This Useful Post:

    winberg (04-16-2011)

  5. #3
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed
    Quote Originally Posted by Play&Win View Post
    Lovin' it...!
    You are fast thank you

  6. The Following User Says Thank You to winberg For This Useful Post:

    ♪~ ᕕ(ᐛ)ᕗ (04-16-2011)

  7. #4
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    I think that you should assign a value to isInGame before you call the ReadProcessMemory().

  8. #5
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed
    Quote Originally Posted by Play&Win View Post
    I think that you should assign a value to isInGame before you call the ReadProcessMemory().
    Thanks, assign it to zero

  9. #6
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by winberg View Post
    Thanks, assign it to zero
    XD, good job!
    BTW...The aim cross thread is for?

  10. #7
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed
    Quote Originally Posted by Play&Win View Post


    XD, good job!
    BTW...The aim cross thread is for?
    It is for aimassist (red boxes that appear around the enmey when you can take the shoot)
    Crosshair is 2 green things that makes a xhair like a cross

    for alteriwnet f6 to enable both
    Last edited by winberg; 04-16-2011 at 05:20 AM.

  11. #8
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by winberg View Post
    It is for aimassist (red boxes that appear around the enmey when you can take the shoot)
    Crosshair is 2 green things that makes a xhair like a cross

    for alteriwnet f6 to enable both
    Oh you mean ESP Boxes. Well they are easy to draw.
    Check ur PM btw

  12. #9
    saadaziz's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    United States
    Posts
    209
    Reputation
    19
    Thanks
    43
    My Mood
    Angelic
    sorry for the noobness but how do you use this?

  13. #10
    bringerburnd's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    Hi, guys
    What I Do wrong ?
    1. I started Microsoft Visual Studio 2008
    2. New file --> .cpp
    3.Paste all code:
    https://img535.imageshack.us/img535/8846/1704.png
    4.Tools-->Attach To Process-->iw4mp.dat
    5.Still not working (Game is stop)
    What i Do wrong ?
    Last edited by bringerburnd; 04-17-2011 at 12:08 PM.

  14. #11
    winberg's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    14
    Thanks
    14
    My Mood
    Stressed
    Quote Originally Posted by bringerburnd View Post
    Hi, guys
    What I Do wrong ?
    1. I started Microsoft Visual Studio 2008
    2. New file --> .cpp
    3.Paste all code:
    https://img535.imageshack.us/img535/8846/1704.png
    4.Tools-->Attach To Process-->iw4mp.dat
    5.Still not working (Game is stop)
    What i Do wrong ?
    If you want i can just upload a dll to the private section? with the project

  15. The Following User Says Thank You to winberg For This Useful Post:

    bringerburnd (04-17-2011)

  16. #12
    bringerburnd's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    It would be very good.
    Last edited by bringerburnd; 04-17-2011 at 02:20 PM.

  17. #13
    saadaziz's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    United States
    Posts
    209
    Reputation
    19
    Thanks
    43
    My Mood
    Angelic
    Quote Originally Posted by winberg View Post
    If you want i can just upload a dll to the private section? with the project
    that would be great and steps on how do use that project xd and can you give us a separate dll with just the internal crosshair that would be awesome cause am already a good enough quick scoper but i can't use ninja because it makes the reticules to big so a x hair is what i really need i know they are windowed versions but i don't like playing like that.

  18. The Following User Says Thank You to saadaziz For This Useful Post:

    fatassdip (04-27-2011)

  19. #14
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by saadaziz View Post
    that would be great and steps on how do use that project xd and can you give us a separate dll with just the internal crosshair that would be awesome cause am already a good enough quick scoper but i can't use ninja because it makes the reticules to big so a x hair is what i really need i know they are windowed versions but i don't like playing like that.
    Nop this address with NOP2.
    0x47690F
    BYTE NOP2[2] = {0x90, 0x90}

  20. #15
    saadaziz's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    United States
    Posts
    209
    Reputation
    19
    Thanks
    43
    My Mood
    Angelic
    can i get a tutorial cause I don't know the first thing about nop and stuff
    plz

Page 1 of 4 123 ... LastLast