Skip to content

Commit

Permalink
Removed Bhop
Browse files Browse the repository at this point in the history
  • Loading branch information
Fr0go1 committed Oct 20, 2023
1 parent 14e5fbc commit 4d03055
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 78 deletions.
50 changes: 0 additions & 50 deletions CS2_External/Bunnyhop.hpp

This file was deleted.

1 change: 0 additions & 1 deletion CS2_External/CS2_External.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@
<ItemGroup>
<ClInclude Include="AimBot.hpp" />
<ClInclude Include="Bone.h" />
<ClInclude Include="Bunnyhop.hpp" />
<ClInclude Include="Cheats.h" />
<ClInclude Include="Entity.h" />
<ClInclude Include="font\fontArray.h" />
Expand Down
1 change: 0 additions & 1 deletion CS2_External/CS2_External.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@
</ClInclude>
<ClInclude Include="Utils\style.hpp" />
<ClInclude Include="font\IconsFontAwesome5.h" />
<ClInclude Include="Bunnyhop.hpp" />
<ClInclude Include="mathstuff.h" />
<ClInclude Include="font\fontArray.h" />
<ClInclude Include="resource.h" />
Expand Down
22 changes: 6 additions & 16 deletions CS2_External/Cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,27 +53,27 @@ void Cheats::Menu()
SetupImGuiStyle3();
}

