Estim Tease Template

All about the past, current and future webteases and the art of webteasing in general.
---
Post Reply
User avatar
Rillo
Explorer At Heart
Explorer At Heart
Posts: 143
Joined: Wed Jul 08, 2020 12:04 pm

Estim Tease Template

Post by Rillo »

I have created an estim tease template for creating EOS teases. This is designed to help others quickly build teases that can incorporate more device types. This is the same functionality I used in Estim Chatroom.

The template includes:
  • Support for up to 5 device types
  • Supports pain files (including the 2B)
  • Pain level adjustments
    • Automatically taking into account device type
  • Sound test settings
  • Saved settings for multiple visits
  • Device calibration script
  • Settings reset option
  • Included functions for easily setting volumes per device
Template Map:
Image

Basic information for getting started:
Always set volume sliders to 0% manually. This makes sure someone won't accidentally be hit with a 100% volume file.
This is also done as a baseline since all volumes will be set with one of the following two functions:

Code: Select all

setVolume(audio_id)
setPain(audio_id)
You can access the baseline volume with:

Code: Select all

teaseStorage.getItem("device_volume")
You can access the pain level (though you should not need it) with:

Code: Select all

teaseStorage.getItem("pain")
You can access the device type with:

Code: Select all

teaseStorage.getItem("device")

During the tease, you can select a specific file for a specific device with an if-statement and the the teaseStorage.getItem("device") variable.

Pseudocode Code:

Code: Select all

if teaseStorage.getItem("device") == "2B"
	play(file1)
	setVolume("file1")
else
	 play(file2)
	setVolume("file2")
:!:
What this template does not include:
Support for automatic volume ramping.

Try it here:
https://milovana.com/webteases/showteas ... 4a13b4b177

Hosted Here (for now):
https://cdn.discordapp.com/attachments/ ... 0-2-2.json

If you use it, let me know if you have any questions. :-)
Last edited by Rillo on Sat Jul 03, 2021 2:25 am, edited 2 times in total.
zxpguy
Explorer
Explorer
Posts: 26
Joined: Fri Feb 09, 2018 10:49 pm

Re: Estim Tease Template

Post by zxpguy »

Hope to see more estim teases soon. Thank you.
User avatar
boundupone
Explorer At Heart
Explorer At Heart
Posts: 614
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: Estim Tease Template

Post by boundupone »

Damn good idea, hopefully this will encourage a lot more content. Great work
Try anything once!
User avatar
Rillo
Explorer At Heart
Explorer At Heart
Posts: 143
Joined: Wed Jul 08, 2020 12:04 pm

Re: Estim Tease Template

Post by Rillo »

Here is the link if anyone wants to see what the default template gives you.
https://milovana.com/webteases/showteas ... 4a13b4b177
Post Reply