Search found 109 matches

by undeniable_denial
Tue Apr 14, 2026 1:47 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials


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 ...
by undeniable_denial
Fri Jan 23, 2026 11:58 pm
Forum: The Art of Webteasing
Topic: [New Release] Kenna Unleashed 2: Craigslist (v1.1)
Replies: 41
Views: 17956

Re: [New Release] Kenna Unleashed 2: Craigslist(Fixed? FIXED!)


this no worky:
if teasestorage.getItem("cloudsave")==-1


That's because teasestorage.getItem("cloudsave") is undefined when you never saved before. It's why you have your fallback -1 in your Init Script.

My advice would be to remove the two eval-actions on the start page, because you already ...
by undeniable_denial
Sat Oct 18, 2025 3:20 pm
Forum: On Video
Topic: [FEEDBACK/OPINION WANTED] for a non-nude* project
Replies: 22
Views: 6826

Re: [FEEDBACK/OPINION WANTED] for a non-nude* project

Saw your updated clip and had a quick idea. Not sure how difficult that is to do, but i've seen it on photographs that the area between the legs gets darkened to make it look like you can't see the pussy because it's in the shadows. This might look better/more natural than a blur. Just a thought ...
by undeniable_denial
Fri Oct 17, 2025 1:46 pm
Forum: On Video
Topic: [FEEDBACK/OPINION WANTED] for a non-nude* project
Replies: 22
Views: 6826

Re: [FEEDBACK/OPINION WANTED] for a non-nude* project

The most stylish way to censor nudity is putting on clothes, I guess. :rolleyes:


Personally, I would like it best if you stick to strictly non-nude without resorting to censoring (I hate it). So, no nips/pussy/butt-hole in the shot. Curves are okay (ass, side-/underboob, cleavage).
Admittedly ...
by undeniable_denial
Wed Oct 08, 2025 8:00 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials


Quick question though, how can I actually test if the storage system is working correctly? Like, to confirm that user variables (for example, score and phase) are being saved and then loaded successfully when they return?


Afaik, you can't really check during the tease. You have to reload it, to ...
by undeniable_denial
Sun Apr 27, 2025 8:57 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials

UrbanJames wrote: Sun Apr 27, 2025 7:57 pm Is there any way to have dialog that plays during a timer?
turn on the timer's "asynchronous" mode
by undeniable_denial
Thu Apr 24, 2025 4:00 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials


B more or less, you return to the same page and it says something that could be different, could be the same


Something like this maybe:
function myRandomText() {
texts=[
"Nice weather today."
,
"Why are you looking at me like that?"
];
return texts[Math.floor(Math.random()*texts.length ...
by undeniable_denial
Tue Apr 22, 2025 11:47 am
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials


I seem to recall a way to make a say action be from multiple random ones via storing them in the init script...anyone remember? :lol:


Perhaps you could be a little bit more specific, particularly about the "random" part? I'm assuming you have a list of texts. Do you want:
A) All of them in a ...
by undeniable_denial
Thu Apr 10, 2025 9:12 pm
Forum: The Art of Webteasing
Topic: Changing the point of view of the player
Replies: 2
Views: 1498

Re: Changing the point of view of the player

As a hetero guy, I really can't see the appeal of looking at pictures of a fictional "me" while engaging in auto-erotic activities. The vast majority of teases featuring attractive women does not seem like a coincidence to me. At least for me, the visual stimuli provided by the fairer sex's bodies ...
by undeniable_denial
Wed Oct 23, 2024 2:06 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials

According to my back-of-the-envelope calculation that amounts to roughly 596 bits of information. That would make the password close to a 100 characters long... However, that is just fine with copy&paste.

I'm sure it could be optimized further. The floating point numbers (e.g. holdfaktor) are ...
by undeniable_denial
Sat Oct 19, 2024 6:44 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials


[...]
Yes, I have already recognized this problem.
A password would then look something like this:
110010001111000230050110203301110101000111000101000....
And that doesn't work at all.
I'll read up on your method with the ascii values.

Maybe I can rewrite the password (which actually consists ...
by undeniable_denial
Tue Oct 15, 2024 2:19 am
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials

Use the "var" keyword only for the initial declaration (i.e. in the init script), not when modifying already declared variables.

To tell you the truth, it's probably best if you don't use "var" at all.
by undeniable_denial
Sun Oct 13, 2024 10:11 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials

Hi bbb

Coding is case sensitive, which means "Runs" and "runs" are two different variables.
Also "If" and "Var" won't work for the same reason.
by undeniable_denial
Fri Apr 12, 2024 9:24 pm
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials

bbb11__ wrote: Thu Apr 11, 2024 8:01 pm Is there a way to display an array as a vertical list or paragraph in EOS?
Currently it shows up as a single line and goes off the screen. And I’d rather not type out array[0], array[1], etc…

Code: Select all

var vertical_list = your_array.join("<br>");
by undeniable_denial
Sat Mar 09, 2024 12:54 am
Forum: The Art of Webteasing
Topic: Here are EOS tutorials
Replies: 232
Views: 274538

Re: Here are EOS tutorials

HerpDerp42 wrote: Fri Mar 08, 2024 2:14 pm is there any way to move pictures from one gallery to another...?
Not in the Editor afaik. I'm guessing one could edit the json file by hand, but I'm not 100% certain