Jump to content

Recommended Posts

Posted (edited)
1 hour ago, Alis_999 said:

This is not the answer to my question. Thanks for the pointless information.

mod is complex. if you mean "will quest complete if character will become slave-wife" - no it won't be completed.

Edited by Iroha
Posted (edited)
33 minutes ago, Iroha said:

mod is complex. if you mean "will quest complete if character will become slave-wife" - no it won't be completed.

No... Several routes have a SimpleSlavery ending, several routes have a banished ending, so Slave-Wife route endless or i can complete the quest after 1,2,100,etc stages?

P.S.: if i kill Father, quest would be completed, but thats not what i looking for...

Edited by Alis_999
Posted (edited)
22 minutes ago, Alis_999 said:

No... Several routes have a SimpleSlavery ending, several routes have a banished ending, so Slave-Wife route endless or i can complete the quest after 1,2,100,etc stages?

P.S.: if i kill Father, quest would be completed, but thats not what i looking for...

main quest have different outcomes truly, but as far I see (well, not very deep), only one quest stage makes it complete - confronting father about sold mother - and leads to slavery

Edited by Iroha
Posted
2 minutes ago, Iroha said:

main quest have different outsomes truly, but as I see, only one quest stage makes it complete - confronting father about sold mother - and leads to slavery

I know how end other routes... i need to know about Slave-Wife route only... Slave-Wife endless?

Posted (edited)

 

 

On 6/26/2021 at 3:12 PM, Monoman1 said:

 

Thats my booboo. Just do

Set pchsTaskHorse to 1

Monoman1,

I noticed that something wrong with CumSlut starting - fathers forcegreet cumintro package is not executed after blowjob apologies.

 

4 users:

So, workaround for now: download recompiled scripts from my post below.

 

 

maybe, problem in

    Event On_SLS_PlayerSwallowedCum(Form akSource, Bool DidSwallow, Float CumAmount, Float LoadSizeBase, Bool IsCumPotion)

there is more values asked than event can return, besides, I remember that your version of SLS is more.. updated:

details pchsWtApology.psc (v4.1):

Spoiler



State FatherBlowjob
    Event OnBeginState()
        Actor[] SexActors = new Actor[2]
        SexActors[0] = PlayerRef
        SexActors[1] = FatherRef
        TargetMustCum(FatherRef)
        DoSex(SexActors, Partner = FatherRef, akVictim = None, CenterOn = None, AllowBed = true, IsCreature = false, Tags = Fav.GetTagsForSex("blowjob"), SuppressTags = Fav.GetSupTagsForSex("blowjob"))
        
        Fav.ModStat(Msg = "", Favour = 0.0,  Depravity = 1.0, Submission = 0.0, Sender = Self)
        PchsPlayer.MakeFatherSlsAsshole()
    EndEvent
    
    Function TargetOrgasmSuccess()
        pchsPCGaveBlowjob.Mod(1)
        pchsFatherSexTimestamp.SetValue(Utility.GetCurrentGameTime())
        pchsFatherSex.SetValue(1)
        Fav.ApologySuccess()
    EndFunction
    
    Function TargetOrgasmFail()
        Fav.ApologyFail()
        PchsPlayer.IncArousal(FatherRef, 20.0)
    EndFunction
    
    Event On_SLS_PlayerSwallowedCum(Form akSource, Bool DidSwallow, Float CumAmount, Float LoadSizeBase)

        If DidSwallow && akSource == FatherRef
            Fav.ModStat(Msg = "Father is pleased I swallowed his cum", Favour = 1.0,  Depravity = 1.0, Submission = 0.0, Sender = Self)
            If StorageUtil.GetIntValue(None, "pchsWtCumSlutIntro") == 1
                StorageUtil.SetIntValue(None, "pchsWtCumSlutIntro" , 2)
            EndIf
        EndIf
    EndEvent
EndState

 

 

details pchsWtApology.psc (v4.2)

Spoiler



