🌪

How to Mod 'Storm Chasers' (Game)

Jul 5, 2024

How to Mod 'Storm Chasers' (Game)

Introduction

  • Tutorial on modding the game 'Storm Chasers.'
  • Focus on adjusting tornado size and EF5 probability.
  • Tools needed: 'dnSpy.'

dnSpy Installation

  1. **Download dnSpy: **
    • Google 'dnSpy' and go to the GitHub link.
    • Find the latest release (dnSpy-net472).
    • Download and extract files to a folder.
  2. **Setting Up: **
    • Create a shortcut for 'dnSpy.exe' from the extracted folder.
    • Open 'dnSpy.exe.'
  3. **Opening the Game's Files: **
    • In dnSpy, go to File -> Open.
    • Navigate to the Storm Chasers directory (Steam Installation Path).
    • storm_chasers\storm_chasers_data\managed
    • Open the Assembly-CSharp.dll file.

Editing Tornado Properties

  1. **Navigating to Tornado Code: **
    • In dnSpy, find and open Assembly-CSharp.dll.
    • Locate the section for tornado properties (line ~1240).
  2. **Modifiable Parameters: **
    • Radius of Damage: Adjust how far damage extends.
    • Power of Tornado: Impact strength.
    • Tornado Width: Half the width of the tornado.
    • Formation Cloud: Size of forming cloud.
    • Debris Cloud Radius: Size of debris cloud.
    • Precipitation Rate: Amount of rain; lower for better visibility.
  3. **Modifying the Values: **
    • Right-click -> Edit Method.
    • Adjust values as needed and save by hitting compile.
    • Save the module (overwrite the old file).

Changing EF5 Probability

  1. **Locate Probability Code: **
    • Found around line 117 in the Assembly-CSharp.dll file.
  2. **Probability Logic: **
    • Generates a random number (0-10).
    • Compare against preset values to determine tornado category.
    • Lowering numbers increases EF5 probability.
    • Set to 0 for always EF5, 10 for almost never EF5.
  3. **Modifying Probability: **
    • Right-click -> Edit Method.
    • Adjust values as needed.
    • Save changes by compiling and saving the module.

Troubleshooting and Disclaimer

  • If game breaks or files need reset:
    • In Steam, go to Library -> Properties -> Local Files -> Verify Integrity.
    • Steam will restore default files if modifications cause issues.
  • Disclaimer:
    • Modifications are at the user's own risk.
    • Follow instructions closely to avoid issues.

Conclusion

  • Encourages subscription for more modding and Storm Chasers-related content.
  • Open to questions in the comment section of the video.