diff --git a/EGameTools/source/config/config.cpp b/EGameTools/source/config/config.cpp index a93fd03..35172b5 100644 --- a/EGameTools/source/config/config.cpp +++ b/EGameTools/source/config/config.cpp @@ -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}, diff --git a/EGameTools/source/menu/misc.cpp b/EGameTools/source/menu/misc.cpp index 973ef81..b6d6615 100644 --- a/EGameTools/source/menu/misc.cpp +++ b/EGameTools/source/menu/misc.cpp @@ -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{}; diff --git a/EGameTools/source/menu/player.cpp b/EGameTools/source/menu/player.cpp index ba6fe6d..3fe5ce9 100644 --- a/EGameTools/source/menu/player.cpp +++ b/EGameTools/source/menu/player.cpp @@ -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 };