Jump to content

OStimLab SE - OStim to SexLab Event Bridge (PRE-ALPHA 0.1.0)


Recommended Posts

Posted

I too would love to see this updated. ❤️ It seemed to work, allowing OStim scenes to refill PSQ hunger, until I updated to Standalone. I know Children of Lilith is an alternative to PSQ. But I can't seem to get pretty much all the features I want to work in CoL.

  • 5 weeks later...
  • 4 weeks later...
Posted

It appears that OStim.GetCurrentAnimationClass() is no longer used in Ostim Standalone. So I changed it to String animID = OStim.GetCurrentAnimationSceneID() and used OMetadata.FindAction and it worked. But I don't know if this is the correct way to use it.

Posted
10 hours ago, UTA1001NEWGENESIS said:

It appears that OStim.GetCurrentAnimationClass() is no longer used in Ostim Standalone. So I changed it to String animID = OStim.GetCurrentAnimationSceneID() and used OMetadata.FindAction and it worked. But I don't know if this is the correct way to use it.

 

Hello, would it be possible for you to upload the file(s) you edited? I've been trying to do it myself, but I'm having no luck.

Posted (edited)
On 7/2/2024 at 2:34 AM, chasindwitch said:

 

Hello, would it be possible for you to upload the file(s) you edited? I've been trying to do it myself, but I'm having no luck.

I don't know anything about Skyrim scripts, so I can't guarantee that it will work.

 

 

 

OStimLab_EventBridge.pex

Edited by UTA1001NEWGENESIS
  • 2 weeks later...
Posted
On 7/1/2024 at 2:34 PM, chasindwitch said:

 

Hello, would it be possible for you to upload the file(s) you edited? I've been trying to do it myself, but I'm having no luck.

so? It worked? 🙃

  • 2 weeks later...
  • 2 weeks later...
Posted

I tried to install the mod on OSTIM standalone which seems to be the current "ostim". This file seems to require OSA file which is not in the standalone package.Bit saddened as this mod is basically what I would need the circle of slut to run on SLSO and sexlab. The nexusmod version supports only ostim and its pain to have ostim with all the animation packages and that the circle of lust would not generate or track sexlab events. This file could hopefully fix all that.

Posted
On 8/1/2024 at 3:04 PM, poporaltemporal said:

I tried to install the mod on OSTIM standalone which seems to be the current "ostim". This file seems to require OSA file which is not in the standalone package.Bit saddened as this mod is basically what I would need the circle of slut to run on SLSO and sexlab. The nexusmod version supports only ostim and its pain to have ostim with all the animation packages and that the circle of lust would not generate or track sexlab events. This file could hopefully fix all that.

You know there is a SLab version of circle of lust on this site :)

 

Posted (edited)
19 hours ago, vetrok said:

I corrected the lines, but could not compile

OStimLab_EventBridge.rar 3.5 kB · 1 download

Compiled psc to pex. but I can't test it.(I used tools in Laptop. skyrim is in desktop....)

And I edited some code.(edited bold word part. Find over line 175)

I have a feeling it probably won't work.

(I'm not sure, but I think you need to check what 'OStim.GetCurrentAnimationSceneID() ' is and modify your code. I don't know what the content of 'OStim.GetCurrentAnimationSceneID()' is.)

 

    string TagToAdd = ""
    ;On Scene Change add to the tag array to indicate what we are doing
    ;string cClass = OStim.GetCurrentAnimationClass()
    String animID = OStim.GetCurrentAnimationSceneID() 

    if(animID == "Sx" || animID == "Vaginal" || animID == "Vaginalsex" || animID == "Vagina") ;Sex
        TagToAdd = "Vaginal"
    elseif(animID == "An" || animID == "Anal" || animID == "Analsex" || animID == "Pf2") ;Anal
        TagToAdd = "Anal"
    elseif(animID == "Boj" || animID == "BoF") ;Boobjob
        TagToAdd = "Boobjob"
    elseif(animID == "VJ") ;Cunnilingus
        TagToAdd = "Cunnilingus,Oral"
    elseif(animID == "HJ" || animID == "ApHJ" || animID == "DHJ") ;Handjob
        TagToAdd = "Handjob"
    elseif(animID == "Cr" || animID == "Pf1" || animID == "Pf2") ;Fingering    
        TagToAdd = "Fisting"
    elseif(animID == "BJ" || animID == "ApPJ" || animID == "SJ" || animID == "hhPJ" || animID == "hhBJ" || animID == "Oral" || animID == "Fellatio" || animID == "Blowjob")    ;Blowjob
        TagToAdd = "Blowjob,Oral"
    elseif(animID == "Po" || animID == "HhPo") ;Masturbation
        TagToAdd = "Masturbation"
    elseif(animID == "VBJ" || animID == "VHJ") ;69
        TagToAdd = "69"
    elseif(animID == "FJ") ;Footjob
        TagToAdd = "Footjob"
    endif
 

 

 

