Jump to content

Devious Devices - Captured Dreams Shop v4.15 - files removed


Recommended Posts

Posted

Hey, so far really great mod but now I encountered a small bug: when I get punished as a manor slave enough times to be sent down to sleep in the basement in the morning Markus doesn't give me any new tasks and i cannot speak with him, he just keep asking how my assingments going. Tried this issceneplaying xx23ea61 mention in an earlier comment but it says scene is not playing.

Ui.: Is there a command to add credits as if I've done tasks because my last save got corrupted because of other mods, and I would like to advance to the phase where I was.

Posted
3 hours ago, asdfa93 said:

Hey, so far really great mod but now I encountered a small bug: when I get punished as a manor slave enough times to be sent down to sleep in the basement in the morning Markus doesn't give me any new tasks and i cannot speak with him, he just keep asking how my assingments going. Tried this issceneplaying xx23ea61 mention in an earlier comment but it says scene is not playing.

Ui.: Is there a command to add credits as if I've done tasks because my last save got corrupted because of other mods, and I would like to advance to the phase where I was.

Likely the end of day never ran and isn't being triggered now due to the punishment.

 

You can adjust your points using the following:    setpqv  cdxslavery_prop_manor manorstatus <x>      <x> is the number of points you want it set to. 30 or more will trigger the ending.

Posted

I found an issue where the original size textures weren't displaying properly so had to download the 2048k ones :frown: I dunno if it was just me though

 

Posted
On 1/29/2018 at 12:01 PM, Antaufein said:

Also when I become a relationship slave and choose belt type, collar type, color, vaginal and anal plugs, I get the belt and collar type of the color I chose, but I always get the tormentor vaginal plug and no anal plug unless I chose no vaginal plug which in this case I get nothing. But whatever else I want, I always get the tormentor and nothing. This is not a major issue as I can take the belt off with the ring and buy whatever plugs I wanted myself though.

So I've looked into it a little bit myself and I think I might have found the issues. In cdxslavery_functions.psc in the function "FitSlavePlugs" starting at line 125 we have:

Function FitSlavePlugs(actor akActor)
	actor target = akactor
	Req_VagplugPref = 9
	Req_AnalPlugPref = 3
	SetCDDevice(playerref, 9, true)
	SetCDDevice(playerref, 10, true)
EndFunction

if we compare it to function "FitSlaveBelt" and "FitSlaveCollar" starting at line 73 and 79:

Function FitSlaveBelt(actor akActor)
	actor target = akactor
	SetCDDevice(target, 1, false)
Endfunction
Function FitSlaveCollar(actor akActor)
	actor target = akactor
	SetCDDevice(target, 2, false)
EndFunction

Those functions call the function "setCDDevice" starting at line 174 in which we can find this part (line 189):

	if UseAlternate == false
		Dev_Material = CDxPref_MatTypePref.getvalueint()			; type of material and finish --- metal - leather - ebonite
		Dev_Color = CDxPref_BeltColor.getvalueint()					; base color
		Dev_BeltType = BeltStylePref.getvalueint()					; belt style
		Dev_CollarType = CollarStyle.getvalueint()					; collar style
		Dev_gagtype = CDxPref_GagStyle.getvalueint()				; gag type
		Dev_SoftColor = CDxPref_SoftColor.getvalueint()				; soft color pref
		Dev_MasterPrefCol = MastersPrefCol.getvalueint()			; master's preference on color
		Dev_MasterPrefFin = MastersPrefFin.getvalueint()			; master's preference on soft finish
		Dev_PlugVagPref = PlugVag.getvalueint()						; vag plug preference
		Dev_PlugAnalPref = PlugAnal.getvalueint()					; anal plug preference
	else
		Dev_Material = Req_Material									; type of material and finish
		Dev_Color = Req_Color										; base color
		Dev_BeltType = Req_BeltType									; belt style
		Dev_CollarType = Req_CollarType								; collar style
		Dev_gagtype = Req_gagtype									; gag type
		Dev_SoftColor = Req_SoftColor								; soft color request
		Dev_MasterPrefCol = Req_MasterPrefCol						; master's preference on color
		Dev_MasterPrefFin = Req_MasterPrefFin						; master's preference on soft finish
		Dev_PlugVagPref = Req_VagplugPref							; vag plug preference
		Dev_PlugAnalPref = Req_AnalPlugPref							; anal plug preference
	endif

