Add files via upload

Added Name, Distance, Box ESP, Line ESP Toggles
pull/30/head
driv3n 3 years ago committed by GitHub
parent 594d152748
commit 6a639bbb64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -60,7 +60,7 @@
<LinkIncremental>false</LinkIncremental>
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath)</IncludePath>
<LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64)</LibraryPath>
<TargetName>client_ap</TargetName>
<TargetName>Nodular</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
@ -90,6 +90,9 @@
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<ExceptionHandling>Sync</ExceptionHandling>
<LanguageStandard>Default</LanguageStandard>
<LanguageStandard_C>Default</LanguageStandard_C>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>

File diff suppressed because it is too large Load Diff

@ -306,7 +306,7 @@ void Overlay::RenderMenu()
ImGui::Text(XorStr("Smooth Aim Value:"));
ImGui::SameLine();
ImGui::TextColored(GREEN, "%.f", smooth);
ImGui::SliderFloat(XorStr("##2"), &smooth, 85.0f, 150.0f, "##");
ImGui::SliderFloat(XorStr("##2"), &smooth, 35.0f, 150.0f, "##");
ImGui::SameLine();
ImGui::Text(XorStr("85 To 100 Is Safe"));
ImGui::Dummy(ImVec2(0.0f, 10.0f));
@ -325,6 +325,11 @@ void Overlay::RenderMenu()
ImGui::Sliderbox(XorStr("Health bar"), &v.healthbar);
ImGui::SameLine();
ImGui::Sliderbox(XorStr("Shield bar"), &v.shieldbar);
ImGui::Sliderbox(XorStr("Line ESP"), &v.line);
ImGui::SameLine();
ImGui::Sliderbox(XorStr("Box ESP"), &v.box);
ImGui::SameLine();
ImGui::Sliderbox(XorStr("Name ESP"), &v.name);
ImGui::Dummy(ImVec2(0.0f, 10.0f));
ImGui::Text(XorStr("Player Glow Color:"));
ImGui::ColorEdit3("##Glow Color Picker", glowcolor);
@ -366,9 +371,10 @@ void Overlay::RenderMenu()
config << v.healthbar << "\n";
config << v.shieldbar << "\n";
config << v.distance << "\n";
config << v.line << "\n";
config << v.box << "\n";
config << thirdperson << "\n";
config << std::boolalpha << minimapradar << "\n";
config << std::boolalpha << lightbackpack << "\n";
config << std::boolalpha << medbackpack << "\n";
config << std::boolalpha << heavybackpack << "\n";
@ -485,6 +491,9 @@ void Overlay::RenderMenu()
config >> v.healthbar;
config >> v.shieldbar;
config >> v.distance;
config >> v.line;
config >> v.box;
config >> v.name;
config >> thirdperson;
config >> minimapradar;
config >> lightbackpack;

Loading…
Cancel
Save