OSTIMLAB EB Script.7z

Edited by gomax6082
Posted (edited)
On 8/12/2024 at 11:42 AM, gomax6082 said:

Compiled psc to pex. but I can't test it.(I used tools in Laptop. skyrim is in desktop....)

And I edited some code.(edited bold word part. Find over line 175)

I have a feeling it probably won't work.

(I'm not sure, but I think you need to check what 'OStim.GetCurrentAnimationSceneID() ' is and modify your code. I don't know what the content of 'OStim.GetCurrentAnimationSceneID()' is.)

 

    string TagToAdd = ""
    ;On Scene Change add to the tag array to indicate what we are doing
    ;string cClass = OStim.GetCurrentAnimationClass()
    String animID = OStim.GetCurrentAnimationSceneID() 

    if(animID == "Sx" || animID == "Vaginal" || animID == "Vaginalsex" || animID == "Vagina") ;Sex
        TagToAdd = "Vaginal"
    elseif(animID == "An" || animID == "Anal" || animID == "Analsex" || animID == "Pf2") ;Anal
        TagToAdd = "Anal"
    elseif(animID == "Boj" || animID == "BoF") ;Boobjob
        TagToAdd = "Boobjob"
    elseif(animID == "VJ") ;Cunnilingus
        TagToAdd = "Cunnilingus,Oral"
    elseif(animID == "HJ" || animID == "ApHJ" || animID == "DHJ") ;Handjob
        TagToAdd = "Handjob"
    elseif(animID == "Cr" || animID == "Pf1" || animID == "Pf2") ;Fingering    
        TagToAdd = "Fisting"
    elseif(animID == "BJ" || animID == "ApPJ" || animID == "SJ" || animID == "hhPJ" || animID == "hhBJ" || animID == "Oral" || animID == "Fellatio" || animID == "Blowjob")    ;Blowjob
        TagToAdd = "Blowjob,Oral"
    elseif(animID == "Po" || animID == "HhPo") ;Masturbation
        TagToAdd = "Masturbation"
    elseif(animID == "VBJ" || animID == "VHJ") ;69
        TagToAdd = "69"
    elseif(animID == "FJ") ;Footjob
        TagToAdd = "Footjob"
    endif
 

 

 

OSTIMLAB EB Script.7z 6.67 kB · 2 downloads

Does not work. Badly(((

Edited by vetrok
  • 1 month later...
  • 4 months later...
Posted
On 3/23/2024 at 8:47 AM, ozooma10 said:

Ahh yeah needs to be updated. I'll try to get to it but will be a while.

Heyyyyy...... Any chance of update in the near future?

  • 4 weeks later...
  • 7 months later...
  • 2 weeks later...
Posted
On 11/13/2025 at 11:15 PM, ozooma10 said:

Is it safe to say OG Ostim is dead and if i were to update, I can focus on just making it work well with OStimSA?

Yes. StandAlone version is much superior than OG one.

  • 1 month later...
Posted
On 1/26/2022 at 3:32 PM, LewdZenn said:

Yes, they don't conflict.

what about the animations tho? ostim versions and sexlab versions conflict

  • 2 months later...
Posted
On 11/13/2025 at 2:15 PM, ozooma10 said:

Is it safe to say OG Ostim is dead and if i were to update, I can focus on just making it work well with OStimSA?

 

On the Nexus page for Ostim the mod has not been updated since 2022.

 

While OStim-SA Nexus page has been updated as recently as March of 2026.

 

From this I would say that it would be a safe bet to move on to Ostim-SA.

 

Thanks for your work.

  • 2 months later...

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...