Posts by ViP3R_76
-
-
ViP3R_76 added a new file:
QuoteFEATURE-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]
Code
Display 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...
-
ViP3R_76 added a new version:
FileMagazine Management System 1.0.2This version will only work for SPT 3.11.x
- Added: More Null-Ref Checks
- Bugfix: Added range for baseLoad-/Unload from 0.01 to 1 and added checks for config
- Bugfix: Changed some default config-related stuff
- Refactor: Config-Rewrite skipped if only comments have been changedQuoteThis Version only works with SPT 3.11.x !
- **Added**: More Null-Ref Checks
- **Bugfix**: Added range for baseLoad-/Unload from 0.01 to 1 and added checks for config
- **Bugfix**: Changed some default config-related stuff
- **Refactor**: Config-Rewrite skipped if only comments have been changed
-
ViP3R_76 added a new version:
QuoteOnly works with SPT 3.11.x
1.0.1
- Bugfix: Changed default config-generation settings
- Bugfix: Forgot to change the sizedown on 3-2 slot conversion for inventory optic of the weapon
-
ViP3R_76 added a new file:
QuoteFEATURE-LIST
- Set Load- / Unload Speed for Magazines (can be set global, or depending on mag-sizes)
- Resizes 3 Slot Magazines to 2 Slot Magazines (Clean-Temp files is needed on client side)
- Remove Load-Penalties
- everything is configurable in the server-side config/config.jsconc
- Auto-generates config if it is not existing
- Auto-corrects and validates config for wrong entrys
NOTES (for Resize 3 to 2 function)
needs to be done after Mod-Installation once (1st Time or Updated Version!)
- Open your Launcher
- Open Settings
- Clean cache-/temp-files
- Start the Game
INSTALLATION
- as it is a server-mod, it only needs to be installed in the "user/mods" Folder
CONFIG-OPTIONS and INFORMATIONS
Code
Display More{ "ammo.loadspeed": 0.85, // Load speed multiplier (0 to 1); unused if useGlobalTimes is true "ammo.unloadspeed": 0.3, // Unload speed multiplier (0 to 1); unused if useGlobalTimes is true "min.MagazineSize": 10, // Minimum magazine capacity to adjust (2 to 60, or -1 for no min) "max.MagazineSize": 60, // Maximum magazine capacity to adjust (10 to 100, or -1 for no max) "useGlobalTimes": false, // True: use baseLoadTime/baseUnloadTime globally; False: per-magazine speeds "baseLoadTime": 0.85, // Global load time (0.01 to 1, 2 decimals); used if useGlobalTimes is true "baseUnloadTime": 0.3, // Global unload time (0.01 to 1, 2 decimals); used if useGlobalTimes is true "DisableMagazineAmmoLoadPenalty": false, // True: sets LoadUnloadModifier to 0; False: ensures it’s 1 "Resize3to2SlotMagazine": false, // True: resizes 3x1 magazines to 2x1 "debug": false // True: enables detailed logging }
If "useGlobalTimes" is set to true, the Magazine Load-/Unloadspeeds will be ignored and the Values from baseLoad-/UnloadTime will be used
Default Values for Vanilla-Behaviour are 0.85 (Load) and 0.3 (Unload).
BUGS / ISSUES ?
Be gentle, report in the comments or open an issue on Github.
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...
-
looting bots is an additional mod that must be downloaded separately or configured inside SAIN?
It is an additional mod.
-
You dont need this on the dedicated
-
Hello sorry to bother you but when i put the mod in the mod files the moment i launch spt server it tells me that there is no "package.json" how can i fix that ?(fixed it sry for the bother )
You most likely didn´t unpack it correctly.
-
You both maybe have "Performance Improvements" installed? If you are using 0.2.2 of it, try to downgrade to 0.2.0.
-
Hi, you can change the image by using certain mods, for example this one MERKS TRADER IMAGE SWITCHER
Yeah, i´ve seen that, but found no good picture for it to change. Maybe i should go the AI way for it
-
-
Well, use the SPT Installer? (Update to latest EFT first)
-
Suggestion:
Add Duration, EnergyIncrease, HydrationBurn to Pills (Analgin,Painkiller,Augmentin,Ibuprofen) and Balms (Goldenstar, Vaseline)
Add Sanitars Afak - maybe with resizeable option to 1x1 or 2x1
Add Duration to AI-2, Salewa, Ifak, Afak etc. (selectable for enabled/disabled) as heal-over-time. -
Just to be sure, the package.json reflects 1.0.0 with the latest download, but it is 1.1.0, right?
-
Not directly automatically. Newer versions of SPT will include new features from live (new factory Map for example) but this depends on how far the coding-progression is.
-
German Translation needs review, should be done 100%.
-
Would it be possible to generate bots in FIKA-Mode while sitting in the raid-countdown? So Bots could start roaming and reduce minimal lags from spawning before player enter the scenario.
-
Is a new "lit sync" plugin also needed?
-
-
If you are running german SPT and the latest 1.1.1 REF Trader, at the moment you are getting the Quest "Go to Heights Part 1" it activates the regular live Ref-Quest (Win a ranked match) and in parallel the correct one.