
all items examined by default
all items examined by default
Credit:
alex as the original Author of this mod gave me permission to continue his mods
Version 2.0.0
SPT 0.0.0
Download Mod Version
Latest Compatible SPT Version
1.9K Downloads
Updated to SPT 3.2.2
Version 1.1.0
Unknown SPT Version
Download Mod Version
Latest Compatible SPT Version
330 Downloads
Formatting + config option to not examine special items
Details
-
GUID
Not Available
-
Additional Authors
-
License
-
Latest Version VirusTotal Result
I’m having trouble getting this one to work. I’ve extracted it to the mods folder, checked the config file, checked the stuff in the src folder and nothing I’ve looked at has given me any indication how to make this actually work. Server says it’s loading but just about everything that isn’t examined when you start a new profile is still unexamined…
If anybody wants to keep keys/keycards unexamined, your mod.js should look like this
“use strict”;
Object.defineProperty(exports, “__esModule”, { value: true });
class Mod {
postDBLoad(container) {
const databaseServer = container.resolve(“DatabaseServer”);
const tables = databaseServer.getTables();
const items = tables.templates.items;
Object.values(items).forEach((item) => {
if (item._parent != “5c99f98d86f7745c314214b3” && item._parent != “5c164d2286f774194c5e69fa”) {
item._props.ExaminedByDefault = true;
}
//item._props.CanSellOnRagfair = true;
});
}
}
module.exports = { mod: new Mod() };
the text in bold/italics/yellow needs to be added.
I know some folks preferred this in the previous version.