After Cum State (1 Viewer)

GreatBighorn

Potential Patron
Joined
Nov 6, 2016
I need a way (A check) that can allow speciff lines triggered Only after his finishes. Eg:
General: Check>finishes>2times
"I can't believe how much you came!"
"When? At my first Or at my second ejaculation?"
"At the first one"

As you see this is not like the RESTART trigger. It's a "state" - something that locked the whole dialog by "checking" the times of his FINISHES that allready happen so far and allow speciffic lines to play depenting by the times of those FINISHES.
Is something like the MOOD CHECKS.

Thanks for your time. I will be please if someone explain me even why such thing is tough to create.
 

Eva-2X

Content Creator
Joined
Nov 3, 2018
There are several easy ways to do it. The thing is, the more complex is your dialogue mechanics, the tougher it becomes to keep track of every variables.

Let's pretend your dialogue is not "mechanic heavy". Its only gimmick is those "post finisher(s) state". So you just have one variable to keep track.
You create a variable like this:
initial_settings:{"fin":0}

You then you add a {"style":"Thought","set":{"fin":"+1"}} at the end of the restart line
restart:"..." {"style":"Thought","set":{"fin":"+1"}}
This will keep track of your finisher count.

Now write your dialogue this way.

general:"[gen*fin*]" {"style":"Thought"}
gen0:"blablabla for finish counter at 0"
gen1:"blablabla for finish counter at 1"
gen2:"blablabla for finish counter at 2"

Repeat the structure for every other line type:
pull_off:"[po*fin*]" {"style":"Thought"}
po0:"blablabla for finish counter at 0"
po1:"blablabla for finish counter at 1"
po2:"blablabla for finish counter at 2"

etc.

I hope this helps.
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.