Jump to content

Recommended Posts

Posted (edited)
On 9/12/2022 at 12:44 PM, loniceraa said:

I'm having an extraordinarily strange problem with recompiling the sslActorAlias script in SLSO (the AE version). I've done so in the past with no problems, but that was before I upgraded to AE.

 

Even with no changes, when I try to compile the script (with all necessary dependencies available), I get the following error log:

 

  Reveal hidden contents
Starting 1 compile threads for 1 files...
Compiling "sslActorAlias"...
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2321,4): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2321,15): cannot compare a experience to a int (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2325,5): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2325,16): cannot compare a experience to a int (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2338,72): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2338,70): cannot add a float to a experience (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2341,69): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2341,67): cannot add a float to a experience (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2344,44): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2344,42): cannot add a float to a experience (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2349,69): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2349,67): cannot add a float to a experience (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2352,44): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2352,42): cannot add a float to a experience (cast missing or types unrelated)
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2357,42): experience is not a variable
C:\Skyrim\SteamLibrary2\Steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2357,40): cannot add a float to a experience (cast missing or types unrelated)
No output generated for C:\Skyrim\MO2Mods\SLSO test\Scripts\Source\sslActorAlias.psc, compilation failed.

Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on C:\Skyrim\MO2Mods\SLSO test\Scripts\Source\sslActorAlias.psc

 

 

Note that the SexLab version of the script compiles fine; it's just the SLSO version that has the issue. Here are the functions in question (first error occurs on the line "if experience == -2"):

 

  Reveal hidden contents
;orgasm stuff
function Orgasm(float experience = 0.0)
	if experience == -2
		LastOrgasm = Math.Abs(RealTime[0] - 11)
		DoOrgasm(true)
	elseif ActorFullEnjoyment >= 90
		if experience == -1
			LastOrgasm = Math.Abs(RealTime[0] - 11)
		endIf
		if Math.Abs(RealTime[0] - LastOrgasm) > 10.0
			OrgasmEffect()
		endIf
	endIf
endFunction

function HoldOut(float experience = 0.0)
	if Position == 0
		if  IsFemale 
			if (Animation.HasTag("Vaginal" || Animation.HasTag("Fisting") || Animation.HasTag("69")))
				LastOrgasm = Math.Abs(RealTime[0] - 8 + OwnSkills[Stats.kVaginal] + experience)
				BonusEnjoyment(ActorRef, (- 1 - OwnSkills[Stats.kVaginal]) as int)
			elseif(Animation.HasTag("Anal") || Animation.HasTag("Fisting"))
				LastOrgasm = Math.Abs(RealTime[0] - 8 + OwnSkills[Stats.kAnal] + experience)
				BonusEnjoyment(ActorRef, (-1 - OwnSkills[Stats.kAnal]) as int)
			else
				LastOrgasm = Math.Abs(RealTime[0] - 8 + experience)
				BonusEnjoyment(ActorRef, -1)
			endIf
		elseif IsMale
			if (Animation.HasTag("Anal") || Animation.HasTag("Fisting"))
				LastOrgasm = Math.Abs(RealTime[0] - 8 + OwnSkills[Stats.kAnal] + experience)
				BonusEnjoyment(ActorRef, (-1 - OwnSkills[Stats.kAnal]) as int)
			else
				LastOrgasm = Math.Abs(RealTime[0] - 8 + experience)
				BonusEnjoyment(ActorRef, -1)
			endIf
		endIf
	elseif Position == 1
		LastOrgasm = Math.Abs(RealTime[0] - 8 + experience)
		BonusEnjoyment(ActorRef, -1)
	endIf
endFunction

 

 

 

Now, I did find a workaround: renaming the "experience" var (e.g. to "xexperience"). Doing so, the script compiles just fine. But, of course, that makes no sense; is it possible that between SE and AE, "experience" became a reserved variable in Papyrus? Is it some other quirk of my updated modlist? I notice someone else had the same problem too:

 

Since I found a way to compile the script, I guess nothing is really *broken* here, except my sanity. Any plausible idea what's going on here? Have I lost my marbles since I last modded Skyrim?

 

Omg, I had the same problem, but the explanation is so simple: 'experience' is declared as a 'float' variable, but it is compared to an 'int' value. Change the comparison to "if experience == -2.0", then it should compile.

 

Edit: No, you were right, 'experience' cannot be used as a variable name, dunno why (has Papyrus no scopes for names?). Renaming it is the only solution

 

Edited by nopse0
Posted
5 hours ago, Dovahbear91 said:

 

Does this also fix the SL - Survival bug where orgasms form SLSO dont seem to register as proper orgasms?

why would it?

SL - Survival is not a part of slso

Posted (edited)

Big oof. It might be because for some reason I had two different versions checked the 2022 and 2023. Welp time to restart and test
____
Everything works; however, I'm having a hard time setting it up to where it doesn't take forever for the npc to cum. It's still a must have mod so even if I gotta force advance/end when one scene takes half a day and prob longer. The only problem with that is when I have to do it a lot, I don't get filled up and risk preg / deal with the cum etc

