The tease works fine, but you need TeaseMe v0.1.2 (NOT v0.1.1!). It uses a new feature from v0.1.2 (delay seconds="0") after the page with the random targets. Thats the reason, the file is named "
TeaseMe-v0.1.2-LastManStanding.rar" and thats the reason for an error with TeaseMe v0.1.1
And as bonus here some explanation how random pages work:
Open the "
Last man standing - Competition.xml" and search for "
<Page id="page77">". "page77" is the id of the page where the second round starts. This is done with a delay:
Code: Select all
<Page id="page77"> <Text> <p>"Second round starts soon. Who you're going to fuck will be randomly chosen by us. Better be hard or the girl will not be amused.</p> </Text> <Image id="325p3981.jpg" /> [b]<Delay target="(1..3)" seconds="45" />[/b]</Page>
After 45 seconds it randomly chooses a page with the id "1", "2" or "3". Search for "<Page id="1"> in the xml. This page only contains a delay with zero seconds length (its a hidden page the user never sees). The target "page78" starts the second round with girl 1. If "page77" had picked "2" instead of "1" you would start with girl 2 ("page85"):
Code: Select all
<Page id="1"> <Text><p>1</p></Text> <Image id="black.jpg" /> [b]<Delay target="page78" seconds="0" style="hidden" />[/b]</Page> <Page id="2"> <Text><p>2</p></Text> <Image id="black.jpg" /> <Delay target="page85" seconds="0" style="hidden" /></Page> <Page id="3"> <Text><p>3</p></Text> <Image id="black.jpg" /> <Delay target="page91" seconds="0" style="hidden" /></Page>
Random elements always work the same way. Some examples:
- Targets: target="girl(1..3)" can have 3 possible page ids as result: "girl1", "girl2", "girl3"
- Delay: seconds="(20..30)" creates a random delay length between 20 seconds and 30 seconds
- Metronome: bpm="(60..120)" creates a random metronome speed between 60 bpm and 120 bpm
Thats all explained in the tutorial...
