HelpFully External Player Visibility?

Posts 14 of 4 · Page 1 of 1
Fully External Player Visibility?
Currently making my first CSGO Cheat, Making it fully external (From scratch) but ran into somewhat of a problem.
I'm trying to find the best way of checking to see if the player is visible or not (Behind wall ect) for my aimbot.
I've found a couple of ways but none seem to stand out.
Some people are saying to inject something with ShellCode (Would be defeating the purpose of being external) but would like to know how much more of risk it would be detection wise ect.

Thank you for everyones help in advanced!
Quote Originally Posted by 10popo01 View Post
Currently making my first CSGO Cheat, Making it fully external (From scratch) but ran into somewhat of a problem.
I'm trying to find the best way of checking to see if the player is visible or not (Behind wall ect) for my aimbot.
I've found a couple of ways but none seem to stand out.
Some people are saying to inject something with ShellCode (Would be defeating the purpose of being external) but would like to know how much more of risk it would be detection wise ect.

Thank you for everyones help in advanced!
You can use bSpottedByMask (Easy), ray tracing (Moderate), or BSP Parsing (Difficult but amazing).
Code:
if ((Entity.bSpottedByMask & 1 << Player.ID) == 0)
    continue;
Quote Originally Posted by Sandwich View Post


You can use bSpottedByMask (Easy), ray tracing (Moderate), or BSP Parsing (Difficult but amazing).
Code:
if ((Entity.bSpottedByMask & 1 << Player.ID) == 0)
    continue;
I can't Ray Trace without injecting though right?
Quote Originally Posted by 10popo01 View Post
I can't Ray Trace without injecting though right?
No. An external cheat only opens a handle, you aren't injecting anything to memory.
Posts 14 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?