Compare commits

...

4 Commits

Author SHA1 Message Date
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 7 additions and 4 deletions
+3 -2
View File
@@ -5,8 +5,9 @@
#include <filesystem> #include <filesystem>
#include <unordered_set> #include <unordered_set>
#include <ShlObj_core.h> #include <windows.h>
#include <TlHelp32.h> #include <shlobj.h>
#include <tlhelp32.h>
CacheCleaner::CacheCleaner() : _running(false), _monitorThread(nullptr) {} CacheCleaner::CacheCleaner() : _running(false), _monitorThread(nullptr) {}
+1
View File
@@ -3,6 +3,7 @@
#include <nerutils/log.h> #include <nerutils/log.h>
#include <algorithm> #include <algorithm>
#include <cstring>
#include <zlib.h> #include <zlib.h>
+1
View File
@@ -2,6 +2,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <cstdint>
// 9.5.2_live // 9.5.2_live
#define ACCESS_KEY "BGz7nwlRX8QP__fzvqrgpNRVqrlEyuY54vuGVAqDO_g=" #define ACCESS_KEY "BGz7nwlRX8QP__fzvqrgpNRVqrlEyuY54vuGVAqDO_g="
+1 -1
View File
@@ -421,7 +421,7 @@ void Spoofer::modifyCharacterData(json& js)
appendItems(_slasherPerkIds, true); appendItems(_slasherPerkIds, true);
} }
appendItems(_globalOfferingIds, true); appendItems(_globalOfferingIds, false);
} }
} }
+1 -1
View File
@@ -13,7 +13,7 @@
struct SpooferConfig struct SpooferConfig
{ {
bool spoofCharacterOwnership = false; bool spoofCharacterOwnership = true;
bool spoofInventory = true; bool spoofInventory = true;
bool spoofCustomization = true; bool spoofCustomization = true;
std::string accessKey = ACCESS_KEY; std::string accessKey = ACCESS_KEY;