ViP3R_76 added a new file:
QuoteDisplay MoreFEATURE-LIST
- Lootable Armbands: Makes armbands lootable from bodies (respects an internal blacklist for specific items).
- Save Armband on Death: Prevents the armband in your ArmBand slot from being lost upon death (uses `ConfigServer`).
- Lootable Melee Weapons: Makes melee weapons lootable from bodies (respects an internal blacklist for specific items like the M48 Kukri).
- Save Melee on Death: Prevents the melee weapon in your Scabbard slot from being lost upon death (uses `ConfigServer`).
- PMC Chat Response Control:
- Disable PMC killer/victim voice lines entirely (set chance to 0%).
- Set a specific % chance (1-100) for PMC responses.
- Leave SPT default behavior unchanged. (Uses `ConfigServer`).
- Allow Lega Medals in Money Case:** Modifies the Money Case item filter to allow "LegaMedal" (ID: `6656560053eaaa7a23349c86`) to be placed inside.
- Configurable Lega Medal Stack Size:** Adjust the maximum stack size for "LegaMedal". Defaults to 50, configurable from 1 to 999 (values outside this range are clamped or reset to default).
- Auto-Creating Config:** Automatically generates a commented `config.jsonc` file on first run if one is not found.
- Robustness:** Includes checks for database availability, configuration validity, and includes manual comment stripping during config loading to work around potential environment issues.
A server-side modification for SPT that provides several configurable gameplay tweaks.
1. Download: Download the latest release `.zip` file
2. Extract: Extract the contents of the `.zip` file. You should have a folder named `user`.
3. Copy to Mods: Copy the *entire* `user` folder into your SPT `root` directory.
4. Verify: The final structure should look like this:
```
<SPT_Install_Directory>/
├── user/
│ ├── mods/
│ │ ├── vip3r76-AdditionalSettings/ <-- Mod folder
│ │ │ ├── config/
│ │ │ │ └── config.jsonc (Will be created on first run)
│ │ │ ├── src/
│ │ │ │ ├── mod.ts
│ │ │ │ └── configCreation.ts
│ │ │ ├── package.json
│ │ └── ... (other mods)
│ └── ... (other user folders)
└── ... (other SPT folders)
```
5. Start Server: Start the SPT server. The mod will load, and if necessary, create the default `config/config.jsonc` file. Check the server console for messages from `[AdditionalSettings v1.0.1]`.
[/tab]
CodeDisplay More// Default Configuration for AdditionalSettings Mod v1.0.1+ // This file uses JSONC format (JSON with Comments). Comments are ignored by the loader. // Edit the values below to customize the mod's behavior. Restart server for changes to apply. { // --- Lootability Settings --- // Enable/disable making armbands lootable from bodies. // If true, armbands (Parent ID: 5b3f15d486f77432d0509248) found on AI/players can be looted. // Note: Specific items might be internally blacklisted by the mod and remain unlootable. // Default: true "LootArmbands": true, // Enable/disable making melee weapons lootable from bodies. // If true, melee weapons (Parent ID: 5447e1d04bdc2dff2f8b4567) found on AI/players can be looted. // Note: Does not affect your *own* equipped melee if 'SaveMeleeOnDeath' is true. // Note: Specific items (e.g., M48 Kukri) might be internally blacklisted and remain unlootable. // Default: true "LootMelee": true, // --- Save Gear on Death Settings --- // Prevent losing your equipped armband upon death. // If true, the armband in your 'ArmBand' slot will remain after dying in a raid. // Note: Other mods might override this setting. Uses ConfigServer. // Default: false "SaveArmbandOnDeath": false, // Prevent losing your equipped melee weapon upon death. // If true, the weapon in your 'Scabbard' slot will remain after dying in a raid. // Note: Other mods might override this setting. Uses ConfigServer. // Default: false "SaveMeleeOnDeath": false, // --- Gameplay Tweak Settings --- // Adjust PMC voice lines triggered after getting a kill or being killed. // Accepts: // - true: Disable responses entirely (set chance to 0%). // - false: Use default SPT values (this mod applies no changes). // - number (1-100): Set response chance to this specific percentage for both killer and victim. // Values outside the 1-100 range (if a number is used) will be reset to 'false' (default behavior). // Uses ConfigServer. // Default: false "disablePMC_ChatResponse": false, // Allow 'Lega Medals' to be placed in Money Cases. // If true, modifies the Money Case filter (ID: 59fb016586f7746d0d4b423a) // to accept 'MedalMilitaryLega' (ID: 6656560053eaaa7a23349c86). // Default: false "allow_LegaMoneyCase": false, // Adjust the stack size for 'LegaMedal' (ID: 6656560053eaaa7a23349c86). // Sets the maximum number of medals that can stack in a single inventory slot. // Range: 1 to 999. Values outside this range will be clamped or reset to the default (50). // Default: 50 "stacksize_lega": 50 }
- None so far
- If you find bugs - report them through GitHub Issues please!
Q: Any incompatible mods??
A: Everything that modifies the same stuff. Which you use, your choice
Q: Does it work with FIKA?
A: Short answer, Yes! - Long answer, it should not break anything, i hope...
Q: Why is the Kukri blacklisted?
A: It is a gimmick, it can´t be sold to flea or traders.
Q: Why can we loot Armbands?
A: I wanted to rip them from their cold arms after looking like a christmas tree after the fight!
Q: Is melee-looting really necessary? It destroys the economy!
A: Well, there are other things that destroy economy. Yeah, some melee´s have some worth...
Q: Can you add other things to this mod please?
A: Sure, if I see some useful points in it. I can take a look at it without promises.
Q: Why did you create this mod?
A: Well, mostly because i can self-maintain it on SPT Updates and do not have to wait. But mostly because i wanted one mod instead of 4+.
Credits:
The whole SPT Team and Community!
![]()
Ghostfenixx for his SERVER VALUE MODIFIER Mod - A great enhancement!acidphantasm for his awesome mods (Trader Scorpion / APBS / MoreTagColors and other stuff)
DewardianDev for his sweet MOAR + Bagels
Lacyway for FIKA and his great small QoL mods
and many many more...