Jump to content

Player Slave Encounters (Updated Oct 18)


Recommended Posts

Yes it is. are familiar with the CSE? In several scripts (can't remember which ones) comment out the lines that look something like

 

if isthirdperson == 0

   togglefirstperson 0

endif

 

It has a few issues switching anims while in first, but just for the walking. Nothing game breaking. It's also nice if you notice you seem to move slower than your master, while in 1st person cuffed walk is a bit faster and will allow you to keep up. I would share my version, but it's modified for my LO and requires OCR.

 

Sorry, but no, I will not load up the regular to make the changes. (I've also made other changes to mine and can't remember what they are) 

 

Link to comment

I made the mistake of installing the game in my C drive so I can't really get it to work without reinstalling all my mods elsewhere which would take several hours at the least. Or maybe not. My knowledge of Wrye Bash isn't to great. Either way I don't have enough space on my computer to warrant the move so it's kinda moot. I found a bit of a workaround to the first person however so it should be fine.

 

Though now I have another issue. The animations are all wrong, and the characters are facing completely different directions in different positions. I've had it before and usually it's the ini files or something. I think PKE might have done something to it but I'm not really sure. I went back and tried reinstalling every ini and idleanimation mesh manually but nothing. I'm fairly certain it's not my load order I went over the example list thoroughly and no results. Also I'm getting the white hand issue while enslaved and I have no clue where the answer to fixing this was. I assume it's something to do with the arm chain mesh but that's about as far as I can get with my limited knowledge.

 

Dunno what I can do at this point. My guess is that it's running wrong with PK extender as I just installed it.

Link to comment

So after disabling all my lovers mods I started a new game and installed most everything back. Most issues are fixed however. My only problem now is the white hands behind my back when my character is enslaved. Any advice? I know I've seen this problem mentioned before but I can't find the solution anywhere it seems. I think what's happening is the texture isn't covering the mesh right but I have no clue where to go from there. Any clues would be appreciated.

Link to comment
  • 2 weeks later...

My character just had a visit by the perverted burglar. Burglar is gone, but the shackles are still on. I had the setting on easy, but despite waiting for days, the stuff is still on. Is there a console code to end slavery? She's standing around in her hotel room rather uselessly...

 

Edited to add: she eventually got out, but it took quite a number of days with no one around....

Link to comment

Do I need to download all those fixes or is the latest version sufficient?

 

Latest + resources.

My character just had a visit by the perverted burglar. Burglar is gone, but the shackles are still on. I had the setting on easy, but despite waiting for days, the stuff is still on. Is there a console code to end slavery? She's standing around in her hotel room rather uselessly...

 

Edited to add: she eventually got out, but it took quite a number of days with no one around....

 

If you're fortunate, somebody with a high enough responsibility can come along and free you...but upstairs in a hotel...rough...lol.

Link to comment

 

 

If you're fortunate, somebody with a high enough responsibility can come along and free you...but upstairs in a hotel...rough...lol.

 

 

Precisely. Which is why I'd still be interested in a potential console command, just in case it happens again...

Link to comment

 

 

 

If you're fortunate, somebody with a high enough responsibility can come along and free you...but upstairs in a hotel...rough...lol.

 

 

Precisely. Which is why I'd still be interested in a potential console command, just in case it happens again...

 

 

To get a lockpick using the console: Player.additem a 1

Link to comment

Does the burglar pervert steal all the items or only some? When I found (using the tlc because sack is inside the bed) the sack there were like every item there.

///Edit:

I checked the forts and caves where the burglar leaves your stolen items. The burglar takes small portion of your items and scatters them across those forts and caves. The rest of your items are in that sack that appears when burglar enslaves and tie you up (same location where you get tied up). The sack may be inaccessible under the bed so you may need to type tlc (toggle collision off) to get access to that bag.

Edited by Nepro
Link to comment

 

 

 

 

If you're fortunate, somebody with a high enough responsibility can come along and free you...but upstairs in a hotel...rough...lol.

 

 

Precisely. Which is why I'd still be interested in a potential console command, just in case it happens again...

 

 

To get a lockpick using the console: Player.additem a 1

 

 

If your willpower is still above zero, there's a chance you'll find a lockpick...so it depends how much one wants out.

Link to comment

Nepro> The burglar takes small portion of your items and scatters them across those forts and caves.

 

i'd say - every time only one chest is choosen (looking into my version, based on v0.692, Siskin's fix):

 

