From d97ab409c4d3ffd353ee0c8e06c4c953d2c9b2c1 Mon Sep 17 00:00:00 2001 From: jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Tue, 11 Oct 2022 13:31:46 +0300 Subject: [PATCH] add: function for the "Shoot" buttons --- DevourClient/Features/Menu.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/DevourClient/Features/Menu.cpp b/DevourClient/Features/Menu.cpp index de40cfd..fd686f6 100644 --- a/DevourClient/Features/Menu.cpp +++ b/DevourClient/Features/Menu.cpp @@ -195,6 +195,14 @@ void DrawMapSpecificTab() { Misc::KnockoutPlayers(true); } + if (ImGui::Button("Shoot Everyone (Town)")) { + Misc::ShootEveryone(true, true); + } + + if (ImGui::Button("Shoot Yourself (Town)")) { + Misc::ShootEveryone(false, true); + } + if (ImGui::Button("Skip long interact")) { Misc::SkipLongInteract(); }