ppy / osu-tools

command line tools to get stuff done
MIT License
105 stars 78 forks source link

Add `--mod-option` parameter to simulate command #224

Closed minisbett closed 3 weeks ago

minisbett commented 1 month ago

Depends on #223

This adds a mod option parameter for specifying mod settings. The syntax is -o|--mod-option <acronym>_<setting>=<value>. Example: dotnet run -- simulate osu 4697929 -m DT -m DA -o DT_speed_change=1.3 -o DA_overall_difficulty=1

Additionally, this PR removes the --output parameter as it was deemed unecessary (any shell allows you do write to a file via | or >) and used the -o parameter already.