change default hotkeys

This commit is contained in:
EricPlayZ
2024-05-12 05:34:42 +03:00
parent 263db930a4
commit 3c31878ef8
3 changed files with 4 additions and 4 deletions

View File

@ -4351,7 +4351,7 @@ namespace Config {
{ "Menu:Keybinds", "UnlimitedItemsToggleKey", std::string("VK_NONE"), &Menu::Player::unlimitedItems, String},
{ "Menu:Keybinds", "OneHitKillToggleKey", std::string("VK_NONE"), &Menu::Player::oneHitKill, String},
{ "Menu:Keybinds", "DisableOutOfBoundsTimerToggleKey", std::string("VK_NONE"), &Menu::Player::disableOutOfBoundsTimer, String},
{ "Menu:Keybinds", "NightrunnerModeToggleKey", std::string("VK_F8"), &Menu::Player::nightrunnerMode, String},
{ "Menu:Keybinds", "NightrunnerModeToggleKey", std::string("VK_F7"), &Menu::Player::nightrunnerMode, String},
{ "Menu:Keybinds", "OneHandedModeToggleKey", std::string("VK_NONE"), &Menu::Player::oneHandedMode, String},
{ "Menu:Keybinds", "AllowGrappleHookInSafezoneToggleKey", std::string("VK_NONE"), &Menu::Player::allowGrappleHookInSafezone, String},
{ "Menu:Keybinds", "DisableAirControlToggleKey", std::string("VK_NONE"), &Menu::Player::disableAirControl, String },
@ -4370,7 +4370,7 @@ namespace Config {
{ "Menu:Keybinds", "DisableHeadCorrectionToggleKey", std::string("VK_NONE"), &Menu::Camera::disableHeadCorrection, String },
{ "Menu:Keybinds", "TeleportToSelectedLocationToggleKey", std::string("VK_F9"), &Menu::Teleport::teleportToSelectedLocation, String },
{ "Menu:Keybinds", "TeleportToCoordsToggleKey", std::string("VK_NONE"), &Menu::Teleport::teleportToCoords, String },
{ "Menu:Keybinds", "DisableHUDToggleKey", std::string("VK_F7"), &Menu::Misc::disableHUD, String},
{ "Menu:Keybinds", "DisableHUDToggleKey", std::string("VK_F8"), &Menu::Misc::disableHUD, String},
{ "Menu:Keybinds", "DisableGamePauseWhileAFKToggleKey", std::string("VK_NONE"), &Menu::Misc::disableGamePauseWhileAFK, String},
{ "Menu:Keybinds", "FreezeTimeToggleKey", std::string("VK_NONE"), &Menu::World::freezeTime, String},
{ "Menu:Keybinds", "SlowMotionToggleKey", std::string("VK_4"), &Menu::World::slowMotion, String},

View File

@ -10,7 +10,7 @@ namespace GamePH::Hooks {
namespace Menu {
namespace Misc {
KeyBindOption disableGamePauseWhileAFK{ VK_NONE };
KeyBindOption disableHUD{ VK_F7 };
KeyBindOption disableHUD{ VK_F8 };
Option disableSavegameCRCCheck{};
Option disableDataPAKsCRCCheck{};
Option increaseDataPAKsLimit{};

View File

@ -6445,7 +6445,7 @@ namespace Menu {
KeyBindOption oneHitKill{ VK_NONE };
KeyBindOption invisibleToEnemies{ VK_NONE };
KeyBindOption disableOutOfBoundsTimer{ VK_NONE };
KeyBindOption nightrunnerMode{ VK_F8 };
KeyBindOption nightrunnerMode{ VK_F7 };
KeyBindOption oneHandedMode{ VK_NONE };
KeyBindOption allowGrappleHookInSafezone{ VK_NONE };
KeyBindOption disableAirControl{ VK_NONE };