Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Call of Duty Hacks & Cheats › Call of Duty 6 - Modern Warfare 2 (MW2) Hacks › Call of Duty Modern Warfare 2 Private Servers › Auto QuickScope?

Auto QuickScope?

Posts 1–15 of 26 · Page 1 of 2
Gervino
Gervino
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!
#1 · 15y ago
SO
SoupX
yea it would be so cool if someone could do this !
#2 · 15y ago
LP
lpjz50
source code pl0x. i might be able to.
#3 · 15y ago
BE
benboslice
Yes plz make that
#4 · 15y ago
SA
saosin69
Just get an aimbot and do it yourself...
#5 · 15y ago
YO
yozod
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
#6 · 15y ago
[I
[I]n
2 Virus scans please.
1 : Virscan.org
2: Virustotal.com
#7 · 15y ago
MA
matiros96
SoF = sleight of hand
#8 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
I can make it, it's simple....But I can't do the crosshair func. I can make a quick scope function...
#9 · 15y ago
Moto
Moto
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
#10 · 15y ago
B4M
B4M
Quote Originally Posted by Minivan Man View Post


I shall summon some minions

@TheGodfather
@JamesA1994
Seems to be working..

/file approved
#11 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
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]
#12 · edited 15y ago · 15y ago
SA
saosin69
Is this even working/not bannable?
#13 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
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++.
#14 · 15y ago
SA
saosin69
"Windows cannot find 'Autohotkey.exe'"
Error upon start
#15 · 15y ago
Posts 1–15 of 26 · Page 1 of 2

Post a Reply

Tags for this Thread

None