Compare commits
5 Commits
441c49d31a
...
v0.1.37
| Author | SHA1 | Date | |
|---|---|---|---|
| c8577b5545 | |||
| b8ae9ba743 | |||
| 9637931164 | |||
| 290307aa84 | |||
| f3552ce79c |
@@ -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) {}
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <nerutils/log.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
|
||||
#include <zlib.h>
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <cstdint>
|
||||
|
||||
// 9.5.2_live
|
||||
#define ACCESS_KEY "BGz7nwlRX8QP__fzvqrgpNRVqrlEyuY54vuGVAqDO_g="
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
struct SpooferConfig
|
||||
{
|
||||
bool spoofCharacterOwnership = false;
|
||||
bool spoofCharacterOwnership = true;
|
||||
bool spoofInventory = true;
|
||||
bool spoofCustomization = true;
|
||||
std::string accessKey = ACCESS_KEY;
|
||||
|
||||
Reference in New Issue
Block a user