Thanks, I dunno how I wasn't able to find that post before, but it solved my issue.phönix wrote: Sat Dec 06, 2025 9:06 am Probably the same issue (and solution) as here:
viewtopic.php?p=382022#p382022
Here are EOS tutorials
Re: Might be a dumb question
- cumhardy
- Experimentor

- Posts: 1145
- Joined: Wed May 28, 2008 10:54 pm
- Gender: Male
- I am a: None of the above
- Location: UK
Re: Here are EOS tutorials
not sure if I already asked this before, or if its been answered elsewhere.
I’m trying to do the following with images in a tease:
I have several folders/sets of images, for example:
Set A → a1.jpg, a2.jpg, … a20.jpg
Set B → b1.jpg, b2.jpg, … b20.jpg
At the very beginning of the tease (or each day), I want the game to randomly pick one set (A or B, etc.).
Then, for the entire session, every image shown should come from that same chosen set, and they should appear in order (1 → 2 → 3 … → 20) as the player progresses through the pages.
Is this possible in the EOS editor?
I’m trying to do the following with images in a tease:
I have several folders/sets of images, for example:
Set A → a1.jpg, a2.jpg, … a20.jpg
Set B → b1.jpg, b2.jpg, … b20.jpg
At the very beginning of the tease (or each day), I want the game to randomly pick one set (A or B, etc.).
Then, for the entire session, every image shown should come from that same chosen set, and they should appear in order (1 → 2 → 3 … → 20) as the player progresses through the pages.
Is this possible in the EOS editor?
-
undeniable_denial
- Explorer At Heart

- Posts: 109
- Joined: Sat Aug 24, 2019 11:42 am
- Gender: Male
- Location: Germany
Re: Here are EOS tutorials
It's only possible if you do it manually. Basically, either two duplicate paths in the tease with swapped out pictures. Or alternatively every pair of images nested in an If.cumhardy wrote: Mon Apr 13, 2026 1:37 pm At the very beginning of the tease (or each day), I want the game to randomly pick one set (A or B, etc.).
Then, for the entire session, every image shown should come from that same chosen set, and they should appear in order (1 → 2 → 3 … → 20) as the player progresses through the pages.
Is this possible in the EOS editor?
The image-action allows for a random image to be picked, but no automatic sequential slide show thus far.
- cumhardy
- Experimentor

- Posts: 1145
- Joined: Wed May 28, 2008 10:54 pm
- Gender: Male
- I am a: None of the above
- Location: UK
Re: Here are EOS tutorials
thanks, ill try nesting the if. A bit of a messy solution but I think I can get it to work if the tease isnt too complexundeniable_denial wrote: Tue Apr 14, 2026 1:47 pm It's only possible if you do it manually. Basically, either two duplicate paths in the tease with swapped out pictures. Or alternatively every pair of images nested in an If.
The image-action allows for a random image to be picked, but no automatic sequential slide show thus far.
- MrNadra
- Explorer

- Posts: 55
- Joined: Mon Dec 27, 2021 8:02 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Switch
- Location: Germany
Re: Here are EOS tutorials
Sup,
i'm trying to setup a maze with each encounter having multiple teases, so when you clear one it does l1b5++.
So next time you get there, it goes to the next if case.
right now i'm storing how often you've visited like so(just basic variables not even storing in teasestorage):
On my first full run, it just crashes out on trying to setup all the vars(tried loading each layer seperately right before entering the next layer too but no luck there either).
I'm 100% sure the amount of variables is the issue, because when i remove layer 3 it starts working again.
I tried rewriting it like so(ai told me
):
Can anyone tell me how i can set this up so it works and is scalable?
I was planning on doing a layer4 + 25-50 pages of story after clearing the maze which would also need variables(probably).
Is there a hard limit on how many vars can be loaded at once or something?
And can they be unloaded somehow?
Thanks in advance.

