Skip to content

dasmods/ror2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ror2

Mods for Risk of Rain 2

Mods

FuncKeyFairy - Drops items when pressing F2, F3, or F4.

HealBois - Make Engineer's mines more helpful than hurtful.

SlashCommands - Adds various /commands via chat.

QuickStart - Skips the welcome screen.

Workflow

Commands are made using cake (C# Make), a cross platform build automation system. You must have Powershell installed on Windows.

Getting Started

First, navigate to the project root in Powershell.

Then, initialize a ror2.config.json file (ignored by git) by running:

.\build.ps1 -target=InitConfig

Then, open ror2.config.json and enter your specific config settings:

example ror2.config.json (use "/" as file separators not "\")

{
  "ror2Dir": "D:/Steam/steamapps/common/Risk of Rain 2",
  "enabledMods": ["FuncKeyFairy"]
}

Building

To create a build, run

.\build.ps1

The built files will be in <YOUR_PROJECT_ROOT>/bin

Installing and Playing

To create a build and play with it in RoR2, ensure Steam is running and run the command:

.\build.ps1 -target=Play

To only build the enabled mods:

.\build.ps1 -target=Play -build_enabled_only=true