timothyk1 Posted April 29, 2022 Posted April 29, 2022 On 3/13/2022 at 1:17 PM, safado said: You have a typo in the folder name. You have it as "script" instead of "scripts". ooopsy ? hi the link for bathing ver 3.3 tweak scripts doesn't work
safado Posted April 29, 2022 Posted April 29, 2022 14 minutes ago, timothyk1 said: hi the link for bathing ver 3.3 tweak scripts doesn't work Go to original quoted post, before mine. He re-uploaded it, and the original reference broke.
caqa Posted April 30, 2022 Posted April 30, 2022 (edited) The SE version of Bathing in Skyrim has a patch to change water detection to a function provided by https://www.nexusmods.com/skyrimspecialedition/mods/22854 That removes the need to give all water the "dangerous" flag, so you get to keep all splash vfx. No idea why the author decided to release the patch on Dropbox, but there it is https://www.dropbox.com/s/kxx1msy49js71s7/Bathing in Skyrim SE 1.43 Haz Improved Water Detection.7z?dl=0 This script attempt to combine Monoman's tweaks with the water detection patch. So far it works fine for me. mzinBatheQuest.psc mzinBatheQuest.pex Edit: Just saw someone else already posted similar scripts a month ago. Ah well.... could have saved myself some work. Edited April 30, 2022 by caqa 2
H Bof Posted May 15, 2022 Posted May 15, 2022 I've been having an issue for a while where the YPS tweak won't apply any sort of makeup to the face. I'm also using SLS and neither of them will update or add face overlays, but everything else like hair and nails works perfectly fine. I know that the textures are installed correctly because I can apply them manually from slave tats and I also noticed that makeup will apply just fine on a new save before selecting an alternate start while I'm in the cell, but as soon as I sleep after choosing a start it stops working. Anyone encounter this issue or have any suggestions on what might be going wrong?
DrunkPancake Posted May 27, 2022 Posted May 27, 2022 Is the Aroused Nips patch compatible with Skyrim SE?
mort65 Posted June 20, 2022 Posted June 20, 2022 (edited) I want to recompile the mzinBatheQuest.psc script with water fix to add support for SLACS to it but it doesn't compile. I installed Frostfal, Campfire, Equipment overhaul, SKYUI SDK, fade tattoo, CheskoPapyrusShared and extract their scripts but the compiler still gives these errors: mzinBatheQuest.psc F:\Games\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(411,33): AddInputOption is not a function or does not exist F:\Games\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(411,4): type mismatch while assigning to a int (cast missing or types unrelated). I only want to add this to ShowerActor and BathActor functions. Quest SLACS ; If Init.IsSexlabInstalled SexlabInt.SlClearCum(DirtyActor) EndIf If ((SLACS as Quest) as Bool) != True SLACS = Game.GetFormFromFile(0x00005557, "SLACS.esp") As Quest EndIf If ((SLACS as Quest) as Bool) SLACS_library SLACSLib = SLACS As SLACS_library SLACSLib.ClearCum(DirtyActor) EndIf ; Edited June 20, 2022 by mort65
Monoman1 Posted June 20, 2022 Author Posted June 20, 2022 (edited) 1 hour ago, mort65 said: I want to recompile the mzinBatheQuest.psc script with water fix to add support for SLACS to it but it doesn't compile. I installed Frostfal, Campfire, Equipment overhaul, SKYUI SDK, fade tattoo, CheskoPapyrusShared and extract their scripts but the compiler still gives these errors: mzinBatheQuest.psc F:\Games\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(411,33): AddInputOption is not a function or does not exist F:\Games\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(411,4): type mismatch while assigning to a int (cast missing or types unrelated). I only want to add this to ShowerActor and BathActor functions. Quest SLACS ; If Init.IsSexlabInstalled SexlabInt.SlClearCum(DirtyActor) EndIf If ((SLACS as Quest) as Bool) != True SLACS = Game.GetFormFromFile(0x00005557, "SLACS.esp") As Quest EndIf If ((SLACS as Quest) as Bool) SLACS_library SLACSLib = SLACS As SLACS_library SLACSLib.ClearCum(DirtyActor) EndIf ; mzinBatheQuest.psc 24.35 kB · 0 downloads For some reason the skyui sdk does not include some source files and need to be decompiled using champolion Note: please don't post this file as you are casting to an external type without proper safeguards and could potentially cause serious issues for anyone not running slac. Edited June 20, 2022 by Monoman1 1
mort65 Posted June 21, 2022 Posted June 21, 2022 16 hours ago, Monoman1 said: For some reason the skyui sdk does not include some source files and need to be decompiled using champolion Note: please don't post this file as you are casting to an external type without proper safeguards and could potentially cause serious issues for anyone not running slac. Thanks, I found the correct SDK files then fixed some other errors in chesko files and edit, decompile some of them then downloaded fnis sexy moves and DDi too and change the part I wanted to add to this to compile the script and it seems to be working but I don't know if it's safe or not: Quest Property SLACS Auto Hidden Function BatheActor.. ''' If Init.IsSexlabInstalled SexlabInt.SlClearCum(DirtyActor) EndIf If ((SLACS as Quest) as Bool) != True SLACS = Game.GetFormFromFile(0x00005557, "SLACS.esp") As Quest EndIf If ((SLACS as Quest) as Bool) SLACS_main slacsMain = SLACS as SLACS_main slacsMain.ClearCum(DirtyActor) EndIf ...
Monoman1 Posted June 21, 2022 Author Posted June 21, 2022 15 minutes ago, mort65 said: I don't know if it's safe or not: Unless you've made SLAC a hard dependency then it's not really. You're casting to an external type here: SLACS_main slacsMain = SLACS as SLACS_main This is potentially dangerous for people that don't use SLAC. I'm also not sure what type of variable 'SLACS' is without seeing the full script. It could also be a problem (if SLAC is not a hard dependency). I'd guess it's type 'Quest'? Which should be ok. See the OP here for a description of the issue: https://www.loverslab.com/topic/106848-multiple-mods-with-soft-dependency-to-the-same-resource/ And further down for a potential fix for it: https://www.loverslab.com/topic/106848-multiple-mods-with-soft-dependency-to-the-same-resource/?do=findComment&comment=2933753 Bits in between could probably be skipped. 1
mort65 Posted June 21, 2022 Posted June 21, 2022 43 minutes ago, Monoman1 said: Unless you've made SLAC a hard dependency then it's not really. You're casting to an external type here: SLACS_main slacsMain = SLACS as SLACS_main This is potentially dangerous for people that don't use SLAC. I'm also not sure what type of variable 'SLACS' is without seeing the full script. It could also be a problem (if SLAC is not a hard dependency). I'd guess it's type 'Quest'? Which should be ok. See the OP here for a description of the issue: https://www.loverslab.com/topic/106848-multiple-mods-with-soft-dependency-to-the-same-resource/ And further down for a potential fix for it: https://www.loverslab.com/topic/106848-multiple-mods-with-soft-dependency-to-the-same-resource/?do=findComment&comment=2933753 Bits in between could probably be skipped. Yes, SLACS is name of the quest that have the slacs_Main script. So if I change Quest Property SLACS Auto Hidden to Quest Property SLACS Auto and make SLACS a hard dipendency it won't cause any problem? Thanks for the answer.
Monoman1 Posted June 21, 2022 Author Posted June 21, 2022 Just now, mort65 said: Yes, SLACS is name of the quest that have the slacs_Main script. So if I change Quest Property SLACS Auto Hidden to Quest Property SLACS Auto and make SLACS a hard dipendency it won't cause any problem? Thanks for the answer. Yes, that should be fine. 1
Saber2th Posted June 30, 2022 Posted June 30, 2022 On 3/6/2022 at 8:35 AM, tamai said: For those who want it because it took me hours to do myself >< Bathing In Skyrim Tweaked v3.3 (14-May-2021) (for SE + water detection) Download 1. powerofthree payprus extender 2. Bathing in Skyrim Special Edition - Unofficial Conversion 3. Bathing In Skyrim Tweaked v3.3 (overwrite all files and convert over to SE or dont) 4. Go here download HAZ improved water detection (only need the ESP) 5. use these scripts Bathing In Skyrim Tweaked v3.3 SE+water detection.7z and replace all. anyway thats it! (should work with every water mod without the need for a patch) Thanks for the patch, it works perfectly for my character. On a side note, does it somehow not work for followers? When I ask my follower to take a bath, they just ask if there's water nearby even if they are standing in the water (Unchecking the water requirement works).
sirgilly Posted July 2, 2022 Posted July 2, 2022 (edited) On 6/30/2022 at 9:27 AM, Saber2th said: Thanks for the patch, it works perfectly for my character. On a side note, does it somehow not work for followers? When I ask my follower to take a bath, they just ask if there's water nearby even if they are standing in the water (Unchecking the water requirement works). @tamai I notice the instructions say to let HAZ override bathing in Skyrim, but if you do so and actually look at it in Xedit, this eliminates all of the BIS tweaked conditions by overriding them. Should we not be merging the requirements with a patch in the ESP? might be why @Saber2th cant get those items to work. Edited July 2, 2022 by sirgilly
sirgilly Posted July 2, 2022 Posted July 2, 2022 50 minutes ago, tamai said: i said overwrite all with BIS Tweaked, but i guess its confusing i have activate Haz water tweaks in the next step. Gotcha, if haz is being overwritten though, why do we need the esp, is it a deendancy?
RoxDox Posted July 17, 2022 Posted July 17, 2022 I'm getting a strange bug with amputator. Sometimes when I get hit part of my characters body goes invisible and my game stutters really bad. If I open menus the stuttering stops but the only way I've been able to fix it is via curing any amuptation and opening racemenu. Anyone know what causes this issue to even happen?
Ethetrix Posted July 29, 2022 Posted July 29, 2022 On 7/17/2022 at 5:20 AM, RoxDox said: I'm getting a strange bug with amputator. Sometimes when I get hit part of my characters body goes invisible and my game stutters really bad. If I open menus the stuttering stops but the only way I've been able to fix it is via curing any amuptation and opening racemenu. Anyone know what causes this issue to even happen? Do you use any SMP armour? I found using an armour set with SMP physics would drop my framerate to a bad slideshow if my character was amputated while wearing it. I had to unequipped the armour or heal the amputation.
RoxDox Posted July 29, 2022 Posted July 29, 2022 5 hours ago, Ethetrix said: Do you use any SMP armour? I found using an armour set with SMP physics would drop my framerate to a bad slideshow if my character was amputated while wearing it. I had to unequipped the armour or heal the amputation. That would probably explain it. I do use BHUNP and you can alternate between SMP and CBP. I probably changed to SMP and saw the issue. Seeing it never happened beforehand
McLovin3 Posted August 2, 2022 Posted August 2, 2022 (edited) I'm not sure if an addon like Dairy of Mine is messing with this, but I can't get the Rape Tattoos tweak to work on PAH slaves. Regular NPCs work (haven't tried on a hydragegon slave girl yet) My experience with the Tats mod is so little but i one day hope i can configure or someone can make a setting thats like a PAH/Zaz version of your Bathing in skyrim tweak where slaves get dirty from sex without having to do the limited settings on them everytime Edited August 2, 2022 by McLovin3
mort65 Posted August 6, 2022 Posted August 6, 2022 I forgot to upload this. The compatibility patch between Bathing in Skyrim and SLACS: Bathing SLACS Patch.7z 2
WWWGONA Posted August 7, 2022 Posted August 7, 2022 On 3/6/2022 at 4:35 AM, tamai said: For those who want it because it took me hours to do myself >< Bathing In Skyrim Tweaked v3.3 (14-May-2021) (for SE + water detection) Download 1. powerofthree payprus extender 2. Bathing in Skyrim Special Edition - Unofficial Conversion 3. Go here download HAZ improved water detection (only need the ESP) 4. Bathing In Skyrim Tweaked v3.3 (overwrite all files and convert over to SE or dont) 5. use these scripts Bathing In Skyrim Tweaked v3.3 SE+water detection.7z and replace all. anyway thats it! (should work with every water mod without the need for a patch) Thanks for your patch. May I ask you to make a compability patch for "Bathing in skyrim tweaked+water detection" and "pee and fart se"?
WWWGONA Posted August 8, 2022 Posted August 8, 2022 1 hour ago, tamai said: Bathing in Skyrim SE Haz Improved Water Detection.esp 2.84 kB · 0 downloads let it overwrite bathing in skyrim-main.esp dont install the bathing in skyrim scripts from PAF This should work, let me know. Thanks for your patch. I will try this soon and reply you.
WWWGONA Posted August 8, 2022 Posted August 8, 2022 2 hours ago, tamai said: Bathing in Skyrim SE Haz Improved Water Detection.esp 2.84 kB · 0 downloads let it overwrite bathing in skyrim-main.esp dont install the bathing in skyrim scripts from PAF This should work, let me know. It doesn't work. In Pee and fart(LE), bath cleans PAF dirt. but in this patch, bath doesn't clean PAF dirt. I think PAF's mzinBatheQuest script "PAF_MainQuestScript.GetApi().Bathe(DirtyActor)" that functions as clean PAF dirt.
WWWGONA Posted August 8, 2022 Posted August 8, 2022 26 minutes ago, tamai said: I only tested this is skyrim SE and it seemed to clean all 3, Cum, dirt and PAF dirt. This was tested with PAF SE as well as Bathing in skryim 3.3 SE. however i compiled the script for you so you can test it mzinBatheQuest.pex It doesn't work. but thanks for your help. " if WashProp as Bool && WashProp.HasKeyWord(SoapKeyword) self.ApplySoapBonus(DirtyActor, WashProp) DirtyActor.RemoveItem(WashProp as form, 1, true, none) DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(0) as spell, false) DirtyActor.AddSpell(PlayBatheAnimationWithSoap, false) PAF_MainQuestScript.GetApi().Bathe(DirtyActor) if DirtyActorIsPlayer BathingWithSoapMessage.Show(0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000) endIf else DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(1) as spell, false) DirtyActor.AddSpell(PlayBatheAnimationWithoutSoap, false) PAF_MainQuestScript.GetApi().Bathe(DirtyActor) if DirtyActorIsPlayer BathingWithoutSoapMessage.Show(0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000) endIf endIf ~~~ Bool DirtyActorIsPlayer = DirtyActor == game.GetPlayer() DirtyActor.ClearExtraArrows() self.RemoveSpells(DirtyActor, SoapBonusSpellList) self.RemoveSpells(DirtyActor, DirtinessSpellList) self.RemoveSpells(DirtyActor, BatheAttemptSpellList) self.RemoveSpells(DirtyActor, GetDirtyOverTimeSpellList) utility.Wait(0.100000) if WashProp as Bool && WashProp.HasKeyWord(SoapKeyword) self.ApplySoapBonus(DirtyActor, WashProp) DirtyActor.RemoveItem(WashProp as form, 1, true, none) DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(0) as spell, false) DirtyActor.AddSpell(PlayShowerAnimationWithSoap, false) PAF_MainQuestScript.GetApi().Bathe(DirtyActor) if DirtyActorIsPlayer ShoweringWithSoapMessage.Show(0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000) endIf else DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(1) as spell, false) DirtyActor.AddSpell(PlayShowerAnimationWithoutSoap, false) PAF_MainQuestScript.GetApi().Bathe(DirtyActor) if DirtyActorIsPlayer ShoweringWithoutSoapMessage.Show(0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000) endIf endIf endFunction " in PAF mzinBatheQuest script, PAF_MainQuestScript.GetApi().Bathe(DirtyActor) locate like this. I think, that script clean PAF dirt. I try this, but i fail to compile..
WWWGONA Posted August 8, 2022 Posted August 8, 2022 2 minutes ago, tamai said: im honestly not sure why it works for me and not for you. but i dont even know what you're using since you wouldnt answer me but im assuming you're using: -skryim se -testing this on a new save have this order of mods -PAF SE -bathing in skyrim original SE -bathing in skyrim tweaked 3.3 -haz water esp overwriting everything -script overwriting everything I can try new save.
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