We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/TKazer/CS2_External/blob/6916384d62f2a3711e7d6ed57afd3b499f175577/CS2_External/Cheats.cpp#L339C1-L341C1 i was helping the dev of Aeonix with vis check and thought i should release
Video https://streamable.com/o7glgt
Here the usage
Important
MenuConfig.hpp
inline bool EspVisCheck = true; inline ImColor VisibleColor = ImColor(255, 255, 0, 255);
Cheats.cpp
Gui.MyCheckBox("VisibleCheck", &MenuConfig::EspVisCheck); Gui.MyCheckBox("BoxESP", &MenuConfig::ShowBoxESP); ImGui::SameLine(); ImGui::ColorEdit4("##VisColor", reinterpret_cast<float*>(&MenuConfig::VisibleColor), ImGuiColorEditFlags_NoInputs); ImGui::SameLine(); ImGui::ColorEdit4("##BoxColor", reinterpret_cast<float*>(&MenuConfig::BoxColor), ImGuiColorEditFlags_NoInputs); if (MenuConfig::ShowBoxESP) { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, { 0, 0, 0, 255 }, 3); if (MenuConfig::EspVisCheck) { if (Entity.Pawn.bSpottedByMask > 0) { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, MenuConfig::VisibleColor, 1.3); } else { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, MenuConfig::BoxColor, 1.3); } } else { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, MenuConfig::BoxColor, 1.3); } }
The text was updated successfully, but these errors were encountered:
im stupid i didnt add checking if teamates spotted them
if (MenuConfig::ShowBoxESP) { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, { 0, 0, 0, 255 }, 3); if (MenuConfig::EspVisCheck) { if ((Entity.Pawn.bSpottedByMask & (DWORD64(1) << LocalPlayerControllerIndex)) || (LocalEntity.Pawn.bSpottedByMask & (DWORD64(1) << i))) { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, MenuConfig::VisibleColor, 1.3); } else { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, MenuConfig::BoxColor, 1.3); } } else { Gui.Rectangle({ Rect.x, Rect.y }, { Rect.z, Rect.w }, MenuConfig::BoxColor, 1.3); } }
Sorry, something went wrong.
No branches or pull requests
https://github.com/TKazer/CS2_External/blob/6916384d62f2a3711e7d6ed57afd3b499f175577/CS2_External/Cheats.cpp#L339C1-L341C1
i was helping the dev of Aeonix with vis check and thought i should release
Video
https://streamable.com/o7glgt
Here the usage
Important
MenuConfig.hpp
Important
Cheats.cpp
The text was updated successfully, but these errors were encountered: