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 › Steam Games Hacks & Cheats › Counter-Strike 2 Hacks › Counter-Strike 2 Coding & Resources › How to see enemy view angles?

How to see enemy view angles?

Posts 1–7 of 7 · Page 1 of 1
HexMurder
HexMurder
How to see enemy view angles?
Possible? i drew these up in photoshop to better explain what i'm talking about.

This:


or this:


Obviously you would just draw a line from point a to point b. But what are starting and ending points? Thanks guy's.

Should note i have already written several esp's in directx so i have the prerequisites. Just not sure how to actually do this one.
#1 · 10y ago
DR
Draig9
traceray starting point entity headpos or whatever you want then endpos is when it hits a wall etc.
#2 · 10y ago
HexMurder
HexMurder
Quote Originally Posted by Draig9 View Post
traceray starting point entity headpos or whatever you want then endpos is when it hits a wall etc.
Sorry man, i'm unfamiliar with tracerays. Any more info you could help me with?
#3 · 10y ago
DR
Draig9
Quote Originally Posted by HexMurder View Post


Sorry man, i'm unfamiliar with tracerays. Any more info you could help me with?
You internal or external? If your internal Just go look at some of the decently made sources like markHc's base since it includes traceray's if your external then It's going to be a bit harder either by doing bsp parsing or you just chuck a limit on the length of the line. But you could possibly in theory I guess read an entity's position then work out their headpos/eyepos and work out it's orientation I guess but never tried it and no idea if it would work but really the easiest way is tracerays.
#4 · 10y ago
HexMurder
HexMurder
Quote Originally Posted by Draig9 View Post
You internal or external? If your internal Just go look at some of the decently made sources like markHc's base since it includes traceray's if your external then It's going to be a bit harder either by doing bsp parsing or you just chuck a limit on the length of the line. But you could possibly in theory I guess read an entity's position then work out their headpos/eyepos and work out it's orientation I guess but never tried it and no idea if it would work but really the easiest way is tracerays.
I'm external. What is bsp parsing? thanks
#5 · 10y ago
LE
legit_player
Internal ready for C+P, you could do this even external.

Code:
void BulletTrace(CBaseEntity* pEntity)
{
	Vector src3D, dst3D, forward, src, dst;
	trace_t tr;
	Ray_t ray;
	CTraceFilter filter;

	Math::AngleVectors(pEntity->GetEyeAngles(), &forward);
	filter.pSkip = pEntity;
	src3D = pEntity->GetBonePosition(6) - Vector(0, 0, 0);
	dst3D = src3D + (forward * 100);

	ray.Init(src3D, dst3D);

	I::EngineTrace->TraceRay(ray, MASK_SHOT, &filter, &tr);

	if (!Draw::WorldToScreen(src3D, src) || !Draw::WorldToScreen(tr.endpos, dst))
		return;

	Draw::DrawLine(src.x, src.y, dst.x, dst.y, Color(255, 0, 0, 255));
	Draw::DrawRect(dst.x - 3, dst.y - 3, 6, 6, Color(255, 0, 0, 255));
}
#6 · 10y ago
Smoke
Smoke
Been over a week since last update/bump after answers, assuming solved.

/Closed.
#7 · 9y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Similar Threads

  • Is there a hack to see enemies through walls?By sorrow13 in WarRock - International Hacks
    14Last post 19y ago
  • How to see your Ping more detailedBy BigPop in Call of Duty Modern Warfare 2 Tutorials
    38Last post 16y ago
  • How to see does someone hacker?This Helps...By DarkTranny in CrossFire Hacks & Cheats
    3Last post 17y ago
  • Help - Easy to see enemy.By AussieAImBot in Combat Arms Hacks & Cheats
    1Last post 17y ago
  • How Japan sees AmericaBy arunforce in General
    13Last post 19y ago

Tags for this Thread

None