State FatherBlowjob
    Event OnBeginState()
        Actor[] SexActors = new Actor[2]
        SexActors[0] = PlayerRef
        SexActors[1] = FatherRef
        TargetMustCum(FatherRef)
        DoSex(SexActors, Partner = FatherRef, akVictim = None, CenterOn = None, AllowBed = true, IsCreature = false, Tags = Fav.GetTagsForSex("blowjob"), SuppressTags = Fav.GetSupTagsForSex("blowjob"))
        
        Fav.ModStat(Msg = "", Favour = 0.0,  Depravity = 1.0, Submission = 0.0, Sender = Self)
        PchsPlayer.MakeFatherSlsAsshole()
    EndEvent
    
    Function TargetOrgasmSuccess()
        pchsPCGaveBlowjob.Mod(1)
        pchsFatherSexTimestamp.SetValue(Utility.GetCurrentGameTime())
        pchsFatherSex.SetValue(1)
        pchsFatherSexCount.Mod(1)
        Fav.ApologySuccess()
    EndFunction
    
    Function TargetOrgasmFail()
        Fav.ApologyFail()
        PchsPlayer.IncArousal(FatherRef, 20.0)
    EndFunction
    
    Event On_SLS_PlayerSwallowedCum(Form akSource, Bool DidSwallow, Float CumAmount, Float LoadSizeBase, Bool IsCumPotion)
        If DidSwallow && akSource == FatherRef
            Fav.ModStat(Msg = "Father is pleased I swallowed his cum", Favour = 1.0,  Depravity = 1.0, Submission = 0.0, Sender = Self)
            If StorageUtil.GetIntValue(None, "pchsWtCumSlutIntro") == 1
                StorageUtil.SetIntValue(None, "pchsWtCumSlutIntro" , 2)
            EndIf
        EndIf
    EndEvent
EndState

 

I suppose, expression in last IF statement is never True, or never executes

 

Edited by Iroha
Posted (edited)

Sorry if this has previously been asked, but could the hard requirement for LAL be turned into a soft dependancy ?  Maybe the player could trigger the scenario via MCM, I don't think removing the dependancy is doable but you know more :)

(I switched from LAL to Unbound - Reborn a few years ago)

Edited by mangalo
Posted

Agree with mangalo, I too would like to see Wartimes detached from LAL if possible and just have a toggle in the MCM to start the scenario. Other alternate start mods could then be used.

 

I also use Skyrim Unbound Reborn since it has options to turn off word walls and dragon soul absorptions, this means you can't become the Dragonborn. It also still allows your character to buy Breezehome and become Thane of Whiterun if you're not doing the main quest-line, both just require restoring the Gildergreen instead.

 

 

Posted (edited)
1 hour ago, UnEvenSteven said:

 

 

I also use Skyrim Unbound Reborn since it has options to turn off word walls and dragon soul absorptions, this means you can't become the Dragonborn. It also still allows your character to buy Breezehome and become Thane of Whiterun if you're not doing the main quest-line, both just require restoring the Gildergreen instead.

 

 

In Your Shadow gives same ability - just a switch dragonborn or not, so no wall learning and soul absorbtions. About houses - SLS allows to buy houses as I remember no matter dragonborn or not, prices configurable.

 

just for the info

Edited by Iroha
Posted (edited)
3 hours ago, mangalo said:

Sorry if this has previously been asked, but could the hard requirement for LAL be turned into a soft dependancy ?  Maybe the player could trigger the scenario via MCM, I don't think removing the dependancy is doable but you know more :)

(I switched from LAL to Unbound - Reborn a few years ago)

 

1 hour ago, UnEvenSteven said:

Agree with mangalo, I too would like to see Wartimes detached from LAL if possible and just have a toggle in the MCM to start the scenario. Other alternate start mods could then be used.

 

I also use Skyrim Unbound Reborn since it has options to turn off word walls and dragon soul absorptions, this means you can't become the Dragonborn. It also still allows your character to buy Breezehome and become Thane of Whiterun if you're not doing the main quest-line, both just require restoring the Gildergreen instead.

 

 

Surprisingly, it is possible. 

This issue wasn't adding a menu toggle of course. It was the maintaining of the dialogue and interactions with the LAL statue. 

22 hours ago, Iroha said:

Monoman1,

I noticed that something wrong with CumSlut starting - fathers forcegreet cumintro package is not executed after blowjob apologies.

Oops. Yep I added a parameter in my version....

Edited by Monoman1
Posted
3 hours ago, mangalo said:

Sorry if this has previously been asked, but could the hard requirement for LAL be turned into a soft dependancy ?  Maybe the player could trigger the scenario via MCM, I don't think removing the dependancy is doable but you know more :)

(I switched from LAL to Unbound - Reborn a few years ago)

Technically, to remove quest-starter dependancy is very easy - but you will have to go home and start quest yourself (setstage pchsWartimes 100), you can try my edited esp, I'm almost(99%) sure that it will work fine (with 4.2 version).

pchsWartimes.esp

Posted
12 minutes ago, Monoman1 said:

 

Surprisingly, it is possible. 

This issue wasn't adding a menu toggle of course. It was the maintaining of the dialogue and interactions with the LAL statue. 

Oops. Yep I added a parameter in my version....

would like to download it as soon as you will release)

Posted