It doesn't seem to take them forever all the time so idk what's going on or the best way to set up the menus

Running
Newest arousal NG
fill her up
Survival
Fert Mode
spank that ass
those are the main ones that I think might effect it

Any tips? turning off the ai edging and the chance for lower xp to lower their bar doesn't seem to do anything either. I'd rather them be on because things like survival begging and just the chance in general for non aggressive scenes to not have the npc cum

Oh I should add it's mainly the humans/beast race that does it. The creatures seem to work just fine although they too can take a long while sometimes


(already had auto stage advance off )

Edited by jaybunny
Posted (edited)
On 7/22/2023 at 9:25 AM, Terra1211 said:

looked at it again and the FM+ Mod Menu ingame states that SLSO support active = true. But it doesnt add sperm or gives the "x came inside x" message to me.



It might be the menu option (don't remember exactly what it was) but it was about having a lower sperm count if someone cums again within x amount of time

It was in the FM menu

 

 

Edited by jaybunny
Posted (edited)
12 hours ago, jaybunny said:

Big oof. It might be because for some reason I had two different versions checked the 2022 and 2023. Welp time to restart and test
____
Everything works; however, I'm having a hard time setting it up to where it doesn't take forever for the npc to cum. It's still a must have mod so even if I gotta force advance/end when one scene takes half a day and prob longer. The only problem with that is when I have to do it a lot, I don't get filled up and risk preg / deal with the cum etc

It doesn't seem to take them forever all the time so idk what's going on or the best way to set up the menus

Running
Newest arousal NG
fill her up
Survival
Fert Mode
spank that ass
those are the main ones that I think might effect it

Any tips? turning off the ai edging and the chance for lower xp to lower their bar doesn't seem to do anything either. I'd rather them be on because things like survival begging and just the chance in general for non aggressive scenes to not have the npc cum

Oh I should add it's mainly the humans/beast race that does it. The creatures seem to work just fine although they too can take a long while sometimes


(already had auto stage advance off )


Yeah it still takes a long time even with the correct version. I have it set where min is 1 and max is 2 and even npc chance to want more orgasms to 0 but they still seem to want more orgasms even as agressive. Is the included patch for arousal not for the latest NG? it's still not matching up and I don't see an NG patch option in the mcm. There's sorta one in the ng mcm; however, the description makes it seem like it should be off. Whether it's on or off doesn't make a difference anyway.

Also the spank that ass stam/magic option is turned off as stated in survival's settings for it

For example this one scene started about 10am and now it's getting to be late evening and the guy has only cum once but been nearly there prob since 12pm or so and is still going when it's already 6pm

____
Saw somewhere that said se is .63 framework so going to try that along with updating the baka slal pack - never mind was chasing rabbit trails I had the correct versions for slso XC

where can I find the including patch for arousal ng or do I just check the redux version for the latest ng?

Sorry for all the bloat but just really trying to figure this out because this really is a must have mod XC

I'm also using the pplus+ mod and the merged patched
 

Edited by jaybunny
Posted
4 hours ago, jaybunny said:


Yeah it still takes a long time even with the correct version. I have it set where min is 1 and max is 2 and even npc chance to want more orgasms to 0 but they still seem to want more orgasms even as agressive. Is the included patch for arousal not for the latest NG? it's still not matching up and I don't see an NG patch option in the mcm. There's sorta one in the ng mcm; however, the description makes it seem like it should be off. Whether it's on or off doesn't make a difference anyway.

Also the spank that ass stam/magic option is turned off as stated in survival's settings for it

For example this one scene started about 10am and now it's getting to be late evening and the guy has only cum once but been nearly there prob since 12pm or so and is still going when it's already 6pm

____
Saw somewhere that said se is .63 framework so going to try that along with updating the baka slal pack - never mind was chasing rabbit trails I had the correct versions for slso XC

where can I find the including patch for arousal ng or do I just check the redux version for the latest ng?

Sorry for all the bloat but just really trying to figure this out because this really is a must have mod XC

I'm also using the pplus+ mod and the merged patched
 

included patch is for sla redux

Posted
2 minutes ago, Ed86 said:

included patch is for sla redux

ah okay. welp time to switch back - don't mind it being an older version of arousal - just as long as things work as intended Thanks :D

Now off to do more experiments XD

Posted
6 hours ago, jaybunny said:

ah okay. welp time to switch back - don't mind it being an older version of arousal - just as long as things work as intended Thanks :D

Now off to do more experiments XD

 

SLANG is based on SLAX, which has SLSO support built in, and the author hasn't made changes to that part (as far as I'm aware, from comments in the SLANG thread). I've been using SLANG for some time now and had zero issues with SLSO!

Posted
3 hours ago, Scautura said:

 

