Orochimaru11 Posted October 14, 2024 Posted October 14, 2024 I think this mod messes with the secretary pill. It's the only mod I have related to the Match pill. When I try to masturbate in the shower as the secretary, I get a bunch of errors and it says I can only orgasm with Bruce on the Matched pill.
Hakuna_Matata Posted October 14, 2024 Posted October 14, 2024 The latest playtest adds a Show-Off pill that this mod makes disappear. Can you find a way to integrate the mod without overwriting the pharmacy inventory from the main game?
mijhy Posted February 2, 2025 Posted February 2, 2025 (edited) Pregmod, thanks to including a feature I asked, allows to add the "fertility cycle" that any pill should have. This is the code I added to BR pill mod, to add cycles I thought were appropriate for BR PM's pills. It's at the end of BR pills variables [initialize] (if:(passage:"__mods__")'s source contains "Pregmod")[ (if:"Empress Weekly" is not in $pill_fertilities)[ (set:("Temp Breeder" of $pill_fertilities) to "ultra") (set:("Breeder Monthly" of $pill_fertilities) to "high") (set:("Continue" of $pill_fertilities) to "low") (set:("Match" of $pill_fertilities) to "barren") (set:("Denial" of $pill_fertilities) to "low") (set:("Empress" of $pill_fertilities) to "low") (set:("Empress Weekly" of $pill_fertilities) to "low") (set:("Kannagi" of $pill_fertilities) to "barren") (set:("Resistance Plus" of $pill_fertilities) to "low") (set:("Spike" of $pill_fertilities) to "barren") ] ] You can find the specific cycles in the pregmod code: (unless:$cycleinit is 1)[ (set:$mod_fert_cycle to (a:0,0,0,0,0,0,0,0,4,2,1,1,1,1)) (set:_barrencycle to (a:0,0,0,0,0,0,0,0)) (set:_lowcycle to (a:0,0,0,0,0,0,0,0,0,0,0,4,2,1)) (set:_normalcycle to (a:0,0,0,0,0,0,0,0,4,2,1,1,1,1)) (set:_highcycle to (a:4,4,2,2,2,1,1,1,3,2,2,2,1,1)) (set:_ultracycle to (a:4,4,2,2,1,1,4,4,2,2,1,3,2,1)) (set:_maxcycle to (a:4,4,4,4,4,4,4)) (set:$fertilitycycle to (dm:"mod",$mod_fert_cycle,"barren",_barrencycle,"low",_lowcycle,"normal",_normalcycle,"high",_highcycle,"ultra",_ultracycle,"max",_maxcycle)) ] 4 is ovulating, 3 is probably ovulating, 2 is probably ejecting egg, 1 is safe Edited February 2, 2025 by mijhy
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