Mod Details

AllItemsExamined-Reboot

AllItemsExamined-Reboot 2.0.0

Created by TEOA

2.4K Downloads

SPT 0.0.0 Compatible

all items examined by default

Latest Version 2.0.0
SPT 0.0.0

Updated Aug 31, 2022 at 3:44 AM

Version Notes

Updated to SPT 3.2.2

This download is externally hosted.
Always scan for viruses.

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
Download Mod Version
SPT 0.0.0
Latest Compatible SPT Version

1.9K Downloads

Created Aug 31, 2022 at 3:44 AM

Updated Aug 31, 2022 at 3:44 AM

Virus Total Results

Updated to SPT 3.2.2

Version 1.1.0
Download Mod Version
Unknown SPT Version
Latest Compatible SPT Version

330 Downloads

Created Aug 28, 2022 at 4:16 AM

Updated Aug 28, 2022 at 4:16 AM

Virus Total Results

Formatting + config option to not examine special items

Version 1.0.0
Download Mod Version
Unknown SPT Version
Latest Compatible SPT Version

182 Downloads

Created Aug 27, 2022 at 4:31 PM

Updated Aug 27, 2022 at 4:31 PM

Virus Total Results
EMASTER117

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…

1 Like
adudewithbadaim

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.

0 Likes

Details