Since the plug types are being set in "FitSlavePlugs", I could choose anything and still end up with the same plugs.

If we take a look at function "EquipVagplug" starting at line 474 and "EquipAnalplug" starting at line 505:

Function EquipVagplug(int vpluguse)
		; Little Helpers
	if vpluguse == 2
		libs.equipDevice(TargetActor, framework.CDxPAssassin, framework.CDxPAssassinRend, libs.zad_deviousPlugVaginal)
	elseif vpluguse == 3
		libs.equipDevice(TargetActor, framework.CDxPFighter, framework.CDxPFighterRend, libs.zad_deviousPlugVaginal)
	elseif vpluguse == 4
		libs.equipDevice(TargetActor, framework.CDxPThief, framework.CDxPThiefRend, libs.zad_deviousPlugVaginal)
	elseif vpluguse == 5
		libs.equipDevice(TargetActor, framework.CDxPMage, framework.CDxPMageRend, libs.zad_deviousPlugVaginal)
	; Little Devils
	elseif vpluguse == 6
		libs.equipDevice(TargetActor, framework.CDxPExciter, framework.CDxPExciterRend, libs.zad_deviousPlugVaginal)
	elseif vpluguse == 7
		libs.equipDevice(TargetActor, framework.CDxPFinisher, framework.CDxPFinisherRend, libs.zad_deviousPlugVaginal)
	elseif vpluguse == 8
		libs.equipDevice(TargetActor, framework.CDxPOrgasmo, framework.CDxPOrgasmoRend, libs.zad_deviousPlugVaginal)
	elseif vpluguse == 9
		libs.equipDevice(TargetActor, framework.CDxPTormentor, framework.CDxPTormentorRend, libs.zad_deviousPlugVaginal)
	; standard
	elseif vpluguse == 10
		libs.ManipulateDevice(TargetActor, libs.plugInflatableVag, true, false)
	elseif vpluguse == 11
		libs.ManipulateDevice(TargetActor, libs.plugSoulgemVag, true, false)
	elseif vpluguse == 12
		libs.ManipulateDevice(TargetActor, libs.plugIronVag, true, false)
	elseif vpluguse == 13
		libs.ManipulateDevice(TargetActor, libs.plugPrimitiveVag, true, false)
	endif
endfunction
Function EquipAnalplug(int Apluguse)
	; little devil
	if AnalPlugPref == 2
		libs.equipDevice(TargetActor, framework.CDxPPunisher, framework.CDxPPunisherRend, libs.zad_deviouspluganal)
	elseif AnalPlugPref == 3
		libs.equipDevice(TargetActor, framework.CDxPSpoiler, framework.CDxPSpoilerRend, libs.zad_deviouspluganal)
	elseif AnalPlugPref == 4
		libs.equipDevice(TargetActor, framework.CDxPTeaser, framework.CDxPTeaserRend, libs.zad_deviouspluganal)
	; standard
	elseif AnalPlugPref == 5
		libs.ManipulateDevice(TargetActor, libs.plugInflatablean, true, false)
	elseif AnalPlugPref == 6
		libs.ManipulateDevice(TargetActor, libs.plugSoulgeman, true, false)
	elseif AnalPlugPref == 7
		libs.ManipulateDevice(TargetActor, libs.plugIronan, true, false)
	elseif AnalPlugPref == 8
		libs.ManipulateDevice(TargetActor, libs.plugPrimitivean, true, false)
	Endif
endfunction

That means I should always end up with Tormentor and Spoiler. I do end up with Tormentor but I always get no anal plug. Why is that? EquipVagplug takes vpluguse as an argument which is getting used in the if statement. EquipAnalplug takes Apluguse as an argument but uses AnalPlugPref in the if statement instead. simply changing the function "FitSlavePlugs" to be like "FitSlaveBelt" and "FitSlaveCollar", and using Apluguse instead of AnalPlugPref in the if statement should fix the issue. I tried to do it and test it out myself, but I can't seem to get the compiler working...

