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 7 - Black Ops Hacks & Cheats › Call of Duty Black Ops Help › [SOLVED] Windowed Mode without borders

[SOLVED] Windowed Mode without borders

Posts 1–11 of 11 · Page 1 of 1
MU
MuhKuh2010
[SOLVED] Windowed Mode without borders
Hey,
I have 2 monitors and I am playing in windowed mode. But I always have this annoying border at the top of the screen. Is there a possibility to disable it?

greets
#1 · 15y ago
Skyline.
Skyline.
Quote Originally Posted by MuhKuh2010 View Post
Hey,
I have 2 monitors and I am playing in windowed mode. But I always have this annoying border at the top of the screen. Is there a possibility to disable it?

greets
hahahahha...
can you tell me ur perspective of "windowed mode" < define that for me.

WINDOWED MODE = BARS ALL ROUND.

/solved.
#2 · 15y ago
master131
[MPGH]master131
You mean something like this?


I made a AHK script for Black Ops (SP and MP) which does the same thing like in the screenshot.

Virus Scans:
VirusTotal - Free Online Virus, Malware and URL Scanner
BlackOpsBorderRemove.rar - Jotti's malware scan

I have absolutely NO idea why there are so many false positives! If you don't trust it, save this as a .ahk file and run it with AutoHotKey:
Code:
#SingleInstance force
CurrentState = 0

	Process, wait, BlackOpsMP.exe, 0.1
	NewPID = %ErrorLevel%  ; Save the value immediately since ErrorLevel is often changed.
	if NewPID = 0
	{
		Process, wait, BlackOps.exe, 0.1
		NewPID = %ErrorLevel%
		if NewPID = 0
		{
			MsgBox Could not find Black Ops!
			ExitApp
		}
	}
	WinActivate, ahk_pid %NewPID%
	WinSet, Style, -0xC00000, ahk_pid %NewPID%
	WinSet, Style, -0x800000, ahk_pid %NewPID%
	WinMinimize, ahk_pid %NewPID%
	sleep 200
	WinRestore, ahk_pid %NewPID%
	
	while 1
	{
		sleep 100
		IfWinNotExist, ahk_pid %NewPID%
		ExitApp
	}

~NumLock::Suspend, toggle

$F12::
{
	GetKeyState, state, F12, T
    if state = D
    {
		if CurrentState = 0
		{
			CurrentState = 1
			WinActivate, ahk_pid %NewPID%
			WinSet, Style, +0xC00000, ahk_pid %NewPID%
			WinSet, Style, +0x800000, ahk_pid %NewPID%
			WinMinimize, ahk_pid %NewPID%
			sleep 200
			WinRestore, ahk_pid %NewPID%
		}
		else
		{
			CurrentState = 0
			WinActivate, ahk_pid %NewPID%
			WinSet, Style, -0xC00000, ahk_pid %NewPID%
			WinSet, Style, -0x800000, ahk_pid %NewPID%
			WinMinimize, ahk_pid %NewPID%
			sleep 200
			WinRestore, ahk_pid %NewPID%
		}
	}
	else
	{
	   send {F12 down}
	   send {F12 up}
	}
}
Press F12 to toggle this on and off.
#3 · 15y ago
Heartview
Heartview
Quote Originally Posted by master131 View Post
You mean something like this?
I made a AHK script for Black Ops (SP and MP) which does the same thing like in the screenshot.
o_O that is a ton of false positives.
#4 · 15y ago
spiritwo
spiritwo
Why is important if there is a border or not?
#5 · 15y ago
master131
[MPGH]master131
Quote Originally Posted by derpderp View Post
o_O that is a ton of false positives.
ikr? I've already reported to BitDefender and hopefully they will also contact other vendors to remove the file from detctions.

Quote Originally Posted by spiritwo View Post
Why is important if there is a border or not?
Who knows... /
#6 · 15y ago
spiritwo
spiritwo
Quote Originally Posted by master131 View Post
Who knows... /
I mean my guess is that if you are playing the game, the LAST thing your eyes will wander to is the borders.. Lol, maybe it has to do with lag idk.
#7 · 15y ago
B4M
B4M
/file approved
#8 · 15y ago
MU
MuhKuh2010
thx!

Like I said, I have 3 screens running parallel. And so I'd like to chat and switch music while playing cod. SO I have to use the windowed mode. And the borders just suck! I don't get it that they can't make it like in starcraft 2 - windowed mode without borders!
#9 · 15y ago
SO
solha
dont work in OS 64bits...
#10 · 15y ago
Insane
Insane
/Marked as Solved
#11 · 15y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Tags for this Thread

None