Compare commits

..

5 Commits

Author SHA1 Message Date
neru c8577b5545 fix: remove unneeded default initiator
Build / build (push) Successful in 3m32s
2026-04-13 20:47:10 -03:00
neru b8ae9ba743 fix: wrong global offering account
Build / build (push) Successful in 3m34s
2026-04-13 19:00:50 -03:00
neru 9637931164 fix: add missing includes
Build / build (push) Successful in 3m30s
2026-04-13 01:21:45 -03:00
neru 290307aa84 fix: change ShlObj_core to shlobj
Build / build (push) Failing after 2m35s
2026-04-13 01:18:10 -03:00
neru f3552ce79c feat: spoof ownership by default now that DLC unlocking is available
Build / build (push) Has been cancelled
2026-04-13 01:12:37 -03:00
5 changed files with 8 additions and 5 deletions
+3 -2
View File
@@ -5,8 +5,9 @@
#include <filesystem>
#include <unordered_set>
#include <ShlObj_core.h>
#include <TlHelp32.h>
#include <windows.h>
#include <shlobj.h>
#include <tlhelp32.h>
CacheCleaner::CacheCleaner() : _running(false), _monitorThread(nullptr) {}
+1
View File
@@ -3,6 +3,7 @@
#include <nerutils/log.h>
#include <algorithm>
#include <cstring>
#include <zlib.h>
+1
View File
@@ -2,6 +2,7 @@
#include <string>
#include <vector>
#include <cstdint>
// 9.5.2_live
#define ACCESS_KEY "BGz7nwlRX8QP__fzvqrgpNRVqrlEyuY54vuGVAqDO_g="
+2 -2
View File
@@ -341,7 +341,7 @@ void Spoofer::modifyCharacterData(json& js)
{
bool needsSpoofing = false;
if (js.value("isEntitled", false) == false)
if (js.contains("isEntitled") && js["isEntitled"] == false)
{
_unownedCharacters.insert(name);
js["isEntitled"] = true;
@@ -421,7 +421,7 @@ void Spoofer::modifyCharacterData(json& js)
appendItems(_slasherPerkIds, true);
}
appendItems(_globalOfferingIds, true);
appendItems(_globalOfferingIds, false);
}
}
+1 -1
View File
@@ -13,7 +13,7 @@
struct SpooferConfig
{
bool spoofCharacterOwnership = false;
bool spoofCharacterOwnership = true;
bool spoofInventory = true;
bool spoofCustomization = true;
std::string accessKey = ACCESS_KEY;