scn IchRoughStreets
...
    Set RandomChest to GetRandomPercent
    If RandomChest <= 10
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest1
    ElseIf RandomChest <= 20
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest2
    ElseIf RandomChest <= 30
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest3
    ElseIf RandomChest <= 40
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest4
    ElseIf RandomChest <= 50
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest5
    ElseIf RandomChest <= 60
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest6
    ElseIf RandomChest <= 70
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest7
    ElseIf RandomChest <= 80
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest8
    ElseIf RandomChest <= 90
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest9
    Else
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest10
    EndIf
.....

scn IchPlayerSlaveQuestScript
...........
If IchSQ02RoughStreets.Rapist == 1
    ItemRef.RemoveMeIR BurglarChestRef
Else
    ItemRef.RemoveMeIR OwnerRef
EndIf
.........

Your impression of scattering may be explained if there were more than couple burglar events in your game before you went to inspect those chests.

Link to comment

 

Nepro> The burglar takes small portion of your items and scatters them across those forts and caves.

 

i'd say - every time only one chest is choosen (looking into my version, based on v0.692, Siskin's fix):

 

scn IchRoughStreets
...
    Set RandomChest to GetRandomPercent
    If RandomChest <= 10
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest1
    ElseIf RandomChest <= 20
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest2
    ElseIf RandomChest <= 30
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest3
    ElseIf RandomChest <= 40
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest4
    ElseIf RandomChest <= 50
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest5
    ElseIf RandomChest <= 60
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest6
    ElseIf RandomChest <= 70
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest7
    ElseIf RandomChest <= 80
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest8
    ElseIf RandomChest <= 90
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest9
    Else
        Set IchSlaveQuest.BurglarChestRef to IchBurglarChest10
    EndIf
.....

scn IchPlayerSlaveQuestScript
...........
If IchSQ02RoughStreets.Rapist == 1
    ItemRef.RemoveMeIR BurglarChestRef
Else
    ItemRef.RemoveMeIR OwnerRef
EndIf
.........

Your impression of scattering may be explained if there were more than couple burglar events in your game before you went to inspect those chests.

 

 

I use the latest V0.694. I had to save when I get ambushed and quit the game and load the save because I use see you sleep option from Oblivion Reloaded.

 

Link to comment
  • 4 weeks later...

Is it somehow possible to install both this mod and chain beasts without breaking either mod? 

They both are my favorite mods, but it is said they both clash horribly. 

 

Both use getting knocked over as triggers. Not workable. However, Lovers Blackmail, Lovers Bitch and LoversRaperS (Wappy1) all mesh with PSE nicely.

Link to comment

Very nicely in fact. If you get enslaved for breaking the law, the guards will use the kovak teleporters from blackmail. I broke the law in bravil once and ended up being used by the citizens of cheydinhal.

Link to comment

 

Is it somehow possible to install both this mod and chain beasts without breaking either mod? 

They both are my favorite mods, but it is said they both clash horribly. 

 

Both use getting knocked over as triggers. Not workable. However, Lovers Blackmail, Lovers Bitch and LoversRaperS (Wappy1) all mesh with PSE nicely.

 

 

And if I use the PSE settings spell to turn slavery off, can I use chain beasts then? Then when I'm done with chain beasts, disable the esp and use PSE again? I'd be fine with switching in between the mods, disabling one, then using the other.

Link to comment
  • 1 month later...

@WaywardJack..

(AFAIR! i tried this quest only once, quite long time ago)

When you become able to leave your "room" (N*fucks, then submissive answer to Mistress), go to the ground floor and then to the basement; meet there the Orc and behave friendly with him - he'll promise to defend you (he'll also give you lockpicks, to get access to your inv.sack, in the other room of the basement); then one or two mistress' guards will arrive in the basement (or they must be lured there?), and the Orc should defeat them (you could heal him and give him their weapons and armor to improve his abilities); next step - you and he go upstairs and kill other guards, and the Mistress too (some other girls could be involved in fight and die). As usually, if some quest stages will not progress properly, you should keep some earlier saves and try them again. Boring.
 