SLANG is based on SLAX, which has SLSO support built in, and the author hasn't made changes to that part (as far as I'm aware, from comments in the SLANG thread). I've been using SLANG for some time now and had zero issues with SLSO!


Oh thanks so much!

Posted
On 8/16/2023 at 10:04 PM, Ed86 said:

why would it?

SL - Survival is not a part of slso

It does, SLSO and SLS in AE now work fine together.

 

Basically SLS was looking for a script to fire once an orgasm was achieved, it looks like with this patch it is now finding it. Before it was not and so you had to use the normal orgasms provided with Sexlab

Posted (edited)

My PC will not orgasm, idk what happend. She just randomly stoped. The orgasm bar goes up in the beginning, but after a sec it goes down and does not go back up. She is always horny, and used to get orgasm but does not do that anymore. I am using NEFARAM, if that helps.

 

bug.png

Edited by xXSylviaXx
More info
Posted
20 hours ago, xXSylviaXx said:

My PC will not orgasm, idk what happend. She just randomly stoped. The orgasm bar goes up in the beginning, but after a sec it goes down and does not go back up. She is always horny, and used to get orgasm but does not do that anymore. I am using NEFARAM, if that helps.

 

bug.png

You might have more luck asking for support in the Nefaram discord server, considering that whatever problem you are having is most likely due to something within Nefaram specifically.

Posted

Most likely you are using a SLSO version that is not compatible with your SexLab version, SexLab Utility Plus version, or your load order is incorrect and you have mods besides SL Utility Plus overwritting SLSO.

Posted
2 hours ago, Sampon said:

MF_RadiantProstitution_SE ... not on the list, but required. What's up?

What do you mean by required?

SLSO does not need MF_RadiantProstitution_SE to work.

Posted (edited)
22 minutes ago, Sampon said:

1:  Supported mods:

2: my answer

3: it seems... you don't understand or can't follow the topic...

 

 

image.jpeg.2ecd643dfec838938a3037d12e19a885.jpeg

Looking at that, it appears MF Radiant Prostitution requires SLSO.

 

The way you posted, it looked like you were saying SLSO requires Radiant prostitution.

 

So here is a clever idea. Be clear in what you are syaing to start with rather than tell people they don't understand...

Edited by ebbluminous
Posted
4 hours ago, ebbluminous said:

Looking at that, it appears MF Radiant Prostitution requires SLSO.

 

The way you posted, it looked like you were saying SLSO requires Radiant prostitution.

 

So here is a clever idea. Be clear in what you are syaing to start with rather than tell people they don't understand...

wowowowow did you just assume people can have clever ideas?

Posted

I have a questions: New to the mod. How do you actually play the minigame? What are you supposed to do to get the enjoyment level of your character to rise?

Posted

I don't know if it's this mod that causes the issue, or SL Cum Overlays Extended, so I posted in both threads.

 

My understanding is that the cum texture overlays should be applied after an orgasm. Yet for some reason that does not happen for me. Instead the texture gets applied immediately at the start of the animation, only once per animation and no number of orgasms changes anything about it. Weird thing to also mention is, that the texture even appears at animations that should not cause any cum textures (solo masturbation).

 

Now again, this might not be the mod that causes the problem, and you're free to ignore this and scroll past.

However if anyone ever had the same experience or knows a fix for it, I'd really appreciate it. It's a small thing,

but it's driving me nuts expecially since I'm starting a new game and this is the only issue so far keeping me

from playing further, just in case I have to change mods and start new again...

Posted
14 hours ago, Marajade said:

I have a questions: New to the mod. How do you actually play the minigame? What are you supposed to do to get the enjoyment level of your character to rise?

you press lmb/rmb to increase/decrease enjoyment. can you win it? well ... probably if you have vibration mod (dont remember its name) and wireless vibrator

press shift + lmb

or you can change focus in mcm to self so everyone will raise own enjoyment

Posted
On 9/3/2023 at 11:43 AM, ebbluminous said:

people they don't understand...

Heck... Wow! What you do not understand, someone else can understand!

Posted (edited)

Is there a way to make this mod work in such a way that I can have animation stages advance automatically while also having it automatically go back a few stages and/or change animations if orgasm is not reached at the end? The way that SLSO functions in my game currently causes it to not change animation stages unless I press space... even if a character orgasms, the animation does not end (this behavior is with auto-advance stages off in SexLab). If I turn auto-advance stages on, then the stages will advance, but will just keep going to completion unless I manually go back a stage. If I dont, then the scene will typically end without any orgasms from anyone. I've tried turning on 'require consensual orgasm' on, but that setting doesn't seem to work. I've also ensured that nothing is overwriting SLSO in MO2.

 

TLDR: Is there a way to have SexLab and SLSO automatically handle stage and/or animation changes while also respecting the aggressive/consensual orgasm rules that I have set so the animations don't end unless those rules are met? I only want to play the mini game... I don't want to handle anything else manually.

Edited by Connector196

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