DeepBlueFrog Posted January 1, 2023 Author Posted January 1, 2023 On 8/2/2022 at 4:02 AM, Draknowin said: Is there any system for 'corrupting' NPCs? I see the option 'Seduction/Corruption', but there's not a real explanation of how it works/how much is implemented/what it actually DOES. Maybe I'm just being blind, but so far I've only seen it used for 'good' relationship talk. (Out of context this sounds awful to ask about, wow) I have a lot of dialog options lined up.. just need the time to implement them. Many are on the Corruption side. You can already have some corruption effect through sex. Having enough sex with someone flagged as a 'victim' in SexLab will have Dialogues treat them as 'submissive' to you. The reverse is true... if you are the victim too many times with the same NPC, Dialogue will flag you as submissive to them. On 12/28/2022 at 11:11 PM, ETSubmariner said: Trying to figure out an option in the MCM that is greyed out in Quests . . . the Become a Priest option. I am obviously using the SSE conversion, but as those pages just point here for the fullest description, I am left to wonder. Why is that option greyed out? Is it part of the LE version that then was ported to SSE, or never was part of LE, or . . ? Why is it greyed out? What mod am I missing I guess? Yes... that part is not started yet. I have a general idea of the quest stages but I never got to them because I did not finish the Mage Apprentice yet. My plans at the moment is to separate Mage Apprentice and Blacksmith Apprentice from Dialogues and make them standalone, non SexLab mods. Once that is done, I will work on the Priest Apprentice. 1
randomUser2019 Posted January 6, 2023 Posted January 6, 2023 There's a whole bunch of ores added by this mod, but they're all missing their Linked Ref to 'PickaxeMiningFloor' targets. Unless they're meant to be mineable later by quests/dialogue (I haven't gone very far into the mod). I added the Linked Refs in the Creation Kit to the ebony ores in Redbelly Mine (ShorsStoneRedbellyMine) and I can now mine them by pressing E. Thought I'd share.
DeepBlueFrog Posted January 6, 2023 Author Posted January 6, 2023 1 hour ago, randomUser2019 said: There's a whole bunch of ores added by this mod, but they're all missing their Linked Ref to 'PickaxeMiningFloor' targets. Unless they're meant to be mineable later by quests/dialogue (I haven't gone very far into the mod). I added the Linked Refs in the Creation Kit to the ebony ores in Redbelly Mine (ShorsStoneRedbellyMine) and I can now mine them by pressing E. Thought I'd share. Thanks for sharing. I didn't know they had to be linked to that PickaxeMiningFloor. 1
Jyratx Posted February 28, 2023 Posted February 28, 2023 Yeah, so, on exactly what page of your discussion thread is the SSE conversion for this? Seeing as how there's 147 pages and my internet connection is... suboptimal.
DeepBlueFrog Posted February 28, 2023 Author Posted February 28, 2023 3 hours ago, Jyratx said: Yeah, so, on exactly what page of your discussion thread is the SSE conversion for this? Seeing as how there's 147 pages and my internet connection is... suboptimal. All the links are on the first post of that thread. 1
Jyratx Posted March 4, 2023 Posted March 4, 2023 On 2/28/2023 at 7:39 AM, DeepBlueFrog said: All the links are on the first post of that thread. Thanks! I guess I must have missed it when I was scrolling through the first time.
DeepBlueFrog Posted March 30, 2023 Author Posted March 30, 2023 2 minutes ago, xyzxyz said: Is there any sex content in the mage/smith quest? Not really.. I am actually thinking of splitting these quests out of Dialogues and into a SexLab free mod. That will required some serious surgery but I would like to do that before further updates to the Mage quest and developing the Priest quest as well. Unfortunately that will mean at best a reset of these quests for save games that already completed them in Dialogues.
Highborn Posted March 30, 2023 Posted March 30, 2023 1 hour ago, DeepBlueFrog said: Not really.. I am actually thinking of splitting these quests out of Dialogues and into a SexLab free mod. That will required some serious surgery but I would like to do that before further updates to the Mage quest and developing the Priest quest as well. Unfortunately that will mean at best a reset of these quests for save games that already completed them in Dialogues. I've been waiting for the priest quest for ages lol
furel Posted July 10, 2023 Posted July 10, 2023 I have troubles with the potion quest, the dialogue to deliver the potions doesn't appear. I think it's because for some reason the potion is half translated. If the potion is detected by name, the script will not recognize it. Should it be more robust to check by EditID instead of by name?
DeepBlueFrog Posted July 11, 2023 Author Posted July 11, 2023 16 hours ago, furel said: I have troubles with the potion quest, the dialogue to deliver the potions doesn't appear. I think it's because for some reason the potion is half translated. If the potion is detected by name, the script will not recognize it. Should it be more robust to check by EditID instead of by name? Which potion do you mean? I want to be sure before checking my code and answering the question.
furel Posted July 11, 2023 Posted July 11, 2023 2 hours ago, DeepBlueFrog said: Which potion do you mean? I want to be sure before checking my code and answering the question. Sorry, I've seen that it's so common to have problems with that quest that I assumed it would be recognized. I refer to the delivery of the potions to Danica Pure-Spring from the mage quest line. Despite made the potions, the stage of the quest line is not updated from stage 65 to stage 68. I don't have any translation for this mod, in the game the name of the potions is changed (it has to be another mod) and it doesn't recognize it. I even tracked down the code snippet that should do it. File: SLD_JobMagePlayerAlias.pex line 89 Spoiler Event OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) Form fPotionform = RejuvenationPotion as Form ; debug.Notification(" Player receives " + aiItemCount + "x " + akBaseItem + " from the world") if (akBaseItem != None) ; debug.Notification(" Player receives " + akBaseItem.GetName() ) ; debug.Notification(" Is object a rejunevation potion " + akBaseItem.HasKeyword(RejuvenationPotionKeyword)) If ( akBaseItem.GetName() == "Potion of Rejuvenation" ) || ( akBaseItem.GetName() == "Rejuvenation" ) || (fPotionform==akBaseItem) ; akActor.Equipitem(HypnosisCirclet) ; Debug.Notification("Rejuvenation potion crafted.") If (JobMageQuest.GetStageDone(65)==1) && (JobMageQuest.GetStageDone(69)==0) iRejuvenationPotionCount = iRejuvenationPotionCount + aiItemCount if (iRejuvenationPotionCount>=10) JobMageQuest.SetStage(68) endif endif EndIf endif EndEvent I updated the quest line by console command. Once I update the quest to stage 68 the option to Danica appers and I can continue. Before cheating the quest I chek that I had more than 10 potions crafted and recognized by the mod. I'm using the SSE version from the beta-testing post: SexLabDialogues20230410
xyzxyz Posted July 23, 2023 Posted July 23, 2023 (edited) "Hey sexy" is just an option for quick sex or is there more behind it? And why is there a "she resists weakly" message? I thought it's cons sex. Edited July 23, 2023 by xyzxyz
kawaiipd Posted July 29, 2023 Posted July 29, 2023 Is there any way to reset all variables? I didn't realize I was apparently assaulting one of my favorite followers, and now it doesn't work. Uninstalling and reinstalling doesn't clear the variables, and resetting in Sex Lab only resets some. I'd rather not start over. If only I had documentation on this crap. Oh well.
DeepBlueFrog Posted July 30, 2023 Author Posted July 30, 2023 5 hours ago, kawaiipd said: Is there any way to reset all variables? I didn't realize I was apparently assaulting one of my favorite followers, and now it doesn't work. Uninstalling and reinstalling doesn't clear the variables, and resetting in Sex Lab only resets some. I'd rather not start over. If only I had documentation on this crap. Oh well. There is no way to clear the data at the moment but that is a good idea to add to the mod. I will put it at the top of my list of improvements.
kawaiipd Posted August 4, 2023 Posted August 4, 2023 On 7/29/2023 at 10:00 PM, DeepBlueFrog said: There is no way to clear the data at the moment but that is a good idea to add to the mod. I will put it at the top of my list of improvements. You are a gentleman and a scholar.
Dorabella Posted August 12, 2023 Posted August 12, 2023 (edited) I have done the first part of the Wizard ( enchant the dagger and take it to Adrianne Avenicci), now I should talk to Danica for potions but , the dialogue does not appear Edited October 11, 2023 by ?????? 1627
Dez65 Posted February 20, 2024 Posted February 20, 2024 Is anyone else unable to find "Before the Ages of Man" in the Jarls' quarters? I've been through the whole area multiple times without luck. Any clues would be greatly appreciated.
Pendra11 Posted April 16, 2024 Posted April 16, 2024 I've had a look through here and this seems to have been asked before but I cant find an answer, my female PC keeps taking the male place in scenes. Is the a fix for this?
ayyden Posted May 11, 2024 Posted May 11, 2024 I know it's a small issue but this breaks the dialog voice lines for "Lydia - Improved Follower Dialogue", just in case anyone or any google link clickers need to know.
TheRightDoorIsNotTheLeft Posted February 23, 2025 Posted February 23, 2025 Two issue: "Also highly recommended - EZ2C dialogue menu - very useful to improve readability of menus and fix several vanilla issues." -- that has been removed from Nexus. And "Patch for Puppet Master 1.7 (if you want to control an NPC as a slave)" points to an LE page. Are there any AE equivalents?
Nethertale Posted May 3, 2025 Posted May 3, 2025 (edited) What is the purpose of Bloody rag to be washed to clean rag? If bathing it is why *This Mod* adds it? I mean you expect a mod like Bathing in Skyrim, SLS or Naked Defeat have it... Oh and With SLS sleep on ground sys, I don't need the rest anywhere spell so I delete it by help of "Forget Spells" mod but it adds itself on load Aaand it seems I'm on Oldrim page, gotta sens it in SE page too sry Edited May 3, 2025 by Nethertale
alliga Posted August 20, 2025 Posted August 20, 2025 Hi. is there a chance to change the gender of the NPC? or link it to the sekslab gender?
DeepBlueFrog Posted November 30, 2025 Author Posted November 30, 2025 On 8/20/2025 at 8:11 AM, alliga said: Hi. is there a chance to change the gender of the NPC? or link it to the sekslab gender? There is no option to change the gender of NPCs in Dialogues.
xyzxyz Posted December 19, 2025 Posted December 19, 2025 (edited) Is the enslave someone (corruption) dialogue that is shown in the MCM working? I never managed to do it. Edited December 19, 2025 by xyzxyz
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