diff --git a/cheat-library/src/user/cheat/visuals/Browser.cpp b/cheat-library/src/user/cheat/visuals/Browser.cpp index 1be0197..b94d234 100644 --- a/cheat-library/src/user/cheat/visuals/Browser.cpp +++ b/cheat-library/src/user/cheat/visuals/Browser.cpp @@ -14,7 +14,7 @@ namespace cheat::feature static std::string f_URL; Browser::Browser() : Feature(), - NF(f_Enabled, "Browser", "Visuals", false), + NFEX(f_Enabled, "Browser", "Browser", "Visuals", false, false), toBeUpdate(), nextUpdate(0) { events::GameUpdateEvent += MY_METHOD_HANDLER(Browser::OnGameUpdate); diff --git a/cheat-library/src/user/cheat/visuals/CameraZoom.cpp b/cheat-library/src/user/cheat/visuals/CameraZoom.cpp index ff7b895..b713f1f 100644 --- a/cheat-library/src/user/cheat/visuals/CameraZoom.cpp +++ b/cheat-library/src/user/cheat/visuals/CameraZoom.cpp @@ -9,8 +9,8 @@ namespace cheat::feature static void SCameraModuleInitialize_SetWarningLocateRatio_Hook(app::SCameraModuleInitialize* __this, double deltaTime, app::CameraShareData* data, MethodInfo* method); CameraZoom::CameraZoom() : Feature(), - NFEX(f_Enabled, "Camera Zoom", "CameraZoom", "Visuals", false, false), - NF(f_Zoom, "Zoom", "CameraZoom", 200) + NF(f_Enabled, "Camera Zoom", "Visuals::CameraZoom", false), + NF(f_Zoom, "Zoom", "Visuals::CameraZoom", 200) { HookManager::install(app::MoleMole_SCameraModuleInitialize_SetWarningLocateRatio, SCameraModuleInitialize_SetWarningLocateRatio_Hook); } diff --git a/cheat-library/src/user/cheat/visuals/HideUI.cpp b/cheat-library/src/user/cheat/visuals/HideUI.cpp index 7351c1a..83011c5 100644 --- a/cheat-library/src/user/cheat/visuals/HideUI.cpp +++ b/cheat-library/src/user/cheat/visuals/HideUI.cpp @@ -9,7 +9,7 @@ namespace cheat::feature app::GameObject* ui_camera{}; HideUI::HideUI() : Feature(), - NF(f_Enabled, "Hide UI", "Hide UI", false) + NFEX(f_Enabled, "Hide UI", "HideUI", "Visuals", false, false) { events::GameUpdateEvent += MY_METHOD_HANDLER(HideUI::OnGameUpdate); } diff --git a/cheat-library/src/user/cheat/visuals/PaimonFollow.cpp b/cheat-library/src/user/cheat/visuals/PaimonFollow.cpp index 0f30629..7f0f3f1 100644 --- a/cheat-library/src/user/cheat/visuals/PaimonFollow.cpp +++ b/cheat-library/src/user/cheat/visuals/PaimonFollow.cpp @@ -12,7 +12,7 @@ namespace cheat::feature } PaimonFollow::PaimonFollow() : Feature(), - NF(f_Enabled, "Paimon Follow", "Visuals", false), + NFEX(f_Enabled, "Paimon Follow", "PaimonFollow", "Visuals", false, false), toBeUpdate(), nextUpdate(0) { events::GameUpdateEvent += MY_METHOD_HANDLER(PaimonFollow::OnGameUpdate); diff --git a/cheat-library/src/user/cheat/visuals/ProfileChanger.cpp b/cheat-library/src/user/cheat/visuals/ProfileChanger.cpp index 4a30986..a1ece9a 100644 --- a/cheat-library/src/user/cheat/visuals/ProfileChanger.cpp +++ b/cheat-library/src/user/cheat/visuals/ProfileChanger.cpp @@ -31,18 +31,18 @@ namespace cheat::feature static void ProfileEditPage(app::MonoFriendInformationDialog* __this, app::Sprite* value, MethodInfo* method); ProfileChanger::ProfileChanger() : Feature(), - NF(f_Enabled, "Custom Profile", "Visuals", false), - NF(f_UID, "UID", "Visuals", false), - NF(f_NickName, "NickName", "Visuals", false), - NF(f_Level, "Level", "Visuals", false), - NF(f_Exp, "Exp", "Visuals", false), - NF(f_CurExp, "CurExp", "Visuals", 1), - NF(f_MaxExp, "MaxExp", "Visuals", 1), - NF(f_ExpBar, "ExpBar", "Visuals", false), - NF(f_ExpBarValue, "ExpBarValue", "Visuals", 20.0f), - NF(f_WorldLevel, "WorldLevel", "Visuals", false), - NF(f_Avatar, "AvatarImage", "Visuals", false), - NF(f_Card, "CardImage", "Visuals", false), + NF(f_Enabled, "Custom Profile", "Visuals::ProfileChanger", false), + NF(f_UID, "UID", "Visuals::ProfileChanger", false), + NF(f_NickName, "NickName", "Visuals::ProfileChanger", false), + NF(f_Level, "Level", "Visuals::ProfileChanger", false), + NF(f_Exp, "Exp", "Visuals::ProfileChanger", false), + NF(f_CurExp, "CurExp", "Visuals::ProfileChanger", 1), + NF(f_MaxExp, "MaxExp", "Visuals::ProfileChanger", 1), + NF(f_ExpBar, "ExpBar", "Visuals::ProfileChanger", false), + NF(f_ExpBarValue, "ExpBarValue", "Visuals::ProfileChanger", 20.0f), + NF(f_WorldLevel, "WorldLevel", "Visuals::ProfileChanger", false), + NF(f_Avatar, "AvatarImage", "Visuals::ProfileChanger", false), + NF(f_Card, "CardImage", "Visuals::ProfileChanger", false), toBeUpdate(), nextUpdate(0) { HookManager::install(app::ProfilePage, ProfilePage); diff --git a/cheat-library/src/user/cheat/visuals/ShowChestIndicator.cpp b/cheat-library/src/user/cheat/visuals/ShowChestIndicator.cpp index 7720266..e7ebbb6 100644 --- a/cheat-library/src/user/cheat/visuals/ShowChestIndicator.cpp +++ b/cheat-library/src/user/cheat/visuals/ShowChestIndicator.cpp @@ -9,7 +9,7 @@ namespace cheat::feature static bool IndicatorPlugin_DoCheck(app::LCIndicatorPlugin* __this, MethodInfo* method); ChestIndicator::ChestIndicator() : Feature(), - NF(f_Enabled, "Show Chest Indicator", "ShowChest", false) + NFEX(f_Enabled, "Show Chest Indicator", "ChestIndicator", "Visuals", false, false) { HookManager::install(app::MoleMole_LCIndicatorPlugin_DoCheck, IndicatorPlugin_DoCheck); }