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 › Combat Arms Hacks & Cheats › Combat Arms Hack Coding / Programming / Source Code › Working PTC Method! (25.10.10)

Working PTC Method! (25.10.10)

Posts 1–15 of 46 · Page 1 of 4
T0
T0y
Working PTC Method! (25.10.10)
Full credits: NeoIII

Code:
void __cdecl PTC( const char* szCommand ) 
{ 
    if( !eng.IsReady || dwpLTClient == NULL ) 
        return; 

    DWORD dwConsoleFunc = *( DWORD* )( dwpLTClient + 0x208 ); 
    DWORD dwRealCallA    = ( dwConsoleFunc + 0x26 );//JMP to real func 
    DWORD dwRealCallB    = *(DWORD*)( dwRealCallA + 0x1 ); 
    DWORD dwRealCall    = ( dwRealCallA + dwRealCallB + 0x5 ); 

    if( *(BYTE*)dwRealCallA == 0xE9 ) 
        dwConsoleFunc = dwRealCall; 

    __asm 
    { 
        push szCommand; 
        call dwConsoleFunc; 
        add esp, 4; 
    } 
} 

//cmd
PTC("ScreenGlowEnable 1");
#1 · 15y ago
why06
why06
I don't get the + 0x5 at the end. maybe it's to get past some kind of stack frame idk...
#2 · 15y ago
kotentopf
kotentopf
[php]void PushToConsole(char* Command)
{
typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
RunConsoleCommand_t RCC = (RunConsoleCommand_t)LTC;//Engine LTC
RCC(szCommand);
}

PushToConsole("Show FPS 1")[/php]
#3 · 15y ago
Mr.Magicman
Mr.Magicman
just use the Engine LTC for gods sake! (Note: Its a offset)
#4 · 15y ago
MI
Mikelele
'dwpLTClient'

In compiling the 2065 error "undeclared Indentifier"

I'm not getting more declare her as I do?
#5 · 15y ago
ST
Stephen
Quote Originally Posted by Mikelele View Post
'dwpLTClient'

In compiling the 2065 error "undeclared Indentifier"

I'm not getting more declare her as I do?
Code:
#define dwpLTClient 0x377F4930
put in globals (which means put on top of you solution)
#6 · 15y ago
MI
Mikelele
how do I find "real func" in CABR already got to meet then LTClient
lacks the " #difine dwRealCallA 0x.... " ? Am I on track?
#7 · 15y ago
ST
Stephen
If you mean the CA Brazil LTClient..

Then you need to unpack cshell.dll and look for a tutorial posted in here on how to get that addy.
#8 · 15y ago
MI
Mikelele
Thank you know the link of the post?
#9 · 15y ago
ST
Stephen
Quote Originally Posted by Mikelele View Post
Thank you know the link of the post?
Use the search buttonn :O
#10 · 15y ago
nepster75
nepster75
when i put a new ptc method, says ''eng.'' undeclared Indentifier"

and after this other error ''error C2228: left of '.IsReady' must have class/struct/union
1> type is 'int''


whats wrong?
#11 · 15y ago
MI
Mikelele
the forum is in English and I'm from Brazil I have to be translated into Portuguese so I ask the link is not because I'm noob but more by necessity thanks anyway
#12 · 15y ago
ST
Stephen
Quote Originally Posted by Mikelele View Post
the forum is in English and I'm from Brazil I have to be translated into Portuguese so I ask the link is not because I'm noob but more by necessity thanks anyway
oh, ok. I will link you.

http://www.mpgh.net/forum/207-combat...-ltclient.html

I cant see the video because I'm at school. Look at it :S
#13 · 15y ago
FI
filecroc
Code:
#include "stdafx.h"
#include <windows.h>

#define LTC  0x000000 //LTC CA BR Before


void PushToConsole(char* Command)
{
    typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t RCC = (RunConsoleCommand_t)LTC;//Engine LTC
   
}

PushToConsole("Show FPS 1")  
}
}
}
DWORD WINAPI dwHackThread(LPVOID) {
while( !IsGameReadyForHook() )
Sleep(300);
main();
return 0;
}
#14 · 15y ago
ST
Stephen
Quote Originally Posted by filecroc View Post
Code:
#include "stdafx.h"
#include <windows.h>

#define LTC  0x000000 //LTC CA BR Before


void PushToConsole(char* Command)
{
    typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t RCC = (RunConsoleCommand_t)LTC;//Engine LTC
   
}

PushToConsole("Show FPS 1")  
}
}
}
DWORD WINAPI dwHackThread(LPVOID) {
while( !IsGameReadyForHook() )
Sleep(300);
main();
return 0;
}

Umm. What are you trying to do?
#15 · 15y ago
Posts 1–15 of 46 · Page 1 of 4

Post a Reply

Similar Threads

  • Actaul working ptc methodBy STOPBANNINGME in Combat Arms Hack Coding / Programming / Source Code
    17Last post 15y ago
  • Does anyone have a working PTC method?By Spilli in Combat Arms Coding Help & Discussion
    16Last post 15y ago
  • PTC Methods?By ~Liberty~ in Combat Arms EU Help
    3Last post 16y ago
  • ptc methodBy HaX4LiFe! in Combat Arms EU Hack Coding/Source Code
    23Last post 16y ago
  • [kol]working Dupe MethodBy AN1MAL in General Game Hacking
    12Last post 19y ago

Tags for this Thread

None