Mirande Posted November 12, 2023 Posted November 12, 2023 View File XCL - CumCure by Mirande Just a simple mod to add CumCure to the XCL range. The pill will last until your character swallows and should wear off early the following day First attempt at making a mod so any feedback is welcomed. Requires mod loader 1.2 or later to deal with [around] tags and when loaded with BR.pills the loader will throw an exception. I haven't found this to be impactful in gameplay however. Please report any issues. Special thanks to BadRabbit, Usagi666 and Pudge. I took apart various sections from your collective mods in an effort to learn how everything meshed together before repurposing sections. Submitter Mirande Submitted 11/12/2023 Category X-Change Life
mijhy Posted November 12, 2023 Posted November 12, 2023 (edited) You could make a random function so that when you swallow the pill, it requires some N number of swallows to turn back, say 0-5 or something. For instance, this might work: :: initialize Mirande Cumcure [initialize] { (set:$MirandeCumCurePrice to 125) (set:$MirandeCumCureQuota to 0) (set:$MirandeCumCureSwallowed to 0) (set:$MirandeChanceSetup to (a: 0, 1, 1, 2, 2, 2, 3, 3, 4)) } this adds a distribution list. Numbers which appear more often, are essentially more likely to be picked :: Cum Cure selected [take_pill] { (if:$select is "Cum Cure")[ (set:$pill_timer to 9999) (set:$pill_taken to "Cum Cure") (set:$MirandeCumCureQuota to 1st of (shuffled: $MirandeChanceSetup)) ] } This shuffles that list of numbers, then picks the 1st, and sets it to the quota Note I haven't tested that code yet Edited November 12, 2023 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