Please do not ask when mod authors will update their mods to 3.9.X
Bothering mod authors will lead to warnings and repeat offenses will lead to eventual bans.
Bothering mod authors will lead to warnings and repeat offenses will lead to eventual bans.
-
Version 2.0.0
- TEOA
- 1.7k Downloads
Updated to SPT 3.2.2
-
Version 1.1.0
- TEOA
- 283 Downloads
Formatting + config option to not examine special items
-
Version 1.0.0
- TEOA
- 123 Downloads
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...
Coitus_Ergo_Sum
I'm having this issue too. No idea what's causing it. Hopefully it isn't because of mod clashing
Ferdodi
+1
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.
TEOA Author
Gonna add it as a config option!
Thanks for the suggestion
TEOA Author
Added!