diff options
Diffstat (limited to 'scripts/toy.groovy')
| -rw-r--r-- | scripts/toy.groovy | 23 | 
1 files changed, 6 insertions, 17 deletions
| diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 7b13571..3b69d97 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -660,23 +660,12 @@ def preStrip = { imageSpec = [DRESSED] ->  			["All of them off!", "And the rest!", "Keep going."]]);  	set(NAKED, true);  	showButtonGT("Naked, mistress", "naked", 60, 5); -	(getRandom(2) + 1).times { -		switch (getRandom(1)) { -			case 0: -				present(null, [ -						["Stand up straight,", "On your feet,"], -						["hands behind your head,", "arms up,", "hands high up,"], -						["let me see you properly.", "let's see what we have.", "I want a good view."]]); -				break; -			case 1: -				present(null, [ -						["Very good. Now...", "I see..."], -						["on your knees before me,", "kneel,"], -						["don't move those hands.", "hands still."]]); -				break; -		} -		wait(10); -	}; +	present(null, [ +			["Very good. Now...", "I see..."], +			["on your knees before me,", "kneel,", "stand up straight,", "on your feet,"], +			["hands behind your head,", "arms up,", "hands high up,"], +			["let me see you properly.", "let's see what we have.", "I want a good view."]]); +	wait(10);  	return 1.1;  }; | 
