Jump to content

Player Idles for Submissive Characters? (like for Submissive Lola)


Recommended Posts

Posted

I use Submissive Lola a fair bit and play at least one really submissive character. Does anyone know some idles, anywhere, that might fit this character personality? Kinda weird to have her be someone's slave but have all these "strong" poses (I use custom idles).

Posted
On 9/5/2026 at 5:10 AM, Splintered_Lizard said:

I use Submissive Lola a fair bit and play at least one really submissive character.

Cool, I do too!

 

On 9/5/2026 at 5:10 AM, Splintered_Lizard said:

Does anyone know some idles, anywhere, that might fit this character personality? Kinda weird to have her be someone's slave but have all these "strong" poses (I use custom idles).

My current fave is SQ Female Movement (also available for LE).

Posted (edited)

You'd may likely want to look at https://www.nexusmods.com/skyrimspecialedition/mods/103427 and of course needs OAR and OSL Aroused.

 

Also look at Sexlab Fame Reloaded and  SexLab Fame comments reloaded... the reason I bring those up is they track fame values - including those which come under submissive tendencies. Npcs will comment about the PC and events wills also take place.

 

i.e. I'm on the old version of sex fame but I think an idea is still possible...

 

Spoiler

 

 

image.jpeg.e58ff6476c7231dc53c8c78205e4313c.jpeg

 

 

 

 

That said lets ask my friends - the big boys (authors) @Gristle, @NymphoElf and  @killer905 (who I beleive knows where a ton of idle animations are). 

 

It should be feasible to write a OAR script to examine the Submissive level of the PC and play an idle via OAR because all it takes is examining the value in a form id (which could be a faction or a global, really anything) in a mod along with the pc/npc to for the idle. It replaces the standing still idles... and all it takes are the animations and a json.

 

i.e. Aroused uses a faction and this plays an idle when it's rank is 51 to 60 inclusive.

 

Spoiler

 

{
    "name": "Arousal 51-60",
    "description": "When Arousal is with the ranges of 51 and 60.",
    "priority": 9001000,
    "conditions": [
        {
            "condition": "HasKeyword",
            "requiredVersion": "1.0.0.0",
            "disabled": true,
            "Keyword": {
                "editorID": "PlayerKeyword"
            }
        },
        {
            "condition": "IsInFaction",
            "requiredVersion": "1.0.0.0",
            "disabled": true,
            "Faction": {
                "pluginName": "Skyrim.esm",
                "formID": "5C84D"
            }
        },
        {
            "condition": "IsChild",
            "requiredVersion": "1.0.0.0",
            "negated": true
        },
        {
            "condition": "IsInFaction",
            "requiredVersion": "1.0.0.0",
            "Faction": {
                "pluginName": "SexLabAroused.esm",
                "formID": "3FC36"
            }
        },
        {
            "condition": "FactionRank",
            "requiredVersion": "1.0.0.0",
            "negated": true,
            "Faction": {
                "pluginName": "SexLabAroused.esm",
                "formID": "3FC36"
            },
            "Comparison": "<=",
            "Numeric value": {
                "value": 50.0
            }
        }
    ]
 

 

 

Should be able to find idles of things like animations On Knees, Prone, etc... and set up dynamic idles by value ranges of Submissive.

 

Thus when the PC stopped running and stood still they'd use the idles.

 

You can throw a few thousand animations in OAR and do not have to deal with Pandora or FNIS.

 

 

 

Edited by eflat01
Posted

@eflat01 Yeah, this type of thing should be possible but it would take a bit of elbow grease on the user's end. I don't have any animation pack suggestions, but setting OAR conditions to play certain animations should be doable, and SLSFR's fame values should be able to be pulled/compared from Global Variables for whatever you would want to do with that information. Probably won't work in EVERY situation, but should get the majority at least.

Posted
13 hours ago, eflat01 said:

You'd may likely want to look at https://www.nexusmods.com/skyrimspecialedition/mods/103427 and of course needs OAR and OSL Aroused.

 

Also look at Sexlab Fame Reloaded and  SexLab Fame comments reloaded... the reason I bring those up is they track fame values - including those which come under submissive tendencies. Npcs will comment about the PC and events wills also take place.

 

i.e. I'm on the old version of sex fame but I think an idea is still possible...

 

  Reveal hidden contents

 

 

image.jpeg.e58ff6476c7231dc53c8c78205e4313c.jpeg

 

 

 

 

That said lets ask my friends - the big boys (authors) @Gristle, @NymphoElf and  @killer905 (who I beleive knows where a ton of idle animations are). 

 

It should be feasible to write a OAR script to examine the Submissive level of the PC and play an idle via OAR because all it takes is examining the value in a form id (which could be a faction or a global, really anything) in a mod along with the pc/npc to for the idle. It replaces the standing still idles... and all it takes are the animations and a json.

 

i.e. Aroused uses a faction and this plays an idle when it's rank is 51 to 60 inclusive.

 

  Reveal hidden contents

 

{
    "name": "Arousal 51-60",
    "description": "When Arousal is with the ranges of 51 and 60.",
    "priority": 9001000,
    "conditions": [
        {
            "condition": "HasKeyword",
            "requiredVersion": "1.0.0.0",
            "disabled": true,
            "Keyword": {
                "editorID": "PlayerKeyword"
            }
        },
        {
            "condition": "IsInFaction",
            "requiredVersion": "1.0.0.0",
            "disabled": true,
            "Faction": {
                "pluginName": "Skyrim.esm",
                "formID": "5C84D"
            }
        },
        {
            "condition": "IsChild",
            "requiredVersion": "1.0.0.0",
            "negated": true
        },
        {
            "condition": "IsInFaction",
            "requiredVersion": "1.0.0.0",
            "Faction": {
                "pluginName": "SexLabAroused.esm",
                "formID": "3FC36"
            }
        },
        {
            "condition": "FactionRank",
            "requiredVersion": "1.0.0.0",
            "negated": true,
            "Faction": {
                "pluginName": "SexLabAroused.esm",
                "formID": "3FC36"
            },
            "Comparison": "<=",
            "Numeric value": {
                "value": 50.0
            }
        }
    ]
 

 

 

Should be able to find idles of things like animations On Knees, Prone, etc... and set up dynamic idles by value ranges of Submissive.

 

Thus when the PC stopped running and stood still they'd use the idles.

 

You can throw a few thousand animations in OAR and do not have to deal with Pandora or FNIS.

 

 

 

As for animations, these are standard animation sets, but I don't have any specific ones to recommend for idles.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...