Search found 263 matches

by Thamrill
Sat Mar 09, 2024 12:00 pm
Forum: The Art of Webteasing
Topic: New tease help
Replies: 4
Views: 460

Re: New tease help

Hey there, I recently started my very first eos tease for fun but also with a goal to finish it and publish it. But I'm kinda new here and also inexperienced in scripting teases... I created my first pages, menu, settings and the start of the real tease itself, but now I'm a bit stuck, I think my a...
by Thamrill
Mon Feb 26, 2024 9:27 pm
Forum: All and Everything
Topic: Looking for old webtease with respawn on island plot
Replies: 7
Views: 1040

Re: Looking for old webtease with respawn on island plot

I'm 99% sure I should have the script of part 1 too, somewhere. I need to check but I'm currently away from the disk where it might be stored.

Also yes, deleting a tease doesn't delete the images, as the same images may be used by other teases (I will spare you the technicalities)
by Thamrill
Sat Feb 24, 2024 2:54 pm
Forum: All and Everything
Topic: Looking for old webtease with respawn on island plot
Replies: 7
Views: 1040

Re: Looking for old webtease with respawn on island plot

Hello Milovaners, several months ago (maybe one year), I've played a webtease on Milovana which I'm unable to find again. Can someone recall its name? Plot You are in a sort of parallel world. You can try to exit this world by reaching the end of the tease (eg. no cumming), and you have something l...
by Thamrill
Sat Feb 10, 2024 5:59 am
Forum: Technical Support
Topic: Validation Errors
Replies: 3
Views: 553

Re: Validation Errors

You need to assign a value to the alignment and advancement fields in a say action. The best way to solve this would be to use notepad++ and search with a regex the unassigned values and fill them.

If you want to share the script I think I can fix it quickly.

~Thamrill
by Thamrill
Fri Jan 19, 2024 7:42 pm
Forum: The Art of Webteasing
Topic: Help in creating new EOS tease
Replies: 4
Views: 780

Re: Help in creating new EOS tease

Hey there Milovana community, I've been wanting to create a new tease for a long while, but I have no expertise in the language required, I've tried multiple times to use the teasestorage and keep the variables between sessions but I can never seem to get it working. And since fapnip is gone I thin...
by Thamrill
Fri Dec 15, 2023 3:10 pm
Forum: Technical Support
Topic: [EOS] Delay when playing audio, is preloading the files the only fix?
Replies: 5
Views: 5893

Re: [EOS] Delay when playing audio, is preloading the files the only fix?

One thing I saw in the past (I can't remember which author did it) was someone loading all audio (and maybe image) at the start of the tease, stopping all the audio files, giving each one an id (for image I guess it was to cache them). In contrast, other authors load them on the go, and there is no...
by Thamrill
Sat Dec 09, 2023 6:34 am
Forum: Technical Support
Topic: [EOS] Delay when playing audio, is preloading the files the only fix?
Replies: 5
Views: 5893

Re: [EOS] Delay when playing audio, is preloading the files the only fix?

Hello All: In my teases, I found that after using the "Audio: Play" command, there is maybe a second or two delay before the audio starts when playing the tease. I was previously chalking it up to maybe power saving on my device needing a second to power on my headphones, but no that does...
by Thamrill
Sun Oct 15, 2023 8:11 am
Forum: The Art of Webteasing
Topic: PLEASE HELP!! EOS and Coding Help
Replies: 3
Views: 988

Re: PLEASE HELP!! EOS and Coding Help

I am clearly out of my depth here... I know that but I have been working on a tease and have been trying to figure how to get things to work and most of the time I just do it the long and complicated way with more if functions than should probably be legal. Anyway, my current issue is that I am try...
by Thamrill
Thu Oct 05, 2023 5:02 pm
Forum: The Art of Webteasing
Topic: [Feedback] [RELEASE] Battleship!
Replies: 19
Views: 4834

Re: [Feedback] [Unpublished] [Incomplete] Battleship!

Anyone wanna help with code? var a = [1,2,2,3,4,5,5,5] var b = 2 var c = a.filter(x => x == b).length In EOS c gives no results, it stops the tease and won’t move forward. Eos has some limitations, I don't know if due to the version of the underlying JavaScript engine, or what (e.g., it doesn't sup...
by Thamrill
Thu Oct 05, 2023 12:44 pm
Forum: The Art of Webteasing
Topic: [Feedback] [RELEASE] Battleship!
Replies: 19
Views: 4834

Re: [Feedback] [Unpublished] [Incomplete] Battleship!

Hi, there's an option to draw the grid directly in the say field; some times ago I tried making some proof of concepts that may be of interest for you: https://milovana.com/webteases/showtease.php?id=54714&key=88990b5703 This is really cool! I’ll dig into this when I have time. Is there a way t...
by Thamrill
Thu Oct 05, 2023 9:02 am
Forum: The Art of Webteasing
Topic: [Feedback] [RELEASE] Battleship!
Replies: 19
Views: 4834

Re: [Feedback] [Unpublished] [Incomplete] Battleship!

Thanks for the feedback. Sadly my limited programming skills means the computer just aims randomly and I have no idea how to modify that. I’ll look into it though. Because she’s random, I’m removing the ship placement mechanic and having them auto-placed randomly. I figure this is still fair with t...
by Thamrill
Wed Aug 23, 2023 6:13 am
Forum: The Art of Webteasing
Topic: Need help with assigning traits to girls in a tease
Replies: 3
Views: 1571

Re: Need help with assigning traits to girls in a tease

Starting from Faroe answer, another possibility (I think) is disabling the pages that do not match the criteria. A disabled page cannot be generated at random. This is all assuming the game works on random pages generation; if not, you may create transition pages where the only actions are checking ...
by Thamrill
Mon Jul 24, 2023 9:59 am
Forum: Technical Support
Topic: [EOS] creating a subroutine
Replies: 5
Views: 2494

Re: [EOS] creating a subroutine

I also tried to create a function for will loss and it tested properly. Does this look right? function willLoss(){ rand=0; rand=Math.floor(Math.random() * (6 - 1 + 1)) + 1; willmin=0; if(will>10){ will=will-rand; }else{ willmin=1; } } Thanks again! I don't know what it's supposed to do, so it's dif...
by Thamrill
Sun Jul 23, 2023 8:40 am
Forum: Technical Support
Topic: [EOS] creating a subroutine
Replies: 5
Views: 2494

Re: [EOS] creating a subroutine

Hey, does anyone know if there’s a way to create a callable subroutine that will run a series of commands. Something I can create in init then call with an eval? I’m trying to have something that will run this when triggered: Eval rand=Math.floor(Math.random() * (100 - 1 + 1)) + 1; If rand<11 >Then...