Is there a SSE version of Wartimes Tweaks v4.2? I have a SSE version of Wartimes but it's really old, v1.1, and I'd love to try out all the additions, tweaks and changes monoman1 has has done. What are the new hard requirements for v4.2 if anyone has or makes a SSE conversion for it so I can prepare ahead of time.

Posted
7 hours ago, lcewolf said:

When the PC is punish there is a way to force your PC to Swallow?

 

I understand when in casual and normal way to remove the tension of father is not forced but when our PC is punish could it be set?

 

I agree with that.

Maybe should force PC‘s mouth to open and force to increase the times of swallowing when apologize.

Posted
25 minutes ago, dayangvvv said:

I agree with that.

Maybe should force PC‘s mouth to open and force to increase the times of swallowing when apologize.

I think its possible with current mmm.... engine. But, you know, cum is limited:)

7 hours ago, lcewolf said:

When the PC is punish there is a way to force your PC to Swallow?

 

I understand when in casual and normal way to remove the tension of father is not forced but when our PC is punish could it be set?

 

These recompiled scripts is just to count (without errors) that PC is swallowed cum (messege box with choices during oral sex OR oral stage with orgasm of partner)

 

Posted
38 minutes ago, Martok73 said:

Is there a SSE version of Wartimes Tweaks v4.2? I have a SSE version of Wartimes but it's really old, v1.1, and I'd love to try out all the additions, tweaks and changes monoman1 has has done. What are the new hard requirements for v4.2 if anyone has or makes a SSE conversion for it so I can prepare ahead of time.

look there for news, somethere in the thread 2-3 pages before SSE convertion was mentioned

Posted
On 6/29/2021 at 1:30 AM, Iroha said:

look there for news, somethere in the thread 2-3 pages before SSE convertion was mentioned

That's the current thread we are in, and I've looked thru all 37 pages of it and have not been able to find a SSE conversion of monoman1's Wartimes Tweaks v4.2 anywhere. That's why I asked if anyone had made a conversion to SSE for it, or if v1.1 was the most recent SSE conversion, cause I already looked and couldn't find one. I know I'm old and half blind but I thought I read each page pretty carefully. Do you have a direct link to an SSE conversion for v4.2? After reading all 37 pages I know that v4.2 is the most recent one for LE, just hoping that there is a conversion for SE.

Posted
12 minutes ago, Martok73 said:

That's the current thread we are in, and I've looked thru all 37 pages of it and have not been able to find a SSE conversion of monoman1's Wartimes Tweaks v4.2 anywhere. That's why I asked if anyone had made a conversion to SSE for it, or if v1.1 was the most recent SSE conversion, cause I already looked and couldn't find one. I know I'm old and half blind but I thought I read each page pretty carefully. Do you have a direct link to an SSE conversion for v4.2? After reading all 37 pages I know that v4.2 is the most recent one for LE, just hoping that there is a conversion for SE.

Nomkaz posted a conversion of 4.2 in the SE thread. 2nd last page.

Posted (edited)

Awesome, thank you, know I just gotta find the SE thread.

 

 

Edit: Found it, downloading it now, gonna try out all your new stuff you added, gonna be awesome I know, thanks again!

Edited by Martok73
Posted

So I haven't used this mod in ages and am confused. I take it pchs is no longer updating it and Monoman1 has been? Correct me if I'm wrong as I would like to download the correct version. I'm also using SE so I'm not sure if I should be using the latest conversion by Nomkaz

Posted (edited)
13 hours ago, RoxDox said:

So I haven't used this mod in ages and am confused. I take it pchs is no longer updating it and Monoman1 has been? Correct me if I'm wrong as I would like to download the correct version. I'm also using SE so I'm not sure if I should be using the latest conversion by Nomkaz

Indeed use this link for the version made by Monoman1

 

It's worth the try.

 

Edited by lcewolf
Posted
17 hours ago, RoxDox said:

So I haven't used this mod in ages and am confused. I take it pchs is no longer updating it and Monoman1 has been? Correct me if I'm wrong as I would like to download the correct version. I'm also using SE so I'm not sure if I should be using the latest conversion by Nomkaz

I've added Nomkaz's conversion to the post 

 

This is all you need to get started. Do not install anything else from the SE page. I don't know what most of the files there actually do or even what version they are.

 

I don't know much about SE so I don't know exactly which of the 'addon' files will be compatible. Scripts should be ok. 

I'd imagine Immersive Fashion tweak and Amputator tweak need to be converted as they have meshes and textures.

SLAC Tweak Tweak - Not sure but it's just an esp.

 

Sorry but you'd need someone more familiar with SE to tell you. No offense but SE people tend to be very quiet unless they want something 

Controversial :O

 

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