add: directx11 hook (menu), imgui/minhook and the settings

This commit is contained in:
2024-04-13 12:37:16 +02:00
parent 9e8909a97f
commit 636f3e0e1e
43 changed files with 53583 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
#include "pch-il2cpp.h"
#include "settings.hpp"
namespace settings {
int height = 1080;
int width = 1920;
bool big_flashlight = false;
float flashlight_color[4] = { 255.f, 255.f, 255.f, 255.f };
bool unlimited_uv = false;
bool unlimited_uv_reset = true;
bool fullbright = false;
bool player_esp = false;
float player_esp_color[4] = { 0, 255.f, 0, 255.f };
bool player_snaplines = false;
float player_snaplines_color[4] = { 0, 255.f, 0, 255.f };
bool azazel_esp = false;
float azazel_esp_color[4] = { 255.f, 0, 0, 255.f };
bool azazel_snaplines = false;
float azazel_snaplines_color[4] = { 255.f, 0, 0, 255.f };
bool item_esp = false;
float item_esp_color[4] = { 255.f, 255.f, 255.f, 255.f };
bool demon_esp = false;
float demon_esp_color[4] = { 255.f, 0, 0, 255.f };
bool goat_esp = false;
float goat_esp_color[4] = { 0, 255.f, 0, 255.f };
bool chat_spam = false;
std::string message = "deez nuts";
bool spoof_level = false;
int new_level = 0;
bool steam_name_spoof = false;
std::string new_name = "patate";
bool server_name_spoof = false;
std::string server_name = "Jadis";
bool fly = false;
bool unlock_all = true;
bool exp_modifier = false;
int new_exp = 2000;
bool walk_in_lobby = false;
bool auto_respawn = false;
bool change_player_speed = false;
int new_speed = 1;
}