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 › OPK

OPK

Posts 1–3 of 3 · Page 1 of 1
NE
NeoStryker
OPK
Alguem tem NPC OPK funcionando? Pode passar por MP ou skype: neostryker32
#1 · 11y ago
CO
Coder.UnkNóia
Hum.. Esse Eu Acho Que Esse Aqui Ainda Esteja Funcional!

Source Code:
[HTML]void NPCTeleKill( int TelekillNPC, LPDIRECT3DDEVICE9 pDevice ){
if( TelekillNPC == 1)
{

DWORD posptr, PositionY, dwBack;

cGameClientShell *pGameClientShell = *(cGameClientShell **)GCS;
cSFXMgr* SFXMgr = pGameClientShell->GetSFXMgr();
GetPlayerByIndex = (lpGetPlayerByIndex)PlayerByIndex;
unsigned long ulThis = *(unsigned long *)ClientInfoMgr;
GetLocalPlayer = (lpGetLocalPlayer)LocalPlayer;

posptr = (DWORD) GetModuleHandle("ClientFX.fxd");
posptr += 0x6BF34;

VirtualProtect( &PositionY, 4, PAGE_EXECUTE_READWRITE, &dwBack );
memcpy( &PositionY, (VOID *) (posptr), 4 );
VirtualProtect( &PositionY, 4, dwBack, &dwBack );

if( ValidPointer(SFXMgr) )
{
for ( int i = 0; i < SFXMgr->SFXList[SFX_CHARACTER].Num; i++ )
{
cCharacterFX2* NPC = (cCharacterFX2*)SFXMgr->SFXList[SFX_CHARACTER].List[i];

if( ValidPointer( NPC ) && ValidPointer( NPC->Object ))
{
if( NPC->IsPlayer )
continue;

D3DXVECTOR3 Pos, Screen;

Pos = MyGetObjectMaxPos( (int*)NPC->Object );

if( WorldToScreen2( pDevice, Pos, &Screen))
{
Sleep(1);
*(FLOAT *) (PositionY + 0xC8) = NPC->Object->Pos.x + 25.0f;
*(FLOAT *) (PositionY + 0xCC) = NPC->Object->Pos.y;
*(FLOAT *) (PositionY + 0xD0) = NPC->Object->Pos.z;
}
}
}
}
}
}[/HTML]

NPC OPK:

Código:
[HTML]if( ValidPointer(SFXMgr) )
{
for ( int i = 0; i < SFXMgr->SFXList[SFX_CHARACTER].Num; i++ )
{
cCharacterFX2* NPC = (cCharacterFX2*)SFXMgr->SFXList[SFX_CHARACTER].List[i];

if( ValidPointer( NPC ) && ValidPointer( NPC->Object ))
{
if( NPC->IsPlayer )
continue;

D3DXVECTOR3 Pos, Screen;

Pos = MyGetObjectMaxPos( (int*)NPC->Object );

if( WorldToScreen2( pDevice, Pos, &Screen))
{
Sleep(1);
*(FLOAT *) (PositionY + 0xC8) = NPC->Object->Pos.x + 25.0f;
*(FLOAT *) (PositionY + 0xCC) = NPC->Object->Pos.y;
*(FLOAT *) (PositionY + 0xD0) = NPC->Object->Pos.z;
}
}
}
}
}
}[/HTML]
#2 · 11y ago
luizimloko
luizimloko
Quote Originally Posted by Coder.UnkNóia View Post
Hum.. Esse Eu Acho Que Esse Aqui Ainda Esteja Funcional!

Source Code:
[HTML]void NPCTeleKill( int TelekillNPC, LPDIRECT3DDEVICE9 pDevice ){
if( TelekillNPC == 1)
{

DWORD posptr, PositionY, dwBack;

cGameClientShell *pGameClientShell = *(cGameClientShell **)GCS;
cSFXMgr* SFXMgr = pGameClientShell->GetSFXMgr();
GetPlayerByIndex = (lpGetPlayerByIndex)PlayerByIndex;
unsigned long ulThis = *(unsigned long *)ClientInfoMgr;
GetLocalPlayer = (lpGetLocalPlayer)LocalPlayer;

posptr = (DWORD) GetModuleHandle("ClientFX.fxd");
posptr += 0x6BF34;

VirtualProtect( &PositionY, 4, PAGE_EXECUTE_READWRITE, &dwBack );
memcpy( &PositionY, (VOID *) (posptr), 4 );
VirtualProtect( &PositionY, 4, dwBack, &dwBack );

if( ValidPointer(SFXMgr) )
{
for ( int i = 0; i < SFXMgr->SFXList[SFX_CHARACTER].Num; i++ )
{
cCharacterFX2* NPC = (cCharacterFX2*)SFXMgr->SFXList[SFX_CHARACTER].List[i];

if( ValidPointer( NPC ) && ValidPointer( NPC->Object ))
{
if( NPC->IsPlayer )
continue;

D3DXVECTOR3 Pos, Screen;

Pos = MyGetObjectMaxPos( (int*)NPC->Object );

if( WorldToScreen2( pDevice, Pos, &Screen))
{
Sleep(1);
*(FLOAT *) (PositionY + 0xC8) = NPC->Object->Pos.x + 25.0f;
*(FLOAT *) (PositionY + 0xCC) = NPC->Object->Pos.y;
*(FLOAT *) (PositionY + 0xD0) = NPC->Object->Pos.z;
}
}
}
}
}
}[/HTML]

NPC OPK:

Código:
[HTML]if( ValidPointer(SFXMgr) )
{
for ( int i = 0; i < SFXMgr->SFXList[SFX_CHARACTER].Num; i++ )
{
cCharacterFX2* NPC = (cCharacterFX2*)SFXMgr->SFXList[SFX_CHARACTER].List[i];

if( ValidPointer( NPC ) && ValidPointer( NPC->Object ))
{
if( NPC->IsPlayer )
continue;

D3DXVECTOR3 Pos, Screen;

Pos = MyGetObjectMaxPos( (int*)NPC->Object );

if( WorldToScreen2( pDevice, Pos, &Screen))
{
Sleep(1);
*(FLOAT *) (PositionY + 0xC8) = NPC->Object->Pos.x + 25.0f;
*(FLOAT *) (PositionY + 0xCC) = NPC->Object->Pos.y;
*(FLOAT *) (PositionY + 0xD0) = NPC->Object->Pos.z;
}
}
}
}
}
}[/HTML]
??????????????

Code:
 if( WorldToScreen2( pDevice, Pos, &Screen))
                        {
                            Sleep(1);
#3 · 11y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • I got OPK addrressBy TheRedEye in WarRock - International Hacks
    6Last post 19y ago
  • Anyone got OPK or Invisble adress?By EyalZamir in WarRock Korea Hacks
    9Last post 19y ago
  • T> opk hack for bypass newly updatedBy nnumel5 in Trade Accounts/Keys/Items
    4Last post 19y ago
  • About OPKBy TheRedEye in WarRock - International Hacks
    15Last post 19y ago
  • I got OPK Working.. XDBy Methadone727 in WarRock - International Hacks
    17Last post 19y ago

Tags for this Thread

None