Jump to content

Recommended Posts

Posted

I've begun having a problem where sometimes after sex both actors continue acting it out (cloths on) and time passes' date=' but I cannot do anything, or access the pip girl, or anything. Generally having to reset. Any ideas.

 

 

Happened with 1.25 as well as 1.29.

[/quote']

 

This is an occasional issue for anyone using any version of sexout, even the pre-NG versions. Enter the console and type 'tfc' to go into freefloat cam mode.

 

Exit and reenter the console.

 

Click the offending actor, make sure they are selected (their name will show up on the top of the screen), and type "playidle SexoutReset"

 

type tfc again

 

All should be fixed.

 

 

Posted

All seemed well with the changes, even got pregnant. So here's the early release of .30. Testing minded players, please try it out, with override OFF.

 

Not looking for general bug reports on this one, just want to make sure that with override off, everything is working as before -- checking I didn't break anything in classic since I had to touch 4 or 5 classic scripts for this change, which is something I like to avoid doing.

 

I think it's ready for release but another tester or two wouldn't hurt.

 

Edit: To ensure override is off, turn it off and save BEFORE you download this version. Otherwise if you're using tryouts, rapers, or anything that initiates sex on its own, it might initiate sex before you've turned off the setting, and your test results will be meaningless.

 

Edit2: Download on the next page, this one is bugged for NG.

Posted

Heh, i scanned for 00sexoutactor first and wondered why it did not work with NG. After checking the NGscripts i changed it to sexoutNGspinlock. I missed your comment on using spinlock instead of actor somehow. Time to change it back:) I think its a good move, 00sexoutactor has become kinda famous and always using the same names helps preventing compatibility issues.

Posted

The maybe i should wait till a more stable version comes out, or else there is a chance to break mods. the one from checkest no longer work. neither does my test one.

 

all i get now is SexoutNGBes ActorA And ActorB is already having sex.

 

Reverting back 1.26

 

 

Posted

Heh' date=' i scanned for 00sexoutactor first and wondered why it did not work with NG. After checking the NGscripts i changed it to sexoutNGspinlock. I missed your comment on using spinlock instead of actor somehow. Time to change it back:) I think its a good move, 00sexoutactor has become kinda famous and always using the same names helps preventing compatibility issues.

[/quote']

 

I've meant to do it for a while, just never got around to it.

 

So now you can use everything "the old way" except that for 3ways you must still use SexoutNG.ActorA, ActorB, and ActorC.

 

I am contemplating adding "male2" to Sexout to get around that as well.. but I don't like how they are gender specific anyway.

Posted

The maybe i should wait till a more stable version comes out' date=' or else there is a chance to break mods. the one from checkest no longer work. neither does my test one.

 

all i get now is SexoutNGBes ActorA And ActorB is already having sex.

 

Reverting back 1.26

 

 

[/quote']

 

Did you check their inventory to make sure they weren't saved with those items already in? If you save during sex (easy to do with rapers/tryouts running), the tokens will persist.

Posted

No this is new game. I always check a new game to make sure it does not bug out.

Posted

Bah that was my fault.. give me like 5 minutes for another .30 test version (will be posted here, not OP) for you to check.

 

.29 from the OP should also be OK.

 

EDIT: attached new .30. Fixed NG actor check. Also moves some debugging prints into a debug setting in MCM.

Posted

No problem. I always know how difficult this part is. I had this too when still doing oblivion animation project check the post how many would spam me with trouble shoot. :D

Posted

No problem. I always know how difficult this part is. I had this too when still doing oblivion animation project check the post how many would spam me with trouble shoot. :D

 

I think from now on I'll keep posting 'new ones' like this and if they get the OK, *then* I will update the OP. :D

Posted

here is the weird bug i keep getting now.

This happens with both override on or off. No difference.

Posted

here is the weird bug i keep getting now.

This happens with both override on or off. No difference.

 

Need to see the script you're initiating sex with.

 

Ah holy smokes, I know what's going on.. ;) I think.

Posted

here is the weird bug i keep getting now.

This happens with both override on or off. No difference.

 

Need to see the script you're initiating sex with.

 

Just the regular script.

Through dialog.

 

ref iRandom

set SexoutNG.actorA to CheyenneREF
set SexoutNG.actorB to SunnyRef

set iRandom to GetRandomPercent

If iRandom < 50 
set Sexout.anim to 1001
else
set Sexout.anim to 1002
endif

CIOS SexoutNGBegin

 

 

Posted

Yeah there's an idle anim condition in there that's screwed up, testing the fix now.

 

Also, the random picker should be working, you don't need to set the anim yourself. It is already doing this:

           if actorA.GetInFaction DogFaction || actorA.GetInFaction VCrCoyoteFaction
             if rndValA <= 49
               set Sexout.anim to 1001
             else
               set Sexout.anim to 1002
             endif

 

Posted

Thanks this will shorten the code allot.

 

how does this count in the equation ??

set Sexout.SexType to Anal Does it serve any purpose now or can i just leave this out now ??

Posted

Thanks this will shorten the code allot.

 

how does this count in the equation ??

set Sexout.SexType to Anal Does it serve any purpose now or can i just leave this out now ??

 

You need to set Sextype to anal or set one (or more) of the SexoutNG vars such as sexoutNG.isAnal in order to have the counters incremented. Pregnancy uses them for example to only do pregnancy stuff if numVaginal goes up, and that will only go up if you set one of those vars: SexoutNG.isVaginal to 1, or Sexout.SexType to Vaginal.

 

If you don't set it, it will pick one at random as well.

 

Here's the fixed file: Tested with veronica and a legion mongrel.

 

Edit: If you pick a sextype via any of those methods, it will be respected when a random anim is chosen -- at least, it should be respected. The random picker needs a bit of work. ;)

Posted

maybe it will be easier for the random picker to have condition set like

 

if actorB.female == 1

set type to Vaginal

else

set type to Anal

endif

 

That way you don't need to set this manually because the random picker always look if actor B is female set the conditions accordingly.

Posted

maybe it will be easier for the random picker to have condition set like

 

if actorB.female == 1

set type to Vaginal

else

set type to Anal

endif

 

That way you don't need to set this manually because the random picker always look if actor B is female set the conditions accordingly.

 

That would be, but I want to let random be truly random. I need to do the almost opposite of what you said though -- it can still pick vaginal even if actorB is male.

 

As for the animation picker itself, it doesn't care. There is no difference between vaginal and anal animations anyway, so it just checks for oral or 'else'.

 

 

Posted

Yes that fixed it.

 

Indeed the above could pose problem especially with those new 3 DP animation what if actorA is female.. :D

 

 

Posted

Yes did fixed it.

 

Indeed the above could pose problem especially with those new 3 DP animation what if actorA is female.. :D

 

 

 

Sweet!

 

And you're right about the DP animations. In that case, it's best if the caller sets isAnal, isVaginal, or both. At least until I have more time to spend on this random picker thing. ;)

