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 › Combat Arms Coding Help & Discussion › help with NPC opk/telekill

help with NPC opk/telekill

Posts 1–15 of 17 · Page 1 of 2
supercarz1991
supercarz1991
help with NPC opk/telekill
i have a working source...here it is (don't worry i removed thiings so its not completely useable unless you know how to fix it)

anyway, i have the pointers and such for NPC's (cuz i don't want a pub telekill out lol) but i cant get the opk to work

if the opk/tele are in the void like below, it doesn't turn on at all in game, nor does it teleport anything in anyway

Code:
#define charposoffset ClientFx.fxd + 0x66F34 //player pointer
#define otherplyrptr //enemy pointer
#define posyoffset 
#define yoffset 
DWORD posptr;
DWORD posy;
DWORD playertarget;


void OPK(void) {
 
        while(1){
 
                posptr=NULL;
                posptr = (DWORD)GetModuleHandleA("ClientFX.fxd");
                posptr += charposoffset;
 
                memcpy(&posy,(void *)(posptr),4);
                posy += posyoffset;
 
                memcpy(&playertarget,(void *)(otherplyrptr),4);
                playertarget += yoffset;
 
 
 
 
                ;if(GetAsyncKeyState(VK_F10)&1)
                {
                        if(posy > posyoffset && playertarget > yoffset)
                        {
                                *(float*)playertarget = *(float*)posy;
                                *(float*)(playertarget+0x4) = *(float*)(posy+0x4);
                                *(float*)(playertarget-0x4) = *(float*)(posy-0x4);
                        }
                }
 
                ;if(GetAsyncKeyState(VK_F11)&1)
                {
                        if(posy > posyoffset && playertarget > yoffset)
                        {
                                *(float*)posy = *(float*)playertarget;
                                *(float*)(posy+0x9) = *(float*)(playertarget+0x9);
                                *(float*)(posy-0x9) = *(float*)(playertarget-0x9);
                        }
                }
 
        }
}

DWORD WINAPI OPKSTARTUP(LPVOID)
{
        while( !IsGameReadyForHook() )
        Sleep(800);
OPK();
        return 0;
}
note, i changed a lot so its gonna be hard for sum1 to c+p.

anyway, it doesn't start to opk or tele when i hit the hot key whetehr i have it on or off in the menu

i tried putting it with my nametags and ptc's to get it to tele/opk with it on/off on menu with hotkeys and it didn't work because i had to // the dword winapi section to even get it to compile

help? (if you want the source updated i have it, i'll only give it to good coders though)
#1 · 15y ago
flameswor10
flameswor10
Detected source is detected
#2 · 15y ago
supercarz1991
supercarz1991
Oh the whole source is bad? Oops lol
#3 · 15y ago
FA
Fabolous
You forgot to create a thread.
#4 · 15y ago
kotentopf
kotentopf
Quote Originally Posted by flameswor10 View Post
Detected source is detected
1. source not detected
2. with random player pointer no NPC-OPK available
#5 · 15y ago
FA
Fabolous
Quote Originally Posted by kotentopf View Post
1. source not detected
2. with random player pointer no NPC-OPK available
2 is wrong. You can use classes to get to NPC with random player pointer although it will hit friendly players too.
#6 · 15y ago
Nubzgetkillz
Nubzgetkillz
Best code

[highlight=c++]
if(telekill) {
SetLocalPlayerPosition(pPlayer->obj->origin);
}
[/highlight]

No Troll just try it

-Nubz
#7 · 15y ago
supercarz1991
supercarz1991
Quote Originally Posted by kotentopf View Post
1. source not detected
2. with random player pointer no NPC-OPK available
I actually have npc pointer...I may post it
#8 · 15y ago
NO
NOOB
[FONT="Lucida Sans Unicode"][COLOR="DimGray"][SIZE="3"]
wrote dis late at nightz0rs

**edited cuz i dun want dis vip source everywhere
#9 · edited 15y ago · 15y ago
SI
Sid
OMG NOOB
IT WORKS PERFECTLY!!1
#10 · 15y ago
Nubzgetkillz
Nubzgetkillz
edit deleted telekill source code
#11 · 15y ago
supercarz1991
supercarz1991
Im at work I couldn't get it lol
#12 · 15y ago
FA
Fabolous
Quote Originally Posted by supercarz1991 View Post
Im at work I couldn't get it lol
Did you create a thread yet? That could be one of the problems.
#13 · 15y ago
yoyoman4567
yoyoman4567
can someone just tell me where the dam fucking telekill code gose plz thank you
#14 · 15y ago
_F
_Fk127_
Quote Originally Posted by yoyoman4567 View Post
can someone just tell me where the dam fucking telekill code gose plz thank you
What telekill code. We dont know what code it is. PM me if you need help
#15 · 15y ago
Posts 1–15 of 17 · Page 1 of 2

Post a Reply

Tags for this Thread

None