i'm trying to setup a maze with each encounter having multiple teases, so when you clear one it does l1b5++.
So next time you get there, it goes to the next if case.
right now i'm storing how often you've visited like so(just basic variables not even storing in teasestorage):
- Spoiler: show
On my first full run, it just crashes out on trying to setup all the vars(tried loading each layer seperately right before entering the next layer too but no luck there either).
I'm 100% sure the amount of variables is the issue, because when i remove layer 3 it starts working again.
I tried rewriting it like so(ai told me
- Spoiler: show
Can anyone tell me how i can set this up so it works and is scalable?
I was planning on doing a layer4 + 25-50 pages of story after clearing the maze which would also need variables(probably).
Is there a hard limit on how many vars can be loaded at once or something?
And can they be unloaded somehow?
Thanks in advance.
- PlayfulGuy
- Experimentor

- Posts: 1074
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Re: Here are EOS tutorials
MrNadra wrote: Wed Apr 15, 2026 5:30 pm Sup,
i'm trying to setup a maze with each encounter having multiple teases, so when you clear one it does l1b5++.
So next time you get there, it goes to the next if case.
Both of your code examples have errors. I plugged them into https://jsfiddle.net/ then ran them, and got this:
Code: Select all
JSFiddle Console. Turn on/off in Editor settings.
☁️ "Running fiddle"
"[Line 37] ReferenceError: l2g7 is not defined"
☁️ "Running fiddle"
"[Line 28] ReferenceError: f110 is not defined"
- Spoiler: show
- Spoiler: show
PG
I'd rather be stroking!
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
- MrNadra
- Explorer

- Posts: 55
- Joined: Mon Dec 27, 2021 8:02 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Switch
- Location: Germany
Re: Here are EOS tutorials
So i'm just blind, thats great news, thanks so muchPlayfulGuy wrote: Thu Apr 16, 2026 12:12 amMrNadra wrote: Wed Apr 15, 2026 5:30 pm Sup,
i'm trying to setup a maze with each encounter having multiple teases, so when you clear one it does l1b5++.
So next time you get there, it goes to the next if case.
Both of your code examples have errors. I plugged them into https://jsfiddle.net/ then ran them, and got this:First code sample has error in layer 2, segment gCode: Select all
JSFiddle Console. Turn on/off in Editor settings. ☁️ "Running fiddle" "[Line 37] ReferenceError: l2g7 is not defined" ☁️ "Running fiddle" "[Line 28] ReferenceError: f110 is not defined"Second has error in layer 1
- Spoiler: show
You were soooo close!
- Spoiler: show
![]()
PG
- PlayfulGuy
- Experimentor

- Posts: 1074
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Re: Here are EOS tutorials
No, not blind. I couldn't tell you how many hours I've wasted trying to find a bug like that.
And when I do find it it's like OMFG!!!!
After looking at your own code for too long, sometimes it just needs a fresh pair of eyes.
Good luck with your project!
PG
I'd rather be stroking!
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
- Shattered
- Experimentor

- Posts: 1398
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Here are EOS tutorials
I want a 'accidentally cum' button for my tease, but a lot of the time it feels too in the way if I want to use literally any other buttons in my tease. Is there a way to make a button in like the top corner of the page so its hard to accidetntally press?
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
- PlayfulGuy
- Experimentor

- Posts: 1074
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Re: Here are EOS tutorials
What you're looking for is Notifications.Shattered wrote: Thu Jun 18, 2026 8:59 pm I want a 'accidentally cum' button for my tease, but a lot of the time it feels too in the way if I want to use literally any other buttons in my tease. Is there a way to make a button in like the top corner of the page so its hard to accidetntally press?
You need to turn them on in the tease options, and then create a page to handle it.
The notification button appears on the far right of the screen and stays there until clicked, or removed in code.
These can be used to display information as well.
Here's an example I did for someone else featuring an "Edged" button instead of "Came"
https://milovana.com/webteases/showteas ... 3501decd8f
PG
I'd rather be stroking!
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
- Shattered
- Experimentor

- Posts: 1398
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Here are EOS tutorials
Sorry I maybe wasn't clear enough, I use notifications for this but also use them for other things in the tease, but if I use another notification at the same time and the user presses at the wrong time as it disappears they may accidentally click the ive cum button, so I was wondering if there was a way to space it out very far out of the way so accidents can't happen! The other possibility is I could remove the cumming button while another notification is in use, but its less cleanPlayfulGuy wrote: Sun Jun 21, 2026 1:04 amWhat you're looking for is Notifications.Shattered wrote: Thu Jun 18, 2026 8:59 pm I want a 'accidentally cum' button for my tease, but a lot of the time it feels too in the way if I want to use literally any other buttons in my tease. Is there a way to make a button in like the top corner of the page so its hard to accidetntally press?
You need to turn them on in the tease options, and then create a page to handle it.
The notification button appears on the far right of the screen and stays there until clicked, or removed in code.
These can be used to display information as well.
Here's an example I did for someone else featuring an "Edged" button instead of "Came"
https://milovana.com/webteases/showteas ... 3501decd8f
PG
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
- PlayfulGuy
- Experimentor

- Posts: 1074
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Re: Here are EOS tutorials
Ah! I see what you're saying now. I'm not aware of any way to space them out.Shattered wrote: Sun Jun 21, 2026 5:40 pmSorry I maybe wasn't clear enough, I use notifications for this but also use them for other things in the tease, but if I use another notification at the same time and the user presses at the wrong time as it disappears they may accidentally click the ive cum button, so I was wondering if there was a way to space it out very far out of the way so accidents can't happen! The other possibility is I could remove the cumming button while another notification is in use, but its less cleanPlayfulGuy wrote: Sun Jun 21, 2026 1:04 amWhat you're looking for is Notifications.Shattered wrote: Thu Jun 18, 2026 8:59 pm I want a 'accidentally cum' button for my tease, but a lot of the time it feels too in the way if I want to use literally any other buttons in my tease. Is there a way to make a button in like the top corner of the page so its hard to accidetntally press?
You need to turn them on in the tease options, and then create a page to handle it.
The notification button appears on the far right of the screen and stays there until clicked, or removed in code.
These can be used to display information as well.
Here's an example I did for someone else featuring an "Edged" button instead of "Came"
https://milovana.com/webteases/showteas ... 3501decd8f
PG
I can't really suggest any other workarounds without more specific information on your tease.
Good luck, and I look forward to seeing how you handle it. I do most of your teases!
PG
I'd rather be stroking!
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
-
Carnal1
- Explorer At Heart

- Posts: 208
- Joined: Wed Jan 30, 2019 4:56 am
- Gender: Male
- Sexual Orientation: Open to new ideas!
Re: Here are EOS tutorials
Not sure if this will help and it's a bit cludgy but you can make blank notifications. They take up space on the right of the display but nothing shows. Just make a notification and don't put anything in it, no title, label, nothing and you could use several of these to put spacing between your 'cum' button and any others.
Re: Here are EOS tutorials
You can add a Unicode space character to the title of the notification that comes after your accident notification. This will add a blank line between the two.Shattered wrote: Sun Jun 21, 2026 5:40 pm so I was wondering if there was a way to space it out very far out of the way so accidents can't happen!
Copy/paste from here:
https://unicode-explorer.com/c/00A0
Like this:
https://milovana.com/webteases/showteas ... b97ac6828f
- Shattered
- Experimentor

- Posts: 1398
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Here are EOS tutorials
Think that might just do, prevents the buttons from going to a similar area, thanks!
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