Posted

That explains where the random tormentor plug came from, though it wasn't as if I hadn't guessed.

Mine just went in my inventory because CD doesn't remove the existing plug.

I just saw it as a bonus option.

Posted
17 hours ago, Antaufein said:

 


	if UseAlternate == false
		Dev_Material = CDxPref_MatTypePref.getvalueint()			; type of material and finish --- metal - leather - ebonite
		Dev_Color = CDxPref_BeltColor.getvalueint()					; base color
		Dev_BeltType = BeltStylePref.getvalueint()					; belt style
		Dev_CollarType = CollarStyle.getvalueint()					; collar style
		Dev_gagtype = CDxPref_GagStyle.getvalueint()				; gag type
		Dev_SoftColor = CDxPref_SoftColor.getvalueint()				; soft color pref
		Dev_MasterPrefCol = MastersPrefCol.getvalueint()			; master's preference on color
		Dev_MasterPrefFin = MastersPrefFin.getvalueint()			; master's preference on soft finish
		Dev_PlugVagPref = PlugVag.getvalueint()						; vag plug preference
		Dev_PlugAnalPref = PlugAnal.getvalueint()					; anal plug preference
	else
		Dev_Material = Req_Material									; type of material and finish
		Dev_Color = Req_Color										; base color
		Dev_BeltType = Req_BeltType									; belt style
		Dev_CollarType = Req_CollarType								; collar style
		Dev_gagtype = Req_gagtype									; gag type
		Dev_SoftColor = Req_SoftColor								; soft color request
		Dev_MasterPrefCol = Req_MasterPrefCol						; master's preference on color
		Dev_MasterPrefFin = Req_MasterPrefFin						; master's preference on soft finish
		Dev_PlugVagPref = Req_VagplugPref							; vag plug preference
		Dev_PlugAnalPref = Req_AnalPlugPref							; anal plug preference
	endif

This section of code varies between the Quest devices and standard devices in how the values are translated from the MCM menui preferences (Dev_<item> variables) to the other variables. The section of code for the plugs originally came from the standard devices but it looks like I did not adjust the variables for the anal plugs when I copied it into the Quest Device section.

 

Posted

i'm just wondering;

are you still developing/improving your mods or just providing support for them.

 

i'd love to see the relationship slave get fleshed out a bit more among other things...

Posted

Yes, how's the update comming? 

I'm fairly sure I speak for everyone here in saying not to worry about DD4 compatibility, and to concentrate instead on continuing the storyline and address the little hiccups now present. 

Posted

Update is slow going, combination of setting up the running of the day for Manor Slave (start of day, turning in quests, end of day and the handling of either being late, not reporting in before the start of the next day as well as handling of multi-day assignments) as there is a lot of different things to track and having the dialogue be robust enough to handle it without breaking down as it sometimes does now. Other part is my bi-polar has not been very cooperative and there are no medications I can take for it as they all cause major issues (going to see a gastroenterologist next week because of liver issues caused by the last one I took).

 

I'm frustrated by it, especially when I feel like I am ready to get to working on it and I open the CK and my mood goes sour and I don't even want to look at it. I play some games (Skyrim, FO4 and Alien Isolation) but half the time I am just on auto pilot and playing just to do something. There are times I can't even do that or watch anime, read manga or a book and about the only thing I can do is sit, close my eyes and listen to music. I wish I could work on it like I used to some time ago when I would work on it from when I got up to when I went to bed, I enjoyed it and was enthusiastic about doing more. I still want to do more but the enthusiasm and joy have been lacking in modding and a lot of other things.

 

