Skip to content

Commit

Permalink
Commit final changes for v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoigorr committed Jul 20, 2022
1 parent 0eaf747 commit faef3bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit faef3bd

Please sign in to comment.