Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
fixed incorrect initial cheat status indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaumaus committed Sep 24, 2021
1 parent b536010 commit 4326de7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Le_Chiffre/misc/console_io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,31 +193,31 @@ class ConsoleIO {
wcout << XorStr("\n\n") << i->translate(XorStr("cheat_functions")) << cl;
wcout << nl << i->translate(XorStr("bunny_hop")) << cl;
coords->bunny_hop = get_cursor_position();
write_str(state->bunny_hop ? yes : no, state->bunny_hop ? FOREGROUND_GREEN : FOREGROUND_RED);
write_str(state->bunny_hop ? on : off, state->bunny_hop ? FOREGROUND_GREEN : FOREGROUND_RED);

wcout << nl << i->translate(XorStr("no_flash")) << cl;
coords->no_flash = get_cursor_position();
write_str(state->no_flash ? yes : no, state->no_flash ? FOREGROUND_GREEN : FOREGROUND_RED);
write_str(state->no_flash ? on : off, state->no_flash ? FOREGROUND_GREEN : FOREGROUND_RED);

wcout << nl << i->translate(XorStr("aimbot")) << cl;
coords->aimbot = get_cursor_position();
write_str(state->aimbot ? yes : no, state->aimbot ? FOREGROUND_GREEN : FOREGROUND_RED);
write_str(state->aimbot ? on : off, state->aimbot ? FOREGROUND_GREEN : FOREGROUND_RED);

wcout << nl << i->translate(XorStr("triggerbot")) << cl;
coords->activate_trigger = get_cursor_position();
write_str(state->activate_trigger ? yes : no, state->activate_trigger ? FOREGROUND_GREEN : FOREGROUND_RED);
write_str(state->activate_trigger ? on : off, state->activate_trigger ? FOREGROUND_GREEN : FOREGROUND_RED);

wcout << nl << i->translate(XorStr("use_triggerbot")) << cl;
coords->use_trigger = get_cursor_position();
write_str(i->translate(XorStr("hold")), FOREGROUND_GREEN | FOREGROUND_RED);

wcout << nl << i->translate(XorStr("glowesp")) << cl;
coords->enemy_wh = get_cursor_position();
write_str(state->enemy_wh ? yes : no, state->enemy_wh ? FOREGROUND_GREEN : FOREGROUND_RED);
write_str(state->enemy_wh ? on : off, state->enemy_wh ? FOREGROUND_GREEN : FOREGROUND_RED);

wcout << nl << i->translate(XorStr("radar_hack")) << cl;
coords->radar_hack = get_cursor_position();
write_str(state->radar_hack ? yes : no, state->radar_hack ? FOREGROUND_GREEN : FOREGROUND_RED);
write_str(state->radar_hack ? on : off, state->radar_hack ? FOREGROUND_GREEN : FOREGROUND_RED);

wcout << nl << i->translate(XorStr("exit")) << cl;
write_str(i->translate(XorStr("press")), FOREGROUND_GREEN | FOREGROUND_RED);
Expand Down

1 comment on commit 4326de7

@vercel
Copy link

@vercel vercel bot commented on 4326de7 Sep 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.