As it sits now, I have Manor Slave to finish up, scripting on it is minor, mostly tracking of variables throughout the day. Dialogue need adjusted to match the scripting, most of that is in place. I had built a system but after looking at it closer and working on getting dialogue to match it I found it would not be capable of doing what I needed it to do so I had to scrap it, what I have planned out will replace it. 1 of the 2 new quests is completed and tested other than the Manor Slave hookup (can be done in Manor Slave and outside of it as a normal job), the 2nd new quest is similar but I have not done any of the ending and testing though it is fairly simple overall, a variation of the delivery quest but no bandits. The other 2 things I need to make are new versions of the encounters with Ariasha and Rayani, both of which are fairly simple. If I could have a good day mentally I could probably build most of it, at least get it all to the point of initial testing. I also have about a page worth of things in notepad of fixes that need done, most all are minor and half of them have not been noticed by people other than me simply because I know it so well and know that what is going on is not what should be going on or is being missed. As I said, minor stuff.

 

Maybe I will be able to relax more once I get a (hopefully and likely positive) ruling on my disability but I have probably another 2 months before I hear anything on that.

Posted

Sorry to hear that. Sometimes stress + writer's block hit at the same time and there is nothing that can be done about it. So relax for a while and come back to it when you're out of your slump ;)

 

The mod as is is still a lot of fun. Just got done with the Thalmor Embassy Questline:

Spoiler

After spending several days of being sexually abused by a bunch of snooty, vulgar Thalmor I got "rewarded" with a clit piercing and a locked on chastity harness. Lol, the Master is such an evil bitch.

 

Oddly enough the harness hasn't interfered with my character's ability to have sex, with the exception of stopping her from masturbating. Though between the vibrating piercing and the loss of control option from DCL not being able to masturbate alone still looks like its driving her nuts :tongue:

 

Posted
44 minutes ago, MrEsturk said:

Sorry to hear that. Sometimes stress + writer's block hit at the same time and there is nothing that can be done about it. So relax for a while and come back to it when you're out of your slump ;)

 

The mod as is is still a lot of fun. Just got done with the Thalmor Embassy Questline:

  Reveal hidden contents

 

Bi-Polar is the killer for me and tends to trigger the depression which saps any energy from me. On occasion I have been able to take a bit of spark of energy and use some music to get things going and listen to it while I work. I can get a few hours that way (maybe) if I have the right music going, sometimes it is a matter of finding it (I have just over 37,000 songs in my music library).

 

Harness should have been removed but it should be a standard device as I believe I changed all of the devices used in that quest to standard ones.

Posted
4 hours ago, Veladarius said:

Bi-Polar is the killer for me and tends to trigger the depression which saps any energy from me. On occasion I have been able to take a bit of spark of energy and use some music to get things going and listen to it while I work. I can get a few hours that way (maybe) if I have the right music going, sometimes it is a matter of finding it (I have just over 37,000 songs in my music library).

 

Harness should have been removed but it should be a standard device as I believe I changed all of the devices used in that quest to standard ones.

Odd, she took it off then placed it right back on. I just assumed it was part of the questline, being all the Thalmor guests kept babbling my girl was going to be spending time locked in a belt for a while when she got back. It is just a standard harness though, so I'll be breaking my character out of it soon enough.

 

UPDATE: The restoration teacher at the College of Winterhold was kind enough to remove the harness for me. Now if only she had also unlocked the handcuffs the asshole other college apprentices locked me in after they raped me :confounded:.... 

Posted

sad that the personal issues continue, but none of us want to force you through your projects.

we can only hope that things will get better for you soon, but i'm glad you're not willing to just give up on your creations.

i can't help you with anything from my side, but i will wish you good health and good luck in overcoming your Bi-Polar 

Posted
4 hours ago, Nightmyste said:

sad that the personal issues continue, but none of us want to force you through your projects.

we can only hope that things will get better for you soon, but i'm glad you're not willing to just give up on your creations.

i can't help you with anything from my side, but i will wish you good health and good luck in overcoming your Bi-Polar 

Every day I hope to be able to do something even if it is a half hour, what ever I can do to take even a tiny step forward. I'm likely stuck with the bi-polar for life now I just have to learn to live with it. I am very conscious of my moods and such, the lawyer who represented me at my disability hearing was impressed with how well I could articulate my problems and their affects on my daily life. If I can learn to manipulate it better it will make things easier. I learned a long time ago that music can influence the brain quite a bit and have used it in some situations to get me into a particular mental state. In my case it was using speed metal to increase how fast I could get my brain to go and it worked the times I have used it.

