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 Hack Coding / Programming / Source Code › Latest LTClient and CShell Information

TalkingLatest LTClient and CShell Information

Posts 1–11 of 11 · Page 1 of 1
SM
SmartGold
Latest LTClient and CShell Information
Hey guys ive been working on my first ever hack! Everything is going fine but there is only one problem. Can you guys tell me the latest LTClient and CShell information?

Example:
)( (dwCShell + 0x299D40) );
)( *LTClient + 0x1F8 );
I would like to know the latest one so i can release my first hack! TY!
#1 · 15y ago
mestrelost
mestrelost
Do not answer because I'm having the same problem!
whenever I try the hack created the X-Trap detects
Must be because of the LTC or PTC

if someone sends me a list of PTC would help
#2 · 15y ago
SM
SmartGold
Quote Originally Posted by mestrelost View Post
Do not answer because I'm having the same problem!
whenever I try the hack created the X-Trap detects
Must be because of the LTC or PTC

if someone sends me a list of PTC would help
Did you try this:

make a loop that checks if the user inputs a button, and if he does. We can enable a hack.
But fist we start our loop:
While(1) or for(;
Both loops are good. I always use For:
For(;;)
A while loop you can compare 2 "things" like 1 == 1 or 1 > 5 and more. With a for loop you can do more. Like this:
for(int a=0;a==10;a++) {

}

This loop loops 10 times. This also can be done with a while loop but this one takes less space. For loop, we put our first configuration. And blood says that you need to put __asm pushad; in the begin of the loop to bypass the securety.
And at the end: __asm popad;
for(;;) {
__asm pushad;

__asm popad;
}
#3 · 15y ago
mestrelost
mestrelost
Correct use same
but will sort that you could see if something wrong with this code

why the x-trap always detect : (

Code:
#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PushToConsole(char* szVal ) {
    DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    if( dwCShell != NULL )
    {
        DWORD *LTClient = ( DWORD* )( (dwCShell +  0x2E7FA8) );
        void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1C0 );
        _asm
        {
            push szVal;
            call CONoff;
            add esp, 4;
        }
    }
}

DWORD WINAPI hello(LPVOID) {
    while(GetModuleHandleA("CShell.dll") == NULL ) {
    Sleep(120);
}

	bool nosky = true;
		
	for(;;) {
    __asm pushad;


if(GetAsyncKeyState(VK_F3)&1) {
nosky = !nosky;
}


if (nosky) {
PushToConsole("DrawSky 1");
}
else {
PushToConsole("DrawSky 0");
}
Sleep(120);
    __asm popad;
    }

}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, " ", "Hack Injetado", 0);
CreateThread(NULL, NULL,hello, NULL, NULL, NULL);
}
return TRUE;
}


#4 · 15y ago
SM
SmartGold
Well i dont know but we need to stay on the topic!
#5 · 15y ago
mestrelost
mestrelost
lol so here
but if you get the TLC sends me a PM
Message
#6 · 15y ago
Nubzgetkillz
Nubzgetkillz
Download cshell i posted. it is unpacked.

look for addy yourself.
#7 · 15y ago
Fly3r
Fly3r
Mestre i think push to console are all patched.so .. this aint gonna work
#8 · 15y ago
mestrelost
mestrelost
So it is The Thurs

Code:
void __cdecl PushToConsole (char * szVal) {
Note: That this Patch or
Code:
PushToConsole (DrawSky 1 ");
}
else {
PushToConsole (DrawSky 0 ");
PS: Or is it that this patch aki
----------
Will I have to tidy?

if you have a more updated code could send me
Thanks
#9 · 15y ago
Fly3r
Fly3r
Mest... you have to Make the whole hack with a different way .. Push to Console hacks are all patched.. so both are wrong... i think only some work but dunno which ..
find another way to make hacks. Like d3d or so ..

Quote Originally Posted by Nubzgetkillz View Post
Download cshell i posted. it is unpacked.

look for addy yourself.
where did u exactly post the unpacked cshell ?
#10 · edited 15y ago · 15y ago
Swiftdude
Swiftdude
you gotta unpack cshell on your own.
╪closed╪
#11 · 15y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Tags for this Thread

None