Link to comment

I've been following this mod since its very first release and have tried using it off and on over the past few years, I absolutely love the concept and the helpless animations of My character becoming enslaved, however, after she has become enslaved when ever an NPC starts a conversation or a quest window pops up it does not let Me click anything to proceed. This not 'freeze' the game as everything in the background is still moving around, it just makes it unable for Me to click anything to continue, which forces Me to crash the game with no  progression of any kind. I was able to get through the first phase of Sibling Rivalry after three tried, however during the second part where Mishrak enslaves My character, the same issue appears not allowing Me to click anything for the game proceed.

This same issue appears from random enslavements as well as the perverted burgler, however I was unable to take screen shots of each time it has occurred.

 

Here are some screen shot examples of the above mentioned as well as one for Rough Justice ...sadly these are all I got

 

 

post-16807-0-96112000-1497963733_thumb.jpg post-16807-0-68375400-1497964088_thumb.jpg post-16807-0-95230200-1497964195_thumb.jpg post-16807-0-95986700-1497964221_thumb.jpg

 

 

 

This is My current Load Order :  (I was thinking of putting Blackmail back in but I forget where in My Load Order it should go and My character isn't even the 'Hero of Kvatch' yet, heh.

 

 

 

 

Oblivion.esm
DibellasWatch.esm
TR_OoT_Main.esm
Beautiful Peaople 2ch_ed.esm (My verion)
Lovers with PK.esm (LAPF)
TamagoClub.esm
HiyokoClub.esm
LoversCreature.esm
CustomSpellIcons.esm
YoungerNPCs.esp
Unofficial Oblivion Patch.esp
DLCShiveringIsles.esp
Oblivion Vwalk OUS.esp
DLCShiveringIsles Vwalk OUS.esp
DLCShiveringIsles Vwalk DG_DS OUS.esp
TigerpawsWater.esp
Arena_Ring_V2.esp
Bookofthedead.esp
FlyingCameraMod.esp
PrivateQuarters-SE.esp
SummonChest_v2.1.esp
VipCxj_AirSystem.esp
C&C - The Blackwood Company
DarNified UI Config Addon.esp
kuerteeCleanUp.esp
DLCVileLair.esp
DistantDeepscorn.esp
DLCSpellTomes.esp
MaleBodyReplacerV5.esp
DskRings.esp
HGEC B-cup DBA.esp
FemaleImperialDragonCuirass.esp
VA_FemmeDaedricHelmet.esp
StockClothingArmorBBBHGEC_ECUP_LBotPNN.esp
Ladys All.esp (My Special One)
SylvanasArmorVariations.esp
LivelyCities.esp
DLCThievesDen.esp
DLCThievesDen Vwalk.esp
CurseOfHircine.esp
CoH Werewolves Mixed.esp
CoH Spawn Rates Increased.esp
CoH Unarmored.esp
Benirus Manor Sanctuary for the Dark Brotherhood.esp
Cloud Ruler Temple Room.esp
Darkbrotherhood.esp
DibellasWatchAdditions.esp
Kvatch Rebuilt.esp
Kvatch Rebuilt - No More Burned Ground.esp
MFP-KvatchGuards.esp
Kvatch Rebuilt Vwalk.esp
LL Nudes.esp
ardah.esp
Secret Sanctuary v1.esp (My Special Version - No slaveslut)
TheForgottenRealm.esp
PTMudwater.esp
Forgotten Realm PTMudwater Patch.esp
The Necromancers start V1.0.esp
TR_Stirk.esp
Stirk_Compatibility_Patch.esp
DangerSenseV0-3R.esp
DLCFrostcrag.esp
The Wizard's Tower Recall.esp
DLCFrostcrag Vwalk.esp
Knights.esp
Knights_fem.esp
Knights Vwalk.esp
MoreSuburbLife.esp
ElsweyrAnequina.esp
ElsweyrAnequinaNoSpidersPatch.esp
Feldscar.esp
Armored Skeletons (LL).esp
more books teach.esp
More Training-1908.esp
moveablebodies.esp
RMDailyIncomeV2.esp
Areala.esp
TamagoNews.esp
TamagoTopic.esp
LoversTamagoClub.esp
TamagoDischarge.esp
TamagoFertilityClinic.esp
HiyokoFutureDream.esp
HiyokoUtilitySpells.esp
HiyokoQuestTarget.esp
HiyokoGenerator.esp
HiyokoGeneratorBroodMother.esp
TamagoSetBody.esp
LoversAdultPlayPlusforSSP.esp
LoversVoiceSSPplus.esp
LoversRaperS.esp (Wappyone)
LoversJobourg.esp
LoversJobourg NoDelay.esp
LoversPayBandit.esp
Lovers with PK.esp
LoversBitch.esp  (LBGW)
LoversCreature.esp
LoversSoundCreature.esp
LoversSpermSplashEx.esp
LoversEscapeRapeVPlayer.esp
LoversRapeSlave.esp 
LoversMagic.esp  (V67)
LoversSlaveTrader.esp
LSTBravilUnderground.esp
LSTaddonoutH.esp
LBPMill.esp
LoversHooker.esp
LoversAdultPlayPlusforSSP_HookerPatch.esp
LoversStripper.esp
GalerionTrueUnarmored-v20.esp
Unlimited Amulets 1.0.esp
Unlimited Rings 1.0.esp
Ayleid Wells.esp
Quest Award Leveling.esp
Quest Award Leveling SI.esp
GalerionUnarmoredAcrobatics.esp
MadCompanionshipSpells.esp
MCS extension.esp
Mark & Recall.esp
SixthSense.esp
SetBody.esp
Black Worm Necromanctic Spells.esp
Enchantment-and-Spellmaking-Unlocker-Unbalanced.esp
Deadlier Sneaking 1.1.esp
Deadlier Traps.esp
More Arrows Revcovered-2169.esp
MissingSpells.esp
werewolf faction.esp
Toaster's Legendary Mastery.esp
Toaster's Legendary Skills & Stats.esp
Moonshadow Elves-Sc.esp
Sin'Dorei v0.01.esp  (My Blood Elf Race Mod - WIP)
SMTXSatyr (HGEC + Guts).esp (Specially tailored for Me)
SpiderRace (No Wings).esp
_Ren_BeautyPack_full.esp
DremoraFemales.esp
khajiittextfix.esp
cidnothump.esp (For CoH)
No More Annoying Comments.esp
No persistant enchantment glow.esp
No More Gatestorm on Oblivion gates-9645.esp
Detect Life Shader [New].esp
kuerteeDetectLifeEyeEffect.esp
kuerteeNightEyeShader.esp
LoversMB2.esp
Lovers3dorgasmMB2.esp
LoversIdleAnimsPriority.esp
Lovers3dorgasm.esp
LoversAnimObjectsPriority.esp

 

 

 

 

 

 Sorry, proper Load Order I have is:

 

 

 

Oblivion.esm
DibellasWatch.esm
TR_OoT_Main.esm
Beautiful Peaople 2ch_ed.esm (My verion)
Lovers with PK.esm (LAPF)
TamagoClub.esm
HiyokoClub.esm
LoversCreature.esm
CustomSpellIcons.esm
YoungerNPCs.esp
Unofficial Oblivion Patch.esp
DLCShiveringIsles.esp
Oblivion Vwalk OUS.esp
DLCShiveringIsles Vwalk OUS.esp
DLCShiveringIsles Vwalk DG_DS OUS.esp
TigerpawsWater.esp
Arena_Ring_V2.esp
Bookofthedead.esp
FlyingCameraMod.esp
PrivateQuarters-SE.esp
SummonChest_v2.1.esp
VipCxj_AirSystem.esp
C&C - The Blackwood Company
DarNified UI Config Addon.esp
kuerteeCleanUp.esp
DLCVileLair.esp
DistantDeepscorn.esp
DLCSpellTomes.esp
MaleBodyReplacerV5.esp
DskRings.esp
HGEC B-cup DBA.esp
FemaleImperialDragonCuirass.esp
VA_FemmeDaedricHelmet.esp
StockClothingArmorBBBHGEC_ECUP_LBotPNN.esp
Ladys All.esp (My Special One)
SylvanasArmorVariations.esp
FeDildo.esp
LivelyCities.esp
DLCThievesDen.esp
DLCThievesDen Vwalk.esp
CurseOfHircine.esp
CoH Werewolves Mixed.esp
CoH Spawn Rates Increased.esp
CoH Unarmored.esp
Benirus Manor Sanctuary for the Dark Brotherhood.esp
Cloud Ruler Temple Room.esp
Darkbrotherhood.esp
DibellasWatchAdditions.esp
Kvatch Rebuilt.esp
Kvatch Rebuilt - No More Burned Ground.esp
MFP-KvatchGuards.esp
Kvatch Rebuilt Vwalk.esp
LL Nudes.esp
ardah.esp
Secret Sanctuary v1.esp (My Special Version - No slaveslut)
TheForgottenRealm.esp
PTMudwater.esp
Forgotten Realm PTMudwater Patch.esp
The Necromancers start V1.0.esp
TR_Stirk.esp
Stirk_Compatibility_Patch.esp
DangerSenseV0-3R.esp
DLCFrostcrag.esp
The Wizard's Tower Recall.esp
DLCFrostcrag Vwalk.esp
Knights.esp
Knights_fem.esp
Knights Vwalk.esp
MoreSuburbLife.esp
ElsweyrAnequina.esp
ElsweyrAnequinaNoSpidersPatch.esp
Feldscar.esp
Armored Skeletons (LL).esp
more books teach.esp
More Training-1908.esp
moveablebodies.esp
RMDailyIncomeV2.esp
xulBrenaRiverRavine.esp
Areala.esp
TamagoNews.esp
TamagoTopic.esp
LoversTamagoClub.esp
TamagoDischarge.esp
TamagoFertilityClinic.esp
HiyokoFutureDream.esp
HiyokoUtilitySpells.esp
HiyokoQuestTarget.esp
HiyokoGenerator.esp
HiyokoGeneratorBroodMother.esp
TamagoSetBody.esp
LoversAdultPlayPlusforSSP.esp
LoversVoiceSSPplus.esp
LoversRaperS.esp (Wappyone)
LoversJobourg.esp
LoversJobourg NoDelay.esp
LoversPayBandit.esp
Lovers with PK.esp
LoversBitch.esp  (LBGW)
LoversCreature.esp
LoversSoundCreature.esp
LoversSpermSplashEx.esp
LoversEscapeRapeVPlayer.esp
LoversRapeSlave.esp 
LoversMagic.esp  (V67)
LoversSlaveTrader.esp
LSTBravilUnderground.esp
LSTaddonoutH.esp
LBPMill.esp
LoversHooker.esp
LoversAdultPlayPlusforSSP_HookerPatch.esp
LoversStripper.esp
GalerionTrueUnarmored-v20.esp
Unlimited Amulets 1.0.esp
Unlimited Rings 1.0.esp
Ayleid Wells.esp
Quest Award Leveling.esp
Quest Award Leveling SI.esp
GalerionUnarmoredAcrobatics.esp
MadCompanionshipSpells.esp
MCS extension.esp
Mark & Recall.esp
SixthSense.esp
SetBody.esp
Black Worm Necromanctic Spells.esp
Enchantment-and-Spellmaking-Unlocker-Unbalanced.esp
Deadlier Sneaking 1.1.esp
Deadlier Traps.esp
More Arrows Revcovered-2169.esp
MissingSpells.esp
werewolf faction.esp
Toaster's Legendary Mastery.esp
Toaster's Legendary Skills & Stats.esp
Moonshadow Elves-Sc.esp
Sin'Dorei v0.01.esp  (My Blood Elf Race Mod - WIP)
SMTXSatyr (HGEC + Guts).esp (Specially tailored for Me)
SpiderRace (No Wings).esp
_Ren_BeautyPack_full.esp
DremoraFemales.esp
khajiittextfix.esp
cidnothump.esp (For CoH)
No More Annoying Comments.esp
No persistant enchantment glow.esp
No More Gatestorm on Oblivion gates-9645.esp
Detect Life Shader [New].esp
kuerteeDetectLifeEyeEffect.esp
kuerteeNightEyeShader.esp
LoversMB2.esp
Lovers3dorgasmMB2.esp
LoversIdleAnimsPriority.esp
Lovers3dorgasm.esp
LoversAnimObjectsPriority.esp
 

 

Any help with this issue would be greatly appreciated, thanx!

 

~ Vexy \m/

Link to comment

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use