[Feedback] Riley's Cum Roulette

All about the past, current and future webteases and the art of webteasing in general.
---
Post Reply
Claudius
Explorer
Explorer
Posts: 38
Joined: Sun Sep 20, 2020 6:14 pm
Contact:

[Feedback] Riley's Cum Roulette

Post by Claudius »

I like it, but I cannot stop the roulette. Maybe that is a bug?
Lovely guide to FLR/chastity
viewtopic.php?t=23807
lagavulin_nl
Explorer At Heart
Explorer At Heart
Posts: 127
Joined: Tue Feb 27, 2007 5:30 pm

Re: [Feedback] Riley's Cum Roulette

Post by lagavulin_nl »

If you keep clicking fast eventually it will work. The rapid clicking will add to the randomness. Not that it isn't already random anyway.
lagavulin_nl
Explorer At Heart
Explorer At Heart
Posts: 127
Joined: Tue Feb 27, 2007 5:30 pm

Re: [Feedback] Riley's Cum Roulette

Post by lagavulin_nl »

Very nice tease btw. I am not a Reid fan, cause I can't stand her bush, but that is not your fault, that is hers. The tease itself I really liked. :-D
lagavulin_nl
Explorer At Heart
Explorer At Heart
Posts: 127
Joined: Tue Feb 27, 2007 5:30 pm

Re: [Feedback] Riley's Cum Roulette

Post by lagavulin_nl »

I don't remember seeing errors in the language and if you ever need help with it just send me a message.

Oh and I enjoyed that new neighbor tease a lot too. Remy is more my taste. I like your work so far, will check out the others as well.
fapnip
Explorer At Heart
Explorer At Heart
Posts: 431
Joined: Mon Apr 06, 2020 1:54 pm

Re: [Feedback] Riley's Cum Roulette

Post by fapnip »

HellaLittyBroPoggers wrote: Wed Feb 17, 2021 8:12 am If I made it too fast you couldn't click the button at all and If I made it too slow then it wouldn't be a roulette.
I didn't take a look at how you did it, but, off the top of my head, for a roulette like is described (changing until you click) I would recommend something like:

1. In your Init Script, add:

Code: Select all

var rouletteOptions = [
  {title: 'Ruin', page: 'my-ruin-page'},
  {title: 'Cum', page: 'my-cum-page'},
  {title: 'Deny', page: 'my-deny-page'},
]

function randomInt(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min
}

function getRandom(opts, avoid) {
  var result = opts[randomInt(0, opts.length-1)]
  var i = 0
  while (result === avoid && i < 100) {
    result = opts[randomInt(0, opts.length-1)]
    i ++
  }
  return result
}

var currentRoulette = getRandom(rouletteOptions)
var rouletteRunning = false
2. Create a page dedicated to the roulette. Does nothing but roulette. (Don't add images or GOTO actions, as they can slow it down. Load any images on a different page.) Goto this page to start the roulette.

3. Add IF action to that page, with "!rouletteRunning" (The if action prevents re-rendering the Notifications, making the button unresponsive.)

4. Add two notifications to that IF action: one for roulette text (title, no button, with an id), another for your stop button (no title, button with appropriate label). In the button notification's actions, add an eval action with:

Code: Select all

if (currentRoulette) {
  Notification.get('myRouletteNotificationId').remove()
  pages.goto(currentRoulette.page)
}
rouletteRunning = false
(It's possible to do it in a single notification, but I remember having issues with the button being less responsive if not in a separate action.)

5. In an eval action, after the "IF" action (not in the if action):

Code: Select all

rouletteRunning = true
currentRoulette = getRandom(rouletteOptions, currentRoulette)
Notification.get('myRouletteNotificationId').setTitle(currentRoulette.title)
6. Add a hidden asynchronous Timer action after the last eval. Flip the timer's eval switch (<>), and enter an appropriate number of milliseconds, like 100 -- adjust as needed. Add an eval as the timer's asynchronous action. In that eval:

Code: Select all

pages.goto(pages.getCurrentPageId())
Edit: Here's an example
https://milovana.com/webteases/showteas ... 9e6b8803b8
And here's the JSON for the example (right-click, save-as)
https://milovana.com/webteases/geteossc ... 9e6b8803b8
fapnip
Explorer At Heart
Explorer At Heart
Posts: 431
Joined: Mon Apr 06, 2020 1:54 pm

Re: [Feedback] Riley's Cum Roulette

Post by fapnip »

HellaLittyBroPoggers wrote: Thu Feb 18, 2021 4:57 am I don't know anything about coding at all so looking at this is very confusing
Here, I spent a couple minutes stitching the roulette into your original tease to show you how:
https://milovana.com/webteases/showteas ... 4713f549c8
JSON/backup here:
https://milovana.com/webteases/geteossc ... 4713f549c8
Happywhenfound
Explorer
Explorer
Posts: 7
Joined: Fri Mar 30, 2018 10:59 pm

Re: [Feedback] Riley's Cum Roulette

Post by Happywhenfound »

Your roulette is super exciting!!

I played it while I really didn't have the time.

If you are looking for suggestions, I am happy to share.

First, offer a shortcut, for ones that grew bored with another tease and/or don't have much time

Second, if there are other models to choose from, I would definitely replay!!

Third, a little bit less interaction would be good. Taking to the keyboard takes away from matters that matter.

Lastly, don't take all criticism to heart. Your English is fine.
anonymister
Explorer At Heart
Explorer At Heart
Posts: 178
Joined: Tue Apr 08, 2014 2:11 am
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [Feedback] Riley's Cum Roulette

Post by anonymister »

Great Tease !
For other models, try MetArt, FemJoy, Domai ...

I love the petite, small breast natural women. No pumped up porn stars please.
Post Reply