Jump to content

[Mod]XCL - CumCure by Mirande


Mirande

Recommended Posts

Posted

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.


 

Posted (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 by mijhy

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...