diff --git a/.gitignore b/.gitignore index a24dac3..07d00dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,11 @@ +#Visual studio stuff .vs Debug Ezfrags/Debug + +#IDA stuff +Reversing/ezfrags.exe.id0 +Reversing/ezfrags.exe.id1 +Reversing/ezfrags.exe.id2 +Reversing/ezfrags.exe.nam +Reversing/ezfrags.exe.til diff --git a/Ezfrags/Ezfrags.cpp b/Ezfrags/Ezfrags.cpp index cff4016..eaa6c33 100644 --- a/Ezfrags/Ezfrags.cpp +++ b/Ezfrags/Ezfrags.cpp @@ -129,6 +129,15 @@ int main() || !cheat_thread_state::kill_message_thread_status) Sleep(100u); + settings::glow_esp_bool = 1; + settings::trigger_mode_switch_1 = 0; + settings::aimlock_bool = 1; + settings::radar_bool = 1; + settings::aim_assist_bool = 1; + settings::trigger_mode_switch_2 = 0; + settings::bunnyhop_bool = 1; + settings::kill_message_bool = 1; + settings::no_flash_bool = 1; update(); while (WaitForSingleObject(Mem::process_handle, 0)) { diff --git a/Ezfrags/Settings.hpp b/Ezfrags/Settings.hpp index 87a6fa7..1ac4dad 100644 --- a/Ezfrags/Settings.hpp +++ b/Ezfrags/Settings.hpp @@ -1,19 +1,19 @@ #pragma once namespace settings { - bool glow_esp_bool = 1; - int trigger_mode_switch_1 = 0; - int trigger_mode_switch_2 = 0; + bool glow_esp_bool; + int trigger_mode_switch_1; + int trigger_mode_switch_2; int trigger_delay = 30; - bool aimlock_bool = 1; + bool aimlock_bool; int aimlock_bone = 6; //8 : chest, 6 : head - bool radar_bool = 1; - bool aim_assist_bool = 1; + bool radar_bool; + bool aim_assist_bool; int aim_assist_bone = 6; //8 : chest, 6 : head float aim_fov = 25.0; - bool bunnyhop_bool = 1; - bool kill_message_bool = 1; - bool no_flash_bool = 1; + bool bunnyhop_bool; + bool kill_message_bool; + bool no_flash_bool; }; namespace cheat_thread_state { diff --git a/Reversing/ezfrags.exe.idb b/Reversing/ezfrags.exe.idb index ab3de58..e4b989d 100644 Binary files a/Reversing/ezfrags.exe.idb and b/Reversing/ezfrags.exe.idb differ