From faef3bde86ebe6e4d77a1375f9d5ce79bd35d9fd Mon Sep 17 00:00:00 2001 From: marcoigorr Date: Wed, 20 Jul 2022 21:05:21 +0200 Subject: [PATCH] Commit final changes for v1.1.0 --- dllmain.cpp | 4 ++-- info.cpp | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dllmain.cpp b/dllmain.cpp index a1176ac..c66fac2 100644 --- a/dllmain.cpp +++ b/dllmain.cpp @@ -18,10 +18,10 @@ DWORD WINAPI MainThread(HMODULE hModule) console::init(); std::cout << " [+] Injection successful!\n" << std::endl; - // Calculte game addresses + // Calculate game memory addresses addr->calcAddresses(); - // Check status of the addresses needed for the cheats + // Check status of the addresses info::checkStatus(); // print hack features diff --git a/info.cpp b/info.cpp index 776ab72..daa3feb 100644 --- a/info.cpp +++ b/info.cpp @@ -6,10 +6,10 @@ constexpr auto AVAIL = "AVAILABLE"; constexpr auto UNAVAIL = "UNAVAILABLE"; -const char* sHealth; -const char* sAmmo; -const char* sSpeedHack; -const char* sDoubleXP; +const char* sHealth = UNAVAIL; +const char* sAmmo = UNAVAIL; +const char* sSpeedHack = UNAVAIL; +const char* sDoubleXP = UNAVAIL; void info::checkStatus() { @@ -39,7 +39,7 @@ void info::printFeatures() // Clear console system("cls"); - std::cout << " 20 Minutes Till Dawn Cheats v1.1.2 - by marcoigorr\n" << std::endl; + std::cout << " 20 Minutes Till Dawn Cheats v1.1.0 - by marcoigorr\n" << std::endl; std::cout << " [+] F1 - Invincibility " << " ( " << sHealth << " )" << std::endl; std::cout << " [+] F2 - Unlimited Ammo " << " ( " << sAmmo << " )" << std::endl; std::cout << " [+] F3 - Speed Hack " << " ( " << sSpeedHack << " )" << std::endl;