if (ImGui::Button(ICON_FA_EYE, ImVec2(100, 48))) {
if (ImGui::Button(ICON_FA_EYE, ImVec2(100, 35))) {
tabb = 0;
}
ImGui::Spacing();
if (ImGui::Button(ICON_FA_USER_CIRCLE, ImVec2(100, 48))) {
if (ImGui::Button(ICON_FA_USER_CIRCLE, ImVec2(100, 35))) {
tabb = 1;
}
ImGui::Spacing();
if (ImGui::Button(ICON_FA_FILE_CODE, ImVec2(100, 48))) {
if (ImGui::Button(ICON_FA_FILE_CODE, ImVec2(100, 35))) {
tabb = 2;
}
ImGui::Spacing();
if (ImGui::Button(ICON_FA_HAND_POINTER, ImVec2(100, 48))) {
if (ImGui::Button(ICON_FA_HAND_POINTER, ImVec2(100, 35))) {
tabb = 3;
}
ImGui::Spacing();
if (ImGui::Button(ICON_FA_FOLDER_OPEN, ImVec2(100, 48))) {
if (ImGui::Button(ICON_FA_FOLDER_OPEN, ImVec2(100, 35))) {
tabb = 4;
}
ImGui::Spacing();
if (ImGui::Button(ICON_FA_SUN, ImVec2(100, 48))) {
if (ImGui::Button(ICON_FA_SUN, ImVec2(100, 35))) {
tabb = 5;
}
}
Expand Down Expand Up @@ -233,10 +233,6 @@ void Cheats::Menu()
Gui.SliderScalarEx1("Proportion", ImGuiDataType_Float, &MenuConfig::Proportion, &ProportionMin, &ProportionMax, "%.1f", ImGuiSliderFlags_None);
Gui.SliderScalarEx1("RadarRange", ImGuiDataType_Float, &MenuConfig::RadarRange, &RadarRangeMin, &RadarRangeMax, "%.1f", ImGuiSliderFlags_None);
Gui.SliderScalarEx1("RadarBgAlpha", ImGuiDataType_Float, &MenuConfig::RadarBgAlpha, &RadarBgAlphaMin, &RadarBgAlphaMax, "%.3f", ImGuiSliderFlags_None);

ImGui::Checkbox("Bunnyhop", &MenuConfig::BunnyHop);
ImGui::SameLine();
ImGui::Checkbox("Bunnyhop 2", &MenuConfig::BunnyHop2);
ImGui::Text("[INSERT] HideMenu");
}
else if (tabb == 3) {
Expand Down Expand Up @@ -569,12 +565,6 @@ void Cheats::Run()
if (MenuConfig::ShowAimFovRange)
Render::DrawFovCircle(LocalEntity);

if (MenuConfig::BunnyHop)
Bunnyhop::Run(LocalEntity);

if (MenuConfig::BunnyHop2)
Bunnyhop2::Run(LocalEntity);

// TriggerBot
if (MenuConfig::TriggerBot && GetAsyncKeyState(TriggerBot::HotKey))
{
Expand Down
1 change: 0 additions & 1 deletion CS2_External/Cheats.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include "AimBot.hpp"
#include "Radar/Radar.h"
#include "TriggerBot.hpp"
#include "Bunnyhop.hpp"

namespace Cheats
{
Expand Down
2 changes: 0 additions & 2 deletions CS2_External/MenuConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ namespace MenuConfig

inline bool ShowMenu = true;
inline bool VisibleEsp = true;
inline bool BunnyHop = true;
inline bool BunnyHop2 = true;
inline bool ShowRadar = true;
inline float RadarRange = 150;
inline float RadarPointSizeProportion = 1.f;
Expand Down
2 changes: 1 addition & 1 deletion CS2_External/OS-ImGui/OS-ImGui_Base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace OSImGui
iconConfig.OversampleV = 3;
iconConfig.GlyphRanges = iconRanges;
iconConfig.FontDataOwnedByAtlas = false;
ImFont* iconFont = fontAtlas->AddFontFromMemoryTTF((void*)rawData, sizeof(rawData), 28.f, &iconConfig, iconRanges);
ImFont* iconFont = fontAtlas->AddFontFromMemoryTTF((void*)rawData, sizeof(rawData), 24.f, &iconConfig, iconRanges);
io.Fonts = fontAtlas;

ImGui::StyleColorsDark();
Expand Down
2 changes: 0 additions & 2 deletions CS2_External/Utils/ConfigMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ namespace ConfigMenu {
MenuConfig::ShowAimFovRange = true;
MenuConfig::AimFovRangeColor = ImColor(230, 230, 230, 255);
MenuConfig::OBSBypass = true;
MenuConfig::BunnyHop = false;
MenuConfig::BunnyHop2 = false;
MenuConfig::ShowDistance = true;
CrosshairConfig::CrossHairColor = ImColor(0, 255, 0, 255);
CrosshairConfig::CrossHairSize = 75;
Expand Down
4 changes: 0 additions & 4 deletions CS2_External/Utils/ConfigSaver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ namespace MyConfigSaver {
configFile << "AimFovRangeColor " << MenuConfig::AimFovRangeColor.Value.x << " " << MenuConfig::AimFovRangeColor.Value.y << " " << MenuConfig::AimFovRangeColor.Value.z << " " << MenuConfig::AimFovRangeColor.Value.w << std::endl;
configFile << "VisibleColor " << MenuConfig::VisibleColor.Value.x << " " << MenuConfig::VisibleColor.Value.y << " " << MenuConfig::VisibleColor.Value.z << " " << MenuConfig::VisibleColor.Value.w << std::endl;
configFile << "OBSBypass " << MenuConfig::OBSBypass << std::endl;
configFile << "BunnyHop " << MenuConfig::BunnyHop << std::endl;
configFile << "BunnyHop2 " << MenuConfig::BunnyHop2 << std::endl;
configFile << "ShowDistance " << MenuConfig::ShowDistance << std::endl;
configFile << "RadarBgAlpha " << MenuConfig::RadarBgAlpha << std::endl;
configFile << "Style " << MenuConfig::styleee << std::endl;
Expand Down Expand Up @@ -188,8 +186,6 @@ namespace MyConfigSaver {
else if (key == "AimFovRangeColor") iss >> MenuConfig::AimFovRangeColor.Value.x >> MenuConfig::AimFovRangeColor.Value.y >> MenuConfig::AimFovRangeColor.Value.z >> MenuConfig::AimFovRangeColor.Value.w;
else if (key == "VisibleColor") iss >> MenuConfig::VisibleColor.Value.x >> MenuConfig::VisibleColor.Value.y >> MenuConfig::VisibleColor.Value.z >> MenuConfig::VisibleColor.Value.w;
else if (key == "OBSBypass") iss >> MenuConfig::OBSBypass;
else if (key == "BunnyHop") iss >> MenuConfig::BunnyHop;
else if (key == "BunnyHop2") iss >> MenuConfig::BunnyHop2;
else if (key == "ShowDistance") iss >> MenuConfig::ShowDistance;
else if (key == "RadarBgAlpha") iss >> MenuConfig::RadarBgAlpha;
else if (key == "StyleIndex") iss >> MenuConfig::selectedStyleIndex;
Expand Down

0 comments on commit 4d03055

Please sign in to comment.