ShenGo Posted May 7, 2024 Posted May 7, 2024 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. 4
Powerful_Jew Posted June 5, 2024 Posted June 5, 2024 A great mod that work really good. I really like your mod and whould love to see update for Ostim Standalone. Amazing work❤️! 4
UTA1001NEWGENESIS Posted July 1, 2024 Posted July 1, 2024 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.
chasindwitch Posted July 1, 2024 Posted July 1, 2024 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.
UTA1001NEWGENESIS Posted July 2, 2024 Posted July 2, 2024 (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 July 5, 2024 by UTA1001NEWGENESIS 3
Agnot Posted July 11, 2024 Posted July 11, 2024 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? 🙃
Agnot Posted July 11, 2024 Posted July 11, 2024 On 7/2/2024 at 12:16 AM, UTA1001NEWGENESIS said: I don't know anything about Skyrim scripts, so I can't guarantee that it will work. OStimLab_EventBridge.pex 10.04 kB · 5 downloads so? It worked? 🙃
vetrok Posted July 20, 2024 Posted July 20, 2024 On 7/11/2024 at 10:53 PM, Agnot said: so? It worked? 🙃 Checked it, doesn't work 1
poporaltemporal Posted August 1, 2024 Posted August 1, 2024 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.
arcanyx1983 Posted August 7, 2024 Posted August 7, 2024 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
poporaltemporal Posted August 7, 2024 Posted August 7, 2024 6 hours ago, arcanyx1983 said: You know there is a SLab version of circle of lust on this site Sadly its outdated and not mantained. It also bugged me for several ways when I tried it.
vetrok Posted August 11, 2024 Posted August 11, 2024 I corrected the lines, but could not compile OStimLab_EventBridge.rar
gomax6082 Posted August 12, 2024 Posted August 12, 2024 (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 August 12, 2024 by gomax6082
vetrok Posted August 13, 2024 Posted August 13, 2024 (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 August 13, 2024 by vetrok
LonerEmperor Posted October 8, 2024 Posted October 8, 2024 Does this also work with OStim Standalone?
Dm0n Posted February 20, 2025 Posted February 20, 2025 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? 1
ContusionComfort Posted March 15, 2025 Posted March 15, 2025 A patch to get this going with OStimSA. I tested it with fill her up (has issues on that mod's end but technically functions if you end scene after 1 orgasm) and sgo4if (should be fine). OStimLab_EventBridge patch.7z 9
ozooma10 Posted November 13, 2025 Author Posted November 13, 2025 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? 2
MadAl777 Posted November 24, 2025 Posted November 24, 2025 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.
Arelor Posted January 1 Posted January 1 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
arsil321 Posted March 21 Posted March 21 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. 3
pheonex2077 Posted June 19 Posted June 19 On 6/17/2026 at 3:35 AM, ozooma10 said: this mod really should get out of pre-alpha agreed
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now