diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-19 11:42:38 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-19 11:42:38 +0000 |
commit | 7c1514a7e9ae4f5f71ad61f2ff09d8203f250510 (patch) | |
tree | da177575ea98e455d92ed93fcb74d7f65506bb0b /scripts | |
parent | Sometimes don't always [fully] release toy after play (diff) | |
download | toy-7c1514a7e9ae4f5f71ad61f2ff09d8203f250510.zip |
Remove wait guages
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/toy.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index b6a9854..d2836c5 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -854,7 +854,7 @@ def playKneel = { playBackgroundSound("bell.wav"); show(null); def kneelTime = 60 + getRandom(240); - waitWithGauge(kneelTime); + wait(kneelTime); while (playBackgroundSound("bell.wav") || true) { if (showButtonG("Back, mistress", "back", 20) != 20) break; } @@ -892,7 +892,7 @@ def playBondage = { setImage(null); show(null); def waitTime = 500 + getRandom(1000); - waitWithGauge(waitTime); + wait(waitTime); playBackgroundSound("bell.wav"); present([DRESSED, nTEASE], [ ["Hi slave!", "Hello again."], |