Posted
1 hour ago, Higurashika said:

How and when i can buy toys for my home?

Once you are married. You need to activate Chaste Spouse and determine which of you is the master and is the slave (If you are even slightly sub you will be the slave, undecided will be random, slightly dom or more you will be the master). Have the discussion with your spouse and it will set it up so you can purchase them and custom device sets. To place furniture you will be given a ring that opens the menu for placing, moving and packing furniture. You will also need to take your spouse to the home you wish to use and tell them this is your 'play house' and you can start placing items. If you are the Master you can enter the furniture (on accident or otherwise) but will back out of it. There will also be an option that, if your spouse seems to forget you were bound will free you.

Posted
19 minutes ago, Veladarius said:

Once you are married. You need to activate Chaste Spouse and determine which of you is the master and is the slave (If you are even slightly sub you will be the slave, undecided will be random, slightly dom or more you will be the master). Have the discussion with your spouse and it will set it up so you can purchase them and custom device sets. To place furniture you will be given a ring that opens the menu for placing, moving and packing furniture. You will also need to take your spouse to the home you wish to use and tell them this is your 'play house' and you can start placing items. If you are the Master you can enter the furniture (on accident or otherwise) but will back out of it. There will also be an option that, if your spouse seems to forget you were bound will free you.

Thank you) I got it as i should use mcm to turn this on? Not through CD quest?

Posted
6 hours ago, Black Justicar said:

Bug report:

For some reason in "Free trial" quest the belt and plugs are not equipping. Another items are fine.

Not sure why it won't equip them, they are the same as the devices used in the other quests. Does it go all the way through the scenes or stop?

either way, post a log so I can check it out.

Posted
2 hours ago, Higurashika said:

I dont understand 2 things:

1. Where is my set which i bought for spouse playing?

2. I bought all devices but work only Bind Chest.

To apply devices you need to speak with them and tell them you are putting them on them, they don't show up in your inventory.

 

When you use the ring, it should give you the option to place devices and each needs placed individually. If you purchased the item and it is not showing in the menu of items that can be placed see if it allows you to purchase it again. If that does not work let me know what items you purchased and I will look up what variables need checked.

Posted
1 hour ago, Veladarius said:

To apply devices you need to speak with them and tell them you are putting them on them, they don't show up in your inventory.

But i want to put devices on myself =/ Or they are for slave-spouse only?

 

1 hour ago, Veladarius said:

When you use the ring, it should give you the option to place devices and each needs placed individually. If you purchased the item and it is not showing in the menu of items that can be placed see if it allows you to purchase it again. If that does not work let me know what items you purchased and I will look up what variables need checked.

Yeah. I placed all furniture. But i just fall on floor when trying to use it.

Posted
1 hour ago, Higurashika said:

But i want to put devices on myself =/ Or they are for slave-spouse only?

 

Yeah. I placed all furniture. But i just fall on floor when trying to use it.

Those devices are for whomever is the slave to wear. If you are the slave try talking back to them when they tell you to do something, you earn demerits and the more you have the more she puts on (standard device types).

 

If you can't use them you may be the master in the relationship, if so they are made not to lock you up.

Posted

I have a suggestion: remove the chastity belt from the "Customer Assist 02" miniquest. The belt kept glitching out the customer's attempts to have sex with my character and it just seems silly that they would lock a belt on you only to strip it right back off for sex only a few moments later anyways.

Posted
On 25/02/2018 at 5:45 PM, Veladarius said:

I am guessing you are using v4.05? If so you need the v4.051 update which fixes the string tables.

 

As for the dialogue cutting out it is an issue in the older versions, newer versions have walkaway dialogue that is set up to restart it. One of the issues you may be having is that something is interrupting the scene / dialogue and trying to run its own thing (typically another mod). I believe the spot is where you are to be fitted with a chaste life belt? It is one of the areas that is prone to this unfortunately. It is supposed to start a scene, if it has not already done so you can try disabling your controls and see if it runs or not.

thanks for the response ive updated to the latest version and seems much better now 

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

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