diff --git a/README.md b/README.md index 3acaed1..03131c5 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## Introduction -Cheat menu for Grand Theft Auto San Andreas & Vice City which allows a large set of modifications/cheats to be applied enabling a much more easier & amusing gameplay. +A mod menu for Grand Theft Auto San Andreas & Vice City which allows a large set of modifications/cheats to be applied enabling a much more easier & amusing gameplay. This is **NOT** intended for use in multiplayer, I won't be responsible for any form of bans. Use it at your own risk! Get stable binaries from [here](https://github.com/user-grinch/Cheat-Menu/releases). Beta binaries are available at the discord server. diff --git a/src/hotkeys.cpp b/src/hotkeys.cpp index 59de7ea..14c9c71 100644 --- a/src/hotkeys.cpp +++ b/src/hotkeys.cpp @@ -1,19 +1,19 @@ #include "pch.h" #include "hotkeys.h" -Hotkey aimSkinChanger(VK_KEY_N, VK_KEY_N); -Hotkey freeCam(VK_LCONTROL, VK_KEY_C); -Hotkey commandWindow(VK_LCONTROL, VK_KEY_V); -Hotkey fixVeh(VK_DELETE, VK_DELETE); -Hotkey flipVeh(VK_KEY_Z, VK_KEY_Z); -Hotkey freeCamTeleportPlayer(VK_LCONTROL, VK_TAB); -Hotkey godMode(VK_KEY_E, VK_KEY_E); -Hotkey menuOpen(VK_KEY_E, VK_KEY_E); -Hotkey quickSceenShot(VK_KEY_E, VK_KEY_E); -Hotkey quickTeleport(VK_KEY_E, VK_KEY_E); -Hotkey vehEngine(VK_KEY_E, VK_KEY_E); -Hotkey vehInstantStart(VK_KEY_E, VK_KEY_E); -Hotkey vehInstantStop(VK_KEY_E, VK_KEY_E); +Hotkey aimSkinChanger; +Hotkey freeCam; +Hotkey commandWindow; +Hotkey fixVeh; +Hotkey flipVeh; +Hotkey freeCamTeleportPlayer; +Hotkey godMode; +Hotkey menuOpen; +Hotkey quickSceenShot; +Hotkey quickTeleport; +Hotkey vehEngine; +Hotkey vehInstantStart; +Hotkey vehInstantStop; bool Hotkey::DrawUI(const char* label) { diff --git a/src/hotkeys.h b/src/hotkeys.h index f58e834..1797765 100644 --- a/src/hotkeys.h +++ b/src/hotkeys.h @@ -11,7 +11,7 @@ public: int m_key1; int m_key2; - Hotkey(int key1, int key2) + Hotkey(int key1 = -1, int key2 = -1) : m_key1(key1), m_key2(key2) {} diff --git a/src/menuinfo.h b/src/menuinfo.h index 27f896c..30cf672 100644 --- a/src/menuinfo.h +++ b/src/menuinfo.h @@ -2,5 +2,5 @@ #define MENU_NAME "Cheat Menu" #define MENU_VERSION_NUMBER "3.0" #define MENU_VERSION MENU_VERSION_NUMBER"-beta" -#define BUILD_NUMBER "20210920" +#define BUILD_NUMBER "20210922" #define MENU_TITLE MENU_NAME " v" MENU_VERSION "(" BUILD_NUMBER ")"