Mr. private Posted April 24, 2014 Posted April 24, 2014 I made a mod and had the same problem. the problem (copy from papyrus log): [04/24/2014 - 03:21:28PM] SexLab Thread[0] ModEvent: Animationstart // Animationstart_Helpless // PlayerAnimationstart [04/24/2014 - 03:21:34PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_Helpless // PlayerStageEnd [04/24/2014 - 03:21:34PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_Helpless // PlayerStageEnd [04/24/2014 - 03:21:34PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_Helpless // PlayerStageEnd [04/24/2014 - 03:21:34PM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd_Helpless // PlayerOrgasmEnd [04/24/2014 - 03:21:35PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_Helpless // PlayerOrgasmStart [04/24/2014 - 03:21:35PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_Helpless // PlayerOrgasmStart [04/24/2014 - 03:21:37PM] SexLab Thread[0] ModEvent: Animationend // Animationend_Helpless // PlayerAnimationend [04/24/2014 - 03:21:39PM] SexLab Thread[0] ModEvent: ThreadClosed // ThreadClosed_Helpless // PlayerThreadClosed it only happens if you skip stages (hitting space bar) or if some 1 got killed. a hotfix for this is to use PlayerAnimationend to dubble check, squirt is still running if so stop it. in the script: Function RegModEvents() RegisterForModEvent("OrgasmStart", "ActorStartSquirt") RegisterForModEvent("OrgasmEnd", "ActorEndSquirt") RegisterForModEvent("Animationend", "ActorEndSquirt") <--------------- fixed (add this and recompile) EndFunction its better to fix the problem in sexlab to make sure OrgasmEnd is always called. (its fix in sexlab 1.52) but this will work for now. i hope its not a problem to upload the script, if it is plz let me know and i take it down. it is only 1 file place it in script and replace, you still need sexlab squirt!http://www.loverslab.com/files/file/1006-squirt-hotfix-for-sexlab-139b/
popcorn71 Posted April 28, 2014 Posted April 28, 2014 it only happens if you skip stages (hitting space bar) or if some 1 got killed. a hotfix for this is to use PlayerAnimationend to dubble check, squirt is still running if so stop it. in the script: Function RegModEvents() RegisterForModEvent("OrgasmStart", "ActorStartSquirt") RegisterForModEvent("OrgasmEnd", "ActorEndSquirt") RegisterForModEvent("Animationend", "ActorEndSquirt") <--------------- fixed (add this and recompile) EndFunction its better to fix the problem in sexlab to make sure OrgasmEnd is always called. (its fix in sexlab 1.52) but this will work for now. i hope its not a problem to upload the script, if it is plz let me know and i take it down. it is only 1 file place it in script and replace, you still need sexlab squirt! Wait so your saying that all this time that i have been ripping a part this mod trying to reproducer the endless squirting in normal game play, and it was being caused by people killing off actors in the middle of sex and skipping animation stages??? Anyway Im assuming that this is built directly off the official v1.3 and not my re wright?
Hal3023 Posted April 28, 2014 Posted April 28, 2014 with new sexlab 1.50 endless squirts are back ;/ Endless aquriting ???!!! Thank gods. I wish I had this sort of bug, but unluckily for me the squirting doesnt work at all... could it be that there are some old files? I once used it and it worked but at some point it did no longer so I just deactivated it.
germanicus Posted April 28, 2014 Posted April 28, 2014 I do not know for others, but I never use space bar during the sex act. The only key that I'm using during sex is the "O" key for switching positions with the NPC, and it is only in the case when a male NPC want's to fuck my male PC. So, I'm not saying that this not might be the case in named case, but I'm saying that regardless that there was endless squirting among both, PC's and NPC's. - Which doesn't bother me personally.
germanicus Posted April 28, 2014 Posted April 28, 2014 with new sexlab 1.50 endless squirts are back ;/ Endless aquriting ???!!! Thank gods. I wish I had this sort of bug, but unluckily for me the squirting doesnt work at all... could it be that there are some old files? I once used it and it worked but at some point it did no longer so I just deactivated it. I wish I can help you. All I know that I updated SKSE to 1.70, SL to 1.54, Zaz to 1.5 something, and mod works great. Actually, when the fix came out for SLS.1.3 mod is working great for me. Just as I say. I do not mind endless squirting, actually, it bothers me when it stops during the sex act.
Mr. private Posted April 28, 2014 Posted April 28, 2014 it only happens if you skip stages (hitting space bar) or if some 1 got killed. a hotfix for this is to use PlayerAnimationend to dubble check, squirt is still running if so stop it. in the script: Function RegModEvents() RegisterForModEvent("OrgasmStart", "ActorStartSquirt") RegisterForModEvent("OrgasmEnd", "ActorEndSquirt") RegisterForModEvent("Animationend", "ActorEndSquirt") <--------------- fixed (add this and recompile) EndFunction its better to fix the problem in sexlab to make sure OrgasmEnd is always called. (its fix in sexlab 1.52) but this will work for now. i hope its not a problem to upload the script, if it is plz let me know and i take it down. it is only 1 file place it in script and replace, you still need sexlab squirt! Wait so your saying that all this time that i have been ripping a part this mod trying to reproducer the endless squirting in normal game play, and it was being caused by people killing off actors in the middle of sex and skipping animation stages??? Anyway Im assuming that this is built directly off the official v1.3 and not my re wright? sorry to hear you where trying to fix it to, i didnt read all the post so i didnt know. its because sexlab framework 1.39b sometimes calls (orgasm stop) before (orgasm start) with was fixed in 1.5(not sure maybe 1.52). i only added a extra check to make sure it is stopped when animation is over. and the only thing i changed to the official code was RegisterForModEvent("Animationend", "ActorEndSquirt") .
popcorn71 Posted April 29, 2014 Posted April 29, 2014 sorry to hear you where trying to fix it to, i didnt read all the post so i didnt know. its because sexlab framework 1.39b sometimes calls (orgasm stop) before (orgasm start) with was fixed in 1.5(not sure maybe 1.52). i only added a extra check to make sure it is stopped when animation is over. and the only thing i changed to the official code was RegisterForModEvent("Animationend", "ActorEndSquirt") .No worry's. I'm just a little miffed that people don't know how to make a proper bug report is all. For any one using my patch, don't mix and match j.private@hotmail.com and my fixes. There incompatible.
germanicus Posted April 29, 2014 Posted April 29, 2014 Let me give you a picture as a proof that endless squrting is still present even in new game, new SL, and with automatic camera off. As I said in one of my earlier posts: It goes always after a while, or just reloading the game over menu or F9.
Mr. private Posted April 29, 2014 Posted April 29, 2014 sorry to hear you where trying to fix it to, i didnt read all the post so i didnt know. its because sexlab framework 1.39b sometimes calls (orgasm stop) before (orgasm start) with was fixed in 1.5(not sure maybe 1.52). i only added a extra check to make sure it is stopped when animation is over. and the only thing i changed to the official code was RegisterForModEvent("Animationend", "ActorEndSquirt") .No worry's. I'm just a little miffed that people don't know how to make a proper bug report is all. For any one using my patch, don't mix and match j.private@hotmail.com and my fixes. There incompatible. i know what you mean. Let me give you a picture as a proof that endless squrting is still present even in new game, new SL, and with automatic camera off. As I said in one of my earlier posts: It goes always after a while, or just reloading the game over menu or F9. ScreenShot93.jpg if you what me or some one to fix it or help you we need to know more then this. 1. SL version? 2. did you use me hotfix? 3. can you give your papyrus log so i can see what is going on. 4. try to explane when it happens.
germanicus Posted April 29, 2014 Posted April 29, 2014 No problem, although I already wrote about it few posts above. 1. SL 1.54 2. I used popcorn's 1.3 fix 3. papyrus attached 4, It happens all the time, since SL1.39 version up to the newest. Even new games has that issue. Almost every second female NPC is squirting endlessly after sex. skse.rar
Mr. private Posted April 29, 2014 Posted April 29, 2014 No problem, although I already wrote about it few posts above. 1. SL 1.54 2. I used popcorn's 1.3 fix 3. papyrus attached 4, It happens all the time, since SL1.39 version up to the newest. Even new games has that issue. Almost every second female NPC is squirting endlessly after sex. skse.rar i dont know how popcorn fix the problem in his fix but if it doesnt work try to use offical mod and my hotfix. btw a papyrus log is located in Documents\My Games\Skyrim\Logs\Script and named papyrus.0 if not you need to enable it(google it). if you can send me this file aswell it would be great, the problem is on sexlab frameworks side but was fix in 1.52(i hope). edit: i think popcorns fix doenst work for sexlab 1.5+ if blindmankind is right.
germanicus Posted April 29, 2014 Posted April 29, 2014 Oh, my what did I sent you??? Ge, sorry. I was so tired that I didn't see what was I doing and so many people talked about SKSE on the forum that I subconsciously posted you that one. My apologies. After I posted my comment, I went to play the game. Anyhow, one simple mistake that one mod was doing to my SL forced me to quit playing and reinstall SL 1.54. Now endless squirting was gone. Unbelievable. The only thing now is the problem when automated camera is on in SL, my PC doesn't squirt. Strange. When others complained on that issue, my P C could squirt, but now, can't. Anyhow, here is my log file:Papyrus.0.rar popcorn's files old and new: SLSquirt_v120_fix.7z SexLabSquirt Fix v4.7z
Mr. private Posted April 29, 2014 Posted April 29, 2014 Oh, my what did I sent you??? Ge, sorry. I was so tired that I didn't see what was I doing and so many people talked about SKSE on the forum that I subconsciously posted you that one. My apologies. After I posted my comment, I went to play the game. Anyhow, one simple mistake that one mod was doing to my SL forced me to quit playing and reinstall SL 1.54. Now endless squirting was gone. Unbelievable. The only thing now is the problem when automated camera is on in SL, my PC doesn't squirt. Strange. When others complained on that issue, my P C could squirt, but now, can't. Anyhow, here is my log file:Papyrus.0.rar popcorn's files old and new: SLSquirt_v120_fix.7z SexLabSquirt Fix v4.7z papyrus log looks oke, only cumshot and a other one(_SE_MainQuest) causing lots of errors. but i think you can use the original mod without any fix and it should work without a problem. The fix was only for 1.39b no need for it in 1.5+
germanicus Posted April 29, 2014 Posted April 29, 2014 it is Spouse Enhanced mod. The author of mod quieted from modding so there are no updates from him.
Mr. private Posted April 29, 2014 Posted April 29, 2014 Thank you j.private. (what is _SE_MainQuest)? i think spouses-enhanced because of "se" but i am not sure try disabling it and check if you still get errors in papyrus log. its not a big problem but it means there is something wrong, if you dont have any problems then leave it.
germanicus Posted April 29, 2014 Posted April 29, 2014 LOL j.private.Thanks. I just discovered what mod is that when you answered my question. By the way, I know the reason why cumshot mod caused errors too. There was one dependency that I forgot to install when upgraded mod. Now I did it and will see how it works.
Sunja44 Posted May 1, 2014 Posted May 1, 2014 I installed that mod anew on a fresh game and now I have no gush effect at all (PC chance set to 100%, small gush option). When I check the debug messages I get a message that my PC is squirting, but no visual effect (on NPCs like Lydia it works). Still SexLab 1.38b here.
dje34 Posted May 1, 2014 Posted May 1, 2014 While I really do like this mod, I still think the squirt chance would be better if triggered by some high arousal level instead of random variable. Hope to see this someday ! That would rock !
djahdjah Posted May 5, 2014 Posted May 5, 2014 I installed that mod anew on a fresh game and now I have no gush effect at all (PC chance set to 100%, small gush option). When I check the debug messages I get a message that my PC is squirting, but no visual effect (on NPCs like Lydia it works). Still SexLab 1.38b here. I have almost the same problem. It works well on npc but on my pc that starts at the moment or the animation finished, not at the same time as on npc. An idea to repair that? I use sexlab 1.55,tdf prostitution,defeat 4.21 and sexlab cumshot. Ps sorry for my english,it's not my langage.
Mr. private Posted May 5, 2014 Posted May 5, 2014 If i have some time left i with make a new version but i have a question: is it a good idea to use sexlab arousal to get a arousal level and check if its squirting time or not? or do you like it to be random like it is now? maybe theres already something like arousal build in sexlab but i will find out when i make it. any idea is welcome.
Sunja44 Posted May 5, 2014 Posted May 5, 2014 With SL 1.55 endless squirt returned. ScreenShot125.jpg You lucky one. I installed just SexLab 1.55, Matchmaker Rev6, the newest Submit version and SexLab Arousal on a save that has never seen a SexLab mod. All other mods work well, but no visual squirt effect for my player char at all. Player Chance is set to 100%. As a debug message I get "Sunja is squirting" and I chose a version of each option. My ENB can't be the reason, on NPCs it works and displays the usual visual effect. SoS Schlongs for female can't be the reason either, it does not change the gender, it just adds schlongs to females and for schlonged female NPCs it does work. As far as I know and is written down in the description Zaz Animation pack isn't needed, because the animated effect is already included in the bsa of this mod. My guess is that the squirt initialization depends on the orgasm phase of SexLab. Either SexLab has changed this phase somehow drastically or it's maybe a Race Menu overlay compatibility issue (I just use freckles, nothing else) ?
germanicus Posted May 5, 2014 Posted May 5, 2014 LOL Sigurd44. I always declared that I don't mind if NPCs will squirt endlessly. For me, it is hot to see them squirt all the time. In my game, even dead female bandits squirts. So, seeing that, I got frisky and can't resist not to fuck them using Puppet master mod. LOL. My notification wasn't complain but a note to the author of the mod and to the others that "endless squirting" has returned. I wish I can help you with your problem, but, unfortunately, I can't.
germanicus Posted May 5, 2014 Posted May 5, 2014 If i have some time left i with make a new version but i have a question: is it a good idea to use sexlab arousal to get a arousal level and check if its squirting time or not? or do you like it to be random like it is now? maybe theres already something like arousal build in sexlab but i will find out when i make it. any idea is welcome. As for me, I would love to keep it this way. I think that squirting slider is a great idea. If someone doesn't like often squirting, he/she can always turned it to "0". If you ask me, I will make a possibility of "endless" squirting. Unfortuantyl for me, it stops when reloading the game or exit /enter the ambient. So I have a crazy proposition. Is it possible to make a "squirting" key, something like Random sex mod have? The author of the mod set "9" key for activating/deactivating mass sex. maybe it is possible to do with "endless squirting" unless it overload the script.
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