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 › CrossFire Hacks & Cheats › CrossFire Europe Hacks › CrossFire Europe Discussions › Anyone got working PTC Commands..

Anyone got working PTC Commands..

Posts 1–11 of 11 · Page 1 of 1
Pingo
Pingo
Anyone got working PTC Commands..
I'v been trying to find some working commands online but so none of them seem to work.

Only two iv got that work is
WireFrameModels 1 (Thanks to @LucN for that one)
windowed 1 (Pointless)

I'm working on a PTC app that i want to release when done.
I'd like to add some presets so people can choose a command.
#1 · 13y ago
LU
LucN
Quote Originally Posted by Pingo View Post
I'v been trying to find some working commands online but so none of them seem to work.

Only two iv got that work is
WireFrameModels 1 (Thanks to @LucN for that one)
windowed 1 (Pointless)

I'm working on a PTC app that i want to release when done.
I'd like to add some presets so people can choose a command.
Code:
PushToConsole("WireFrameModels 1");
PushToConsole("WireFrameModels 0");
	
PushToConsole("TextureModels 0");
PushToConsole("TextureModels 1");

PushToConsole("DrawWorld 0");
PushToConsole("DrawWorld 1");

PushToConsole("SkyScale 0.0");
PushToConsole("SkyScale 1.0");
and there's one special PushToConsole commend makes you invisible
PM me if you're interested in it.
#2 · 13y ago
Pingo
Pingo
@LucN
Thanks and sure im interested but since you didn't post it here, i'm guessing you want to keep it private.

Does TextureModels need to be actiavted while in game?
Cause i pushed that command while in lobby before i joined and didn't see any effect.
If i need to be ingame, i'll add some editable hotkeys to this app.

Is it ok if i add these to my app besides that private one?
 
Heres a screen
[IMG]http://i203.photobucke*****m/albums/aa29/Baxter_esa/Consoleapp_zps7baf8402.png[/IMG]
#3 · 13y ago
LU
LucN
Quote Originally Posted by Pingo View Post
@LucN
Thanks and sure im interested but since you didn't post it here, i'm guessing you want to keep it private.

Does TextureModels need to be actiavted while in game?
Cause i pushed that command while in lobby before i joined and didn't see any effect.
If i need to be ingame, i'll add some editable hotkeys to this app.

Is it ok if i add these to my app besides that private one?
 
Heres a screen
[IMG]http://i203.photobucke*****m/albums/aa29/Baxter_esa/Consoleapp_zps7baf8402.png[/IMG]
It can be activated at lobby and storage also, used to test them there.
P.S : the private one keep it private.
#4 · 13y ago
3D
3D
Code:
if(NoSky)
PTC1("SkyScale 0.0");     
else
PTC1("SkyScale 1");
	if(WhiteWalls)
PTC1("DrawFlat 1");
	else
PTC1("DrawFlat 0");// WhiteWalls
	if(WireframeModels)
PTC1("WireframeModels 1"); 
	else
PTC1("WireframeModels 0");// PlayerWriframe	
	if(DrawWorld)
PTC1("DrawWorld 0");  
	else
PTC1("DrawWorld 1");

if ( WhitePlayer )
PTC1("TextureModels 0");
else
PTC1("TextureModels 1");
}

Spy ======> Private :))
Working Fine Last test Now :P
#5 · 13y ago
Pingo
Pingo
Looking at the memory in CE, there are loads of commands to try.
It's just finding out which ones work.
Like your DrawWorld, next to it
DrawSky
DrawSprites
DrawPolyGrids
The list just keeps going on.

I might make something to log all these string value while ths loaded in memory.
#6 · 13y ago
LU
LucN
Quote Originally Posted by kareem111 View Post
Code:
if(NoSky)
PTC1("SkyScale 0.0");     
else
PTC1("SkyScale 1");
	if(WhiteWalls)
PTC1("DrawFlat 1");
	else
PTC1("DrawFlat 0");// WhiteWalls
	if(WireframeModels)
PTC1("WireframeModels 1"); 
	else
PTC1("WireframeModels 0");// PlayerWriframe	
	if(DrawWorld)
PTC1("DrawWorld 0");  
	else
PTC1("DrawWorld 1");

if ( WhitePlayer )
PTC1("TextureModels 0");
else
PTC1("TextureModels 1");
}

Spy ======> Private :))
Working Fine Last test Now :P
Spy ? you mean " Latencysim 9999 " ? xD
#7 · 13y ago
3D
3D
Quote Originally Posted by LucN View Post
Spy ? you mean " Latencysim 9999 " ? xD
:///
Yeah :P
But Not 9999
#8 · 13y ago
LU
LucN
Quote Originally Posted by kareem111 View Post

:///
Yeah :P
But Not 9999
Then it's Latencysim 50 ...
#9 · 13y ago
3D
3D
Quote Originally Posted by LucN View Post
Then it's Latencysim 50 ...
100
/msg2short
#10 · 13y ago
corssa
corssa
Quote Originally Posted by LucN View Post
Spy ? you mean " Latencysim 9999 " ? xD
so spy consists on internet latency? ... I always thought it had something to do with lag


---------- Post added at 07:57 PM ---------- Previous post was at 07:55 PM ----------

Quote Originally Posted by LucN View Post
and there's one special PushToConsole commend makes you invisible
is there an invisible hack still working on CF?... hackers always find a way around...
#11 · 13y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • anyone got a working botBy Justin12321 in CrossFire Hacks & Cheats
    1Last post 17y ago
  • Anyone Got a working Bypass?By DenizO in Combat Arms Help
    1Last post 16y ago
  • Anyone got a working bypass?By IsamuRukario in Combat Arms Help
    9Last post 16y ago
  • Anyone Got Chams Working?By djDRO in Combat Arms Discussions
    0Last post 16y ago
  • Has anyone got 1.0.184 console hack working at allBy dustywankinobi in Call of Duty Modern Warfare 2 Discussions
    12Last post 16y ago

Tags for this Thread

None