addresses updated + menu shortcut set to INS

This commit is contained in:
Jadis0x
2024-05-21 22:43:05 +03:00
parent d32b92d1e3
commit ad4bf3e659
7 changed files with 251871 additions and 252134 deletions

View File

@@ -53,9 +53,6 @@ void DrawVisualsTab() {
ImGui::SameLine();
ImGui::Text("Flashlight color");
ImGui::Checkbox("Unlimited UV", &settings::unlimited_uv);
ImGui::Checkbox("Fullbright", &settings::fullbright);
ImGui::Checkbox("Player ESP", &settings::player_esp);
ImGui::SameLine();
bool open_pelcolor_popup = ImGui::ColorButton("playerespcolor", ImVec4(settings::player_esp_color[0], settings::player_esp_color[1], settings::player_esp_color[2], settings::player_esp_color[3]));

View File

@@ -597,12 +597,12 @@ HRESULT __stdcall hookD3D11Present(IDXGISwapChain* pSwapChain, UINT SyncInterval
return phookD3D11Present(pSwapChain, SyncInterval, Flags);
}
if (GetKeyState('Q') & 0x8000) {
if (GetKeyState(VK_INSERT) & 0x8000) {
pressed = true;
}
else if (!(GetKeyState('Q') & 0x8000) && pressed) {
else if (!(GetKeyState(VK_INSERT) & 0x8000) && pressed) {
open_menu = !open_menu;
pressed = false;

View File

@@ -96,7 +96,7 @@ void Run()
if (!horrorMenu)
return;
app::String* str = reinterpret_cast<app::String*>(il2cpp_string_new("Welcome to DevourClient.\n\nAfter ensuring the game is in full screen, press the Q key to activate the menu.\n\n\nYou can disable the cheat by pressing the 'END' key."));
app::String* str = reinterpret_cast<app::String*>(il2cpp_string_new("Welcome to DevourClient.\n\nAfter ensuring the game is in full screen, press the INS key to activate the menu.\n\n\nYou can disable the cheat by pressing the 'END' key."));
if (str) {
if (app::Menu_ShowMessageModal == nullptr)
@@ -114,9 +114,9 @@ void Run()
Misc::FullBright();
if (settings::fly)
Misc::Fly(settings::fly_speed);
//Misc::Fly(settings::fly_speed);
std::this_thread::sleep_for(std::chrono::milliseconds(400));
std::this_thread::sleep_for(std::chrono::milliseconds(700));
}
CreateThread(0, 0, EjectThread, 0, 0, 0);
}