Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    Gervino's Avatar
    Join Date
    Jan 2006
    Gender
    male
    Location
    Netherlands
    Posts
    175
    Reputation
    32
    Thanks
    23
    My Mood
    Hungover

    Auto QuickScope?

    Hello everyone.
    On the original steam mw2 we had an application called Auto Quickscope.
    Now it works for steam, but it won't work for AlterIW.

    Could someone convert it so it would also work for AlterIW?

    Thank you very much!

  2. #2
    SoupX's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Luxembourg
    Posts
    139
    Reputation
    10
    Thanks
    6
    yea it would be so cool if someone could do this !
    Free MW2 (Steam Version) Prestige Lobby : Add Me On Steam : fgisfghf7


  3. #3
    lpjz50's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Posts
    118
    Reputation
    10
    Thanks
    128
    My Mood
    Bashful
    source code pl0x. i might be able to.

  4. #4
    benboslice's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Yes plz make that

  5. #5
    saosin69's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    1
    My Mood
    Buzzed
    Just get an aimbot and do it yourself...

  6. #6
    yozod's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    18
    Hey, I have one and have the source code too, but the credits go to the original makers... I found it in an old MW2 folder full of crap, and I don't know what SoF means.

    VirusTotal virus scan:
    VirusTotal - Free Online Virus, Malware and URL Scanner

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

    bru65 (08-08-2012),princeandtrevion (07-22-2012)

  8. #7
    [I]n's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    144
    Reputation
    10
    Thanks
    9
    My Mood
    Amused
    2 Virus scans please.
    1 : Virscan.org
    2: Virustotal.com
    I Am Comet.
    Life is the most precious thing, you only get it once.


  9. #8
    matiros96's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Cold
    SoF = sleight of hand

  10. #9
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    I can make it, it's simple....But I can't do the crosshair func. I can make a quick scope function...

  11. #10
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    Quote Originally Posted by yozod View Post
    Hey, I have one and have the source code too, but the credits go to the original makers... I found it in an old MW2 folder full of crap, and I don't know what SoF means.

    VirusTotal virus scan:
    VirusTotal - Free Online Virus, Malware and URL Scanner
    I shall summon some minions

    @TheGodfather
    @JamesA1994



  12. #11
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Quote Originally Posted by Minivan Man View Post


    I shall summon some minions

    @TheGodfather
    @JamesA1994
    Seems to be working..

    /file approved
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  13. #12
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    here is a C++ Code for the XHair:
    [highlight=cpp]void DrawXHair(int y, int x, HDC hwdc, COLORREF col)
    {
    SetPixel(hwdc, x, y, col);
    SetPixel(hwdc, x, y - 1, col);
    SetPixel(hwdc, x, y + 1, col);
    SetPixel(hwdc, x - 1, y, col);
    SetPixel(hwdc, x + 1, y, col);
    SetPixel(hwdc, x, y - 2, col);
    SetPixel(hwdc, x, y + 2, col);
    SetPixel(hwdc, x - 2, y, col);
    SetPixel(hwdc, x + 2, y, col);
    SetPixel(hwdc, x, y - 3, col);
    SetPixel(hwdc, x, y + 3, col);
    SetPixel(hwdc, x - 3, y, col);
    SetPixel(hwdc, x + 3, y, col);
    SetPixel(hwdc, x, y - 4, col);
    SetPixel(hwdc, x, y + 4, col);
    SetPixel(hwdc, x - 4, y, col);
    SetPixel(hwdc, x + 4, y, col);
    SetPixel(hwdc, x, y - 5, col);
    SetPixel(hwdc, x, y + 5, col);
    SetPixel(hwdc, x - 5, y, col);
    SetPixel(hwdc, x + 5, y, col);
    SetPixel(hwdc, x, y - 6, col);
    SetPixel(hwdc, x, y + 6, col);
    SetPixel(hwdc, x - 6, y, col);
    SetPixel(hwdc, x + 6, y, col);
    SetPixel(hwdc, x, y - 7, col);
    SetPixel(hwdc, x, y + 7, col);
    SetPixel(hwdc, x - 7, y, col);
    SetPixel(hwdc, x + 7, y, col);
    SetPixel(hwdc, x, y - 8, col);
    SetPixel(hwdc, x, y + 8, col);
    SetPixel(hwdc, x - 8, y, col);
    SetPixel(hwdc, x + 8, y, col);
    SetPixel(hwdc, x, y - 9, col);
    SetPixel(hwdc, x, y + 9, col);
    SetPixel(hwdc, x - 9, y, col);
    SetPixel(hwdc, x + 9, y, col);
    SetPixel(hwdc, x, y - 10, col);
    SetPixel(hwdc, x, y + 10, col);
    SetPixel(hwdc, x - 10, y, col);
    SetPixel(hwdc, x + 10, y, col);
    }
    [/highlight]

    How to use:
    [highlight=cpp]
    HDC hwdc = GetDC(FindWindowA(NULL, "alterIWnet"));
    int x = GetSystemMetrics( 1 ) / 2;
    int y = GetSystemMetrics( 0 ) / 2;
    DrawXHair(y, x, hwdc, D3DCOLOR_RGBA(255, 200, 200, 100));[/highlight]
    Last edited by ♪~ ᕕ(ᐛ)ᕗ; 03-06-2011 at 02:42 PM.

  14. #13
    saosin69's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    1
    My Mood
    Buzzed
    Is this even working/not bannable?

  15. #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 saosin69 View Post
    Is this even working/not bannable?
    pretty much, but you should make some imporvements, i didn't test, but the code was like that of the old AQS but converted to C++.

  16. #15
    saosin69's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    1
    My Mood
    Buzzed
    "Windows cannot find 'Autohotkey.exe'"
    Error upon start

Page 1 of 2 12 LastLast