FB: Math on Edge (Now with poll!)

All about the past, current and future webteases and the art of webteasing in general.
---

What additional feature would you like best?

Poll ended at Fri May 10, 2019 3:09 pm

Additional harder difficulty level
4
11%
Additional easier difficulty level
4
11%
Very hard fifth girl
5
13%
Medium hard fifth girl
8
21%
Easy fifth girl
2
5%
Restrict to denial/ruined orgasm at the start of the game
9
24%
Skippable texts and intros for advanced players
5
13%
Timers all the time (= no rests possible)
1
3%
 
Total votes: 38

User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

I added a poll. Please participate :-)
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

I added the option to restrict orgasms. If you choose "only denial" the goal of the game actually changes to avoid punishment instead of getting an orgasm.

I made Hardmode a bit more difficult during the last update before this one.

I am really happy with the feedback so far and in a week I will probably start writing for a fifth girl. I have an idea already. I don't know though if she will be optional or part of a harder difficulty setting. That will depend on the poll and feedback as well.
User avatar
TeasedMeansPleased
Explorer At Heart
Explorer At Heart
Posts: 227
Joined: Thu Nov 15, 2018 9:12 am
Gender: Female
Sexual Orientation: Bisexual/Bi-Curious
I am a: Submissive
Location: Netherlands

Re: FB: Math on Edge (Now with poll!)

Post by TeasedMeansPleased »

I liked this tease, very well done! It really gets hard trying to concentrate while constantly edging!
My Personal Goddess Lisa's Teases Avatar Collection:
Spoiler: show
ImageImageImageImage
Goddess Lisa's asshole licker
Goddess Lisa's Master Ruined Cumslut
Goddess Lisa's cum dumpster
Goddess Lisa's censored hentai loser
Goddess Lisa's denied prisoner
Goddess Lisa's bukkake whore
Goddess Lisa's sissy licker

Image
User avatar
lmind
Explorer At Heart
Explorer At Heart
Posts: 341
Joined: Sat Nov 10, 2012 8:15 am
Gender: Male
Sexual Orientation: Straight
I am a: Submissive
Location: California, USA

Re: FB: Math on Edge (Now with poll!)

Post by lmind »

Wonderful game! Thank you for making it.

Would you mind sharing the code you wrote for this game in EOS? This game is a great example of EOS's advanced features. I (and perhaps others) could learn a lot from it. Of course, I would understand if you did not want to share your work, for any reason whatsoever. Just figured I'd ask.

Thank you again,
-lmind
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

Hey, thanks :)

Sure, people can look at my code. I feel like there already is a way to do that explained on the forums, but I couldn't find it quickly. If I need to publish it in some way, please tell me, how.
User avatar
lmind
Explorer At Heart
Explorer At Heart
Posts: 341
Joined: Sat Nov 10, 2012 8:15 am
Gender: Male
Sexual Orientation: Straight
I am a: Submissive
Location: California, USA

Re: FB: Math on Edge (Now with poll!)

Post by lmind »

itslate wrote: Thu May 16, 2019 3:01 pm Hey, thanks :)

Sure, people can look at my code. I feel like there already is a way to do that explained on the forums, but I couldn't find it quickly. If I need to publish it in some way, please tell me, how.
Oh! I did some searching, and could not find how to get the code from EOS teases. Apologies if the question is redundant, but does anyone know how to do that?

Thank you,
-lmind
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

I don't know how to make it public, either.

The most important thing is how you handle variables. These are the game changers compared to old teases.

With code similar to this in the Init Script, you can even save it for later playthroughs:

Code: Select all

var PlayerName = teaseStorage.getItem("PlayerName") || "John"
teaseStorage.setItem("PlayerName", PlayerName)
Other than that, I probably had the most trouble with notifications. If they are timed, they kill the running action once they time out. But you can make cool stuff, like the time out button, which lets you talk to the girl and she can react in some ways.

I also used the optional if-conditions in the choice action. This is really nice to restrict options in a menu, like not allowing a girl to be played twice.

And of course the good old RNG:

Code: Select all

M11 = Math.floor((Math.random() * 10) + 1);
Gives a natural number between 1 and 10.

I used "copy page" a lot and then changed stuff rather than write it all new from scratch. This helped to forget less things, like awarding points, changing pictures and stuff like that.

Last but not least, use the API info in the editor and google javascript commands if you are not sure. Everything can be done with the "Eval" command.
Aferader
Curious Newbie
Curious Newbie
Posts: 3
Joined: Thu May 09, 2019 12:57 pm

Re: FB: Math on Edge (Now with poll!)

Post by Aferader »

Suggestions:
1. Remind users at the beginning that they can't use a calculator or notepad (nobody is scoring 120 without that). Ask for an honest answer at the end about cheating. If yes, arbitrarily reduce points to 20.

2. Add an option for Cayenne to choose the next girl. She does that and then arbitrarily adds a few points ("you trust me") or subtracts a few points ("do I have todo everything?"). Reduces user control and predictability.

3. It's too easy to skip hard rounds and accept 0 or 1 point. If the user tries that, arbitrarily subtract a few points for being lazy.
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

I like those ideas.

Number 3 is curious, though. I do play it like that to playtest sometimes to see if all the ending are correct. But if someone skips the second and third rounds, he only has 20 points in the end. So the chance he will be denied is
Spoiler: show
96% :-)
Aferader
Curious Newbie
Curious Newbie
Posts: 3
Joined: Thu May 09, 2019 12:57 pm

Re: FB: Math on Edge (Now with poll!)

Post by Aferader »

itslate wrote: Thu May 23, 2019 3:41 pm I like those ideas.

Number 3 is curious, though. I do play it like that to playtest sometimes to see if all the ending are correct. But if someone skips the second and third rounds, he only has 20 points in the end. So the chance he will be denied is
Spoiler: show
96% :-)
Your math is correct, of course, but the last rounds are hard so a player could max out points in the first two rounds and then save effort/time by skipping the third round while still getting a decent number of points.
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

I just made a pretty bug update, adding a fifth girl. I probably won't be working on the tease the next weeks, but you can still leave feedback. It is always appreciated :-)
lestrian
Explorer At Heart
Explorer At Heart
Posts: 398
Joined: Tue Aug 30, 2011 5:45 pm

Re: FB: Math on Edge (Now with poll!)

Post by lestrian »

where do i access the settings?
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

You probably didn't log in to Milovana when playing.
Either way, good point: I made accessing the settings way easier. You can go there before and after the Tutorial as well.

Here is hoping that doesn't screw anything up.
User avatar
itslate
Explorer At Heart
Explorer At Heart
Posts: 285
Joined: Tue Nov 29, 2011 5:25 pm
Gender: Male
Sexual Orientation: Straight

Re: FB: Math on Edge (Now with poll!)

Post by itslate »

I am really happy that I got such high ratings on this tease.
I just did another little update. I am considering adding an easy math-mode. Maybe just for Maria, after Kiera has been played. What do you guys think? How many points do you usually have at the end?
Iambadwithnames
Explorer
Explorer
Posts: 6
Joined: Fri Feb 15, 2019 12:57 pm

Re: FB: Math on Edge (Now with poll!)

Post by Iambadwithnames »

How do you unlock the fifth girl?
Spoiler: show
I've gotten hardmode unlocked already, anything to do with that?
Post Reply

Who is online

Users browsing this forum: BobbyPlissken, indyc and 49 guests