An OStim Addon that adds modular Strap-on support.
An OStim Addon that adds modular Strap-on support. -
Most recent version will be in the Releases section of the GitHub page.
Eventually it will be posted to LoversLab and ?Nexus?
If any of the following mods are installed, they will appear in the OStrap MCM as options. If you don’t see them, press the “Reload Compats” option.
Will equip a strapon in all F/F scenes, even ones that don’t make a heap of sense like kissing or fingering.
Feel free to fork and make a PR if you feel you have something to add or improve.
If you notice any bugs, or have any feature suggestions, create an Issue and outline the problem and I’ll take a look.
Unless it’s to ask for a LE port, I’m not gonna do that, Sorry. If you want an LE port, fork this and make your own.
OStrap will load any .Json file in \Data\OStrapData\OStrapCompat\ and try and add the files to the Strap-on list.
Compatibility files should be formatted like so:
{
"Example Strapon": {
"Enabled": 0,
"Form": "__formData|Example.esp|0x5e61",
"OptID": 0
},
"Another Example Strapon": {
"Enabled": 0,
"Form": "__formData|Example.esp|0x5e62",
"OptID": 0
}
}
Breaking down what a record looks like:
"Example Strapon"
<— This is the name of the strap-on for the MCM. This can be whatever you want.
"Enabled": 0
<— This is whether the strap-on will be enabled by default or not.
"Form": "__formData|Example.esp|0x5e61"
<— This is the formData for the armor record. Further info below.
"OptID": 0
<— This is redundant now, but kept in to preserve backwards compatibility.
__formData|
03005E63
will lose the first two bits and become 005E63
.5E63
0x
to the begining of the record 0x5E63
to indicate that it’s in Hex, and you’ve converted the FormID to a formData record.