Posted

OK, just so we're absolutely crystal clear and there is no issue of other mods interfering or whatnot:

 

Load Order:

 

 

[X] FalloutNV.esm

[X] DeadMoney.esm

[X] HonestHearts.esm

[X] OldWorldBlues.esm

[X] LonesomeRoad.esm

[X] Sexout.esm

[X] SexoutLegion.esm

[X] The Mod Configuration Menu.esp

[X] SexoutRapers.esp

[X] SexoutProstitutes.esp

[X] SexoutDrugs.esp

[X] SexoutSexWithFollow.esp

[X] SexoutHowAbout.esp

[X] SexoutDiscounts.esp

[X] SexoutHookups.esp

[X] SexoutKings.esp

[X] SexoutKhans.esp

[X] SexoutPowderGangers.esp

[X] SexoutNCR.esp

[X] SexoutBribes.esp

[X] SexoutPregnancy.esp

[X] Smalltalk.esp

 

 

AS you can see, minimal mods, all Sexout related, NEW GAME, fixed Sexout.esm order in relation to SexoutLegion.esm, etc.

 

Report: (Using version posted on previous page, Sexout.esm (Size: 502.43 KB / Downloads: 6)

 

With Override turned off, no problems whatsoever as long as I initiate sex in 3rd person.

 

With it turned on, I still get incorrect clothing animations, eg I have sex with clothing on, then revert to naked, or I start naked then put clothing on, or some variation. NPC's seem fine.

 

Edited for brevity.

 

 

Posted

OK' date=' just so we're absolutely crystal clear and there is no issue of other mods interfering or whatnot:

 

Load Order:

 

 

[X'] FalloutNV.esm

[X] DeadMoney.esm

[X] HonestHearts.esm

[X] OldWorldBlues.esm

[X] LonesomeRoad.esm

[X] Sexout.esm

[X] SexoutLegion.esm

[X] The Mod Configuration Menu.esp

[X] SexoutRapers.esp

[X] SexoutProstitutes.esp

[X] SexoutDrugs.esp

[X] SexoutSexWithFollow.esp

[X] SexoutHowAbout.esp

[X] SexoutDiscounts.esp

[X] SexoutHookups.esp

[X] SexoutKings.esp

[X] SexoutKhans.esp

[X] SexoutPowderGangers.esp

[X] SexoutNCR.esp

[X] SexoutBribes.esp

[X] SexoutPregnancy.esp

[X] Smalltalk.esp

 

 

AS you can see, minimal mods, all Sexout related, NEW GAME, fixed Sexout.esm order in relation to SexoutLegion.esm, etc.

 

Report: (Using version posted on previous page, Sexout.esm (Size: 502.43 KB / Downloads: 6)

 

With Override turned off, no problems whatsoever as long as I initiate sex in 3rd person.

 

With it turned on, I still get incorrect clothing animations, eg I have sex with clothing on, then revert to naked, or I start naked then put clothing on, or some variation. NPC's seem fine.

 

Edited for brevity.

 

 

 

Well that's no good :(

 

I'm going to have to start going through all those plugins one by one. I've only tested so far with Legion Tryout and Pregnancy, and have never had an undressing/redressing issue : on NPCs or on the player.

 

One of those I haven't tested must be causing some kind of issue.

Posted

I am contemplating adding "male2" to Sexout to get around that as well.. but I don't like how they are gender specific anyway.

 

For what it's worth, I much prefer the actorA/B/C stuff to the male/female stuff. It just makes more sense, and prevents modders (or users initiating sex through the console) from having to bend their minds around what "male" and "female" really mean in this context. Should anyone start adding femdom stuff to their mod (pegging etc), the female/male business could get pretty hairy. :P

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

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