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 Brazil Hacks › Combat Arms BR Hack Coding/Source Code › Combat Arms BR Coding Help › Endereço PTC

Endereço PTC

Posts 1–15 of 15 · Page 1 of 1
NE
NeoStryker
Endereço PTC
Alguem tem o endereço da função PTC?
#1 · 11y ago
Coder.Anonymous
Coder.Anonymous
Code:
0x379B3CF0
, só não se esta correto
#2 · 11y ago
NE
NeoStryker
Ta errado Tem alguma string q da pra procurar no olly???
#3 · edited 11y ago · 11y ago
Coder.Anonymous
Coder.Anonymous
Quote Originally Posted by NeoStryker View Post
É no CShell né?
sim, por la mesmo '
#4 · 11y ago
NE
NeoStryker
Quote Originally Posted by Coder.Anonymous View Post
sim, por la mesmo '
Mas ta errado
Eu pedindo pq to testando chamar PTC pelo AutoIt, sem injetar dll.
#5 · 11y ago
Coder.Anonymous
Coder.Anonymous
Quote Originally Posted by NeoStryker View Post
Mas ta errado
Eu pedindo pq to testando chamar PTC pelo AutoIt, sem injetar dll.
vé esse> 0x379B3E08 , acho que ta certo agora '
#6 · 11y ago
NE
NeoStryker
Quote Originally Posted by Coder.Anonymous View Post
vé esse> 0x379B3E08 , acho que ta certo agora '
Vlw mas ainda ta errado Pode me falar como eu encontro que eu acho aqui mesmo!
#7 · 11y ago
Coder.Hu3
Coder.Hu3
Quote Originally Posted by NeoStryker View Post
Vlw mas ainda ta errado Pode me falar como eu encontro que eu acho aqui mesmo!

#define Consoles 0x379B3E0C

#8 · edited 11y ago · 11y ago
NE
NeoStryker
Quote Originally Posted by Coder.Hu3 View Post
#define Consoles 0x379B3E0C

Mas eu consigo usar tipo SkelModelStencil com esse endereço? pq ta tão estranho assim?
#9 · 11y ago
Coder.Hu3
Coder.Hu3
Quote Originally Posted by NeoStryker View Post
Mas eu consigo usar tipo SkelModelStencil com esse endereço? pq ta tão estranho assim?
Esse endereo é o console pra vc usar com a classe PConsole


pra usa o chams usa esse endereço

#define LTClientEXE 0x491D30
#10 · 11y ago
NE
NeoStryker
Quote Originally Posted by Coder.Hu3 View Post
Esse endereo é o console pra vc usar com a classe PConsole


pra usa o chams usa esse endereço

#define LTClientEXE 0x491D30
E qual é o offset?
#11 · 11y ago
Coder.Hu3
Coder.Hu3
Classe Pconsole

http://www.mpgh.net/forum/showthread.php?t=889620


Para usar o Chams

#define LTClientEXE 0x491D30

Code:
void CommandConsole(int Variable, const char *TextOn, const char *TextOff, bool& zsFlag){
   typedef void(__cdecl*RunConsoleCommandFn)(const char*);
   RunConsoleCommandFn PTCHACK = (RunConsoleCommandFn)LTClientEXE;

   if(Variable == 1 && zsFlag == false ){
      PTCHACK(TextOn);
      zsFlag = true;
   }
   if(Variable == 0 && zsFlag == true ){
      PTCHACK(TextOff);
      zsFlag = false;
   }
}


CommandConsole(chams,"+SkelModelStencil 1", "+SkelModelStencil 0", nxchams); // Nx Chams
#12 · 11y ago
Coder.Fail
Coder.Fail
Quote Originally Posted by Coder.Hu3 View Post
#define Consoles 0x379B3E0C

Não existe endereço correto pro Consoles
#13 · 11y ago
NE
NeoStryker
Quote Originally Posted by Coder.Fail View Post
Não existe endereço correto pro Consoles
O que está errado com meu código? Quanto aperto Insert nem imprime "test".

Code:
#include <windows.h>
#include <stdio.h>
#include <process.h>

void Ptc(const char *cmd)
{

	typedef void(__cdecl*RunConsole)(const char*);
	RunConsole OnOff = (RunConsole)0x491D30;
	OnOff(cmd);
}

void Main(PVOID)
{
	while (1)
	{

		if (GetAsyncKeyState(VK_INSERT) & 1)
		{
			Ptc("+SkelModelStencil 1");
			printf("test\n");
		}

		Sleep(100);
		
	}
}

BOOL WINAPI DllMain(HINSTANCE hDllHandle, DWORD nReason, LPVOID Reserved)
{
	if (nReason == 1)
	{
		AllocConsole();
		freopen("CONOUT$", "w", stdout);
		_beginthread(Main, 0, 0);
	}

	return TRUE;
}
#14 · 11y ago
Coder.Hu3
Coder.Hu3
Quote Originally Posted by NeoStryker View Post
O que está errado com meu código? Quanto aperto Insert nem imprime "test".

Code:
#include <windows.h>
#include <stdio.h>
#include <process.h>

void Ptc(const char *cmd)
{

	typedef void(__cdecl*RunConsole)(const char*);
	RunConsole OnOff = (RunConsole)0x491D30;
	OnOff(cmd);
}

void Main(PVOID)
{
	while (1)
	{

		if (GetAsyncKeyState(VK_INSERT) & 1)
		{
			Ptc("+SkelModelStencil 1");
			printf("test\n");
		}

		Sleep(100);
		
	}
}

BOOL WINAPI DllMain(HINSTANCE hDllHandle, DWORD nReason, LPVOID Reserved)
{
	if (nReason == 1)
	{
		AllocConsole();
		freopen("CONOUT$", "w", stdout);
		_beginthread(Main, 0, 0);
	}

	return TRUE;
}


Troque pelo que vou passa agr


Code:
#include <windows.h>
#include <stdio.h>
#include <process.h>

void CommandConsole(int Variable, const char *TextOn, const char *TextOff, bool& zsFlag){
   typedef void(__cdecl*RunConsoleCommandFn)(const char*);
   RunConsoleCommandFn PTCHACK = (RunConsoleCommandFn)LTClientEXE;

   if(Variable == 1 && zsFlag == false ){
      PTCHACK(TextOn);
      zsFlag = true;
   }
   if(Variable == 0 && zsFlag == true ){
      PTCHACK(TextOff);
      zsFlag = false;
   }
}
void Main(PVOID)
{
	while (1)
	{

			if (GetAsyncKeyState(VK_F11)&1) chams= !chams;
		{
			CommandConsole(chams,"+SkelModelStencil 1", "+SkelModelStencil 0", nxchams); // Nx Chams
			printf("test\n");
		}

		Sleep(100);
		
	}
}

BOOL WINAPI DllMain(HINSTANCE hDllHandle, DWORD nReason, LPVOID Reserved)
{
	if (nReason == 1)
	{
		AllocConsole();
		freopen("CONOUT$", "w", stdout);
		_beginthread(Main, 0, 0);
	}

	return TRUE;
}
#15 · 11y ago
Posts 1–15 of 15 · Page 1 of 1

Post a Reply

Similar Threads

  • multiclicker2 - Auto Clicker websites PTC.By hTk # COGUSTYLE in General Hacking
    1Last post 7y ago
  • here is a quick tutorial on how to use PTC sitesBy thesynyster32 in Programming Tutorial Requests
    0Last post 17y ago
  • PTC CommandsBy Solify in Combat Arms EU Hack Coding/Source Code
    85Last post 14y ago
  • [Request]How do i make a ptc website.By trevor206 in Programming Tutorial Requests
    0Last post 16y ago
  • [Discuss] Revive and Target Distance PTCBy ppl2pass in Combat Arms Hack Coding / Programming / Source Code
    5Last post 16y ago

Tags for this Thread

None