Oermtuhz Posted January 28, 2018 Share Posted January 28, 2018 I'm trying to make Breezehome's Alchemy Lab and Child bedroom not mutually exclusive. My thinking was to make the things that enable/disable the Bedroom's X Markers refer to a new X Marker and disable the switch making the lab override the bedroom. However, I can't seem to find what's actually doing the switch. I have been through the CK's tutorial and it was largely unhelpful. Link to comment Share on other sites More sharing options...
JobVanDam Posted January 30, 2018 Share Posted January 30, 2018 So you want when the player buys the Alchemy Lab it doesn't turn off the Child Room?And when the player picks the Child Room it doesn't turn off the Alchemy Lab? You have to change the "BYOHRelationshipAdoptionHousePurchase" script, the last two function have to be changed as follows: ;---------------------------------------------------------------------------------------------------- ;Whiterun - Child's Bedroom swaps for Alchemy Lab ;------------------------------------------------ Function Whiterun_EnableChildBedroom() ;Debug.Trace("Whiterun_EnableChildBedroom called.") WhiterunPlayerHouseAlchemyLaboratoryStart.Disable() ;--WhiterunPlayerHouseAlchemyLaboratory.Disable() WhiterunPlayerHouseChildBedroom.Enable() ;Notify Adoptable that we have a child's room. (RelationshipAdoptable as BYOHRelationshipAdoptableScript).UpdateHouseStatus() EndFunction Function Whiterun_EnableChildBedroomAlternative() ;Debug.Trace("Whiterun_EnableChildBedroomAlternative called.") ;---WhiterunPlayerHouseAlchemyLaboratoryStart.Disable() ;---WhiterunPlayerHouseChildBedroom.Disable() WhiterunPlayerHouseAlchemyLaboratory.Enable() ;Notify Adoptable that we (no longer?) have this room. ;---(RelationshipAdoptable as BYOHRelationshipAdoptableScript).UpdateHouseStatus() EndFunction I have the above change in my own game and it works just fine.Pretty sure you have to make dialogue changes as well though. Link to comment Share on other sites More sharing options...
Oermtuhz Posted January 30, 2018 Author Share Posted January 30, 2018 Many thanks. I have had trouble getting scripts open so I haven't been able to read them, but I'll give more attention to that. Link to comment Share on other sites More sharing options...
Recommended Posts