0 of 0

File information

Last updated

Original upload

Created by

alxfad3

Uploaded by

alxfad3

Virus scan

Safe to use

About this mod

Converts RaceMenu body preset to BodySlide SliderPreset

Requirements
Permissions and credits
* currently tested only with dw's CBBE 3BA with UBE Anus, but should work with original 3BA body

How to use it:

1. Download and unzip the tool wherever you want

2. Make some body presets in RaceMenu
At CBBE 3BA MORPHS tab, slide "Save Preset" slider to the right, it will prompts you to name your preset.
This preset will be saved at skyrimfolder\data\SKSE\Plugins\StorageUtilData\RaceMenuMorphsCBBE\Presets (if you use MO2, folder will be in overwrite)

3. Prepare .bat files

single convert.bat - if you want to convert one preset

:: 1 - (required) path to preset you want to convert
:: 2 - (not required) divide original values for low weight, yes or not
:: 3 - (not required) divider (whole number or fraction separated by a dot)
:: (example) RacemenuPresetConverter.exe "C:\ModOrganizer\Skyrim Special Edition\overwrite\SKSE\Plugins\StorageUtilData\RaceMenuMorphsCBBE\Presetsinput\test.json" "yes" "1.5"
RacemenuPresetConverter.exe "enter_path_here" "yes_not" "divider"

1. Specify the path to your saved preset
(not required steps)
2. Tool can reduce values for smaller weight of body, type "yes" or "not" ("not" by default)
3. How much the original value will be divided by (2 by default)
Run bat file, converted preset will be created at /exported folder

batch convert.bat - if you want to convert all presets

:: path to RaceMenu presets folder (ex. ..\SKSE\Plugins\StorageUtilData\RaceMenuMorphsCBBE\Presets)
set "folderPath=enter_path_here"
:: path to RaceMenu presets folder (ex. ..\CalienteTools\BodySlide\SliderPresets)
set "outputPath=enter_path_here"
:: convert
for %%f in ("%folderPath%\*.*") do (
:: Arguments
:: 1 - (required) path to preset you want to convert
:: 2 - (not required) divide original values for low weight, yes or not
:: 3 - (not required) divider(whole number or fraction separated by a dot)
RacemenuPresetConverter.exe "%folderPath%\%%~nxf" "yes" "1.5"
)
:: copy
for %%o in ("exported\*.*") do (
copy "%%o" "%outputPath%"
)

1. Specify path to presets folder in "folderPath" variable
2. Specify path to RaceMenu SliderPresets folder in "outputPath" variable
3. Check RacemenuPresetConverter arguments (look at paragraphs 2 and 3 in single convert.bat description above)
Run bat file, all of your RaceMenu body presets wil be converted and copied to BodySlide SliderPresets folder

* for 3BA body users: in RacemenuPresetConverter.exe.config change bodyBaseType value to "CBBE 3BBB Body Amazing", should work fine.
(will be tested soon)

WIP
- test with other bodytypes
- reverse-convert from SliderPreset to Racemenu preset

Link to the repository in github