[Commission] Weapon Stats Config

If you liked this item, please rate it up on Steam Workshop page.

Author: Panchuet

Last revision: 13 Mar at 14:33 UTC (2)

File size: 929.54 KB

On Steam Workshop

Description:

You can reach me on Discord[discordapp.com] for questions, commissions, or other inquiries. If you’d like to support my work, consider buying me a coffee on Ko-fi[ko-fi.com] — thank you!


THIS WORK HAS BEEN COMMISSIONED. NO CHANGES WILL BE MADE EXCEPT AT THE EXPRESS REQUEST OF THE COMMISSIONER.

Mod Overview

This mod is a massive, all-in-one weapon configurator. You can configure a weapon’s damage, spread, overheat mechanics, field of view, armor rating, and projectile gravity. Simply type the weapon or tag in the specific format provided in the mutator settings. Separate entries with a semicolon.

Want a pistol that shoots tank-piercing rounds? A sniper rifle that overheats? A perfectly accurate machine gun? You can do it all simply by typing the weapon’s name or tag into the mutator configuration.

Too lazy to type weapon names?

THIS IS OPTIONAL. You can still type weapon names manually as usual. However, I’ve made a Python script that extracts weapon names directly from the game config. For this to work, teams must be set directly in the main config—not in separate team configs. Make sure to disable “Link To Team Configs."

import json json_data = r""" copy paste the entire config and overwrite this """ data = json.loads(json_data) print("Team 1:") for weapon in data["team0UnlinkedInfo"]["availableWeapons"]: print(weapon["name"]) print("nTeam 2:") for weapon in data["team1UnlinkedInfo"]["availableWeapons"]: print(weapon["name"])

How to use this:

  1. Copy and paste the script. You can use an online interpreter like Online Python[www.online-python.com] or any similar site.
  2. Open your Game Configuration folder. It’s usually located at:
    AppDataLocalLowSteelRaven7RavenfieldSteamGameConfigurations
  3. Find the configuration file, right-click it and open with Notepad, Notepad++, or any text editor.
  4. Copy the entire configuration text and paste it into the triple-quoted section labeled `copy paste the entire config here` and overwrite it in the script.
  5. Run the script. The weapon names for Team 1 and Team 2 will be printed.
Download
Revisions:

Old revisions of this mod are available below. Click the link to download.