Fix bug with hotkeys & bump version
This commit is contained in:
parent
fcda4d500b
commit
01cfd73204
@ -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.
|
||||
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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)
|
||||
{}
|
||||
|
||||
|
@ -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 ")"
|
||||
|
Loading…
Reference in New Issue
Block a user