Page 1 of 1

Idea for a tease, not sure how to implement it.

Posted: Wed Nov 14, 2012 8:02 pm
by Alpha
Hi everyone, been enjoying the site for a while but been mostly lurking.

I had an idea for a tease (which I'm sure others have probably had) that would have a start page (of course!) followed by a couple more pages as an intro. It would then have, let's say for ease of explaining, 5 other sets of pages (A-E) which would be done in a random order such as B1-B2-B3 etc and then present a button to continue and then it would move onto another random selection E-1, E2 etc and would keep doing this until all 5 sets have been done, with no repeats, and would then move to a finishing page. These sets would also have a beat sound in them. (Think randomised Cock Hero)

Is such a thing possible? I don't have a great deal of experience in scripts either so some pointers would be helpful.

Re: Idea for a tease, not sure how to implement it.

Posted: Wed Nov 14, 2012 8:14 pm
by supermokkori
Alpha wrote:Hi everyone, been enjoying the site for a while but been mostly lurking.

I had an idea for a tease (which I'm sure others have probably had) that would have a start page (of course!) followed by a couple more pages as an intro. It would then have, let's say for ease of explaining, 5 other sets of pages (A-E) which would be done in a random order such as B1-B2-B3 etc and then present a button to continue and then it would move onto another random selection E-1, E2 etc and would keep doing this until all 5 sets have been done, with no repeats, and would then move to a finishing page. These sets would also have a beat sound in them. (Think randomised Cock Hero)

Is such a thing possible? I don't have a great deal of experience in scripts either so some pointers would be helpful.
Nezhul's 'Will You Want To Go On' FlashTease pretty much does what you're describing:

http://www.milovana.com/webteases/showf ... p?id=10529

Re: Idea for a tease, not sure how to implement it.

Posted: Thu Nov 15, 2012 3:43 pm
by Nezhul
It does a bit different because it randomizes the number of avaliable sessions, the number of tasks in each session, and the length of each task.

Anyway to do this you should make your intro normally, then have a button pointing to range(1..5,'page) where each of the pages 1# 2# 3# 4# 5# would be the first page of your sub-set. In the end of each sub-set you roll again, but now it's range(1..6,'page). The page 6# is when you move onward after all 5 sets are done. Now you only need to lay constraint on it somwhere near the beginning of a tease (I prefer making an invisible page, i.e. with delay of 0 seconds, and lay all constraints there). The constratint will look like must(6#,1#,2#,3#,4#,5#).

How it will work.
1) choose one of the 5 sets at random.
2) in the end choose between 1..6 pages at random, but the pages already visited can't be shown, and page 6 can't be shown if some of 1-5 pages are not visited yet.
3) repeat 2 untill all 5 pages are shown = we did all 5 tasks. the least task will choose page 6 to move along with the tease.