Dahakma

Member
Nov 15, 2019
129
542
tbby849 said:
The MC is not a demonic trash heap of a woman, so there is no real avenue for the tasks forced onto her to be cathartic in the slightest. There is no way to feel good about what the blackmailing of her by these three "Revenge of the Nerds" fuckwits, who themselves are the ones who should be put into a nightmare scenario by the MC is anything.
You don't have permission to view the spoiler content. Log in or register now.

That's always the problem for devs, isn't it? To get happy customers, you need good games. Good games have meaningful choices, meaningful choices means lots of paths, lots of paths means slow development, and slow development means unhappy customers.
Not necessary, e.g. I was Enslaved by an Evil Witch and Turned into her Maid almost doesn't have any meaningful choices or separate paths and is awesome.
 

voerman

Member
Apr 8, 2020
425
557
I Was Enslaved by an Evil Witch and Turned into Her Maid also has the advantage of having the best name in gaming history.
 

Dahakma

Member
Nov 15, 2019
129
542
I Was Enslaved by an Evil Witch and Turned into Her Maid also has the advantage of having the best name in gaming history.
I already said that somewhere else but it's true, I came up with the name first and it was so cool I had to make a fitting game.

You don't have permission to view the spoiler content. Log in or register now.
 

Aza0000

Newbie
Mar 30, 2020
37
9
anyone know if there will be any scenes animations or even photos of sex scenes? Cause reading text is cool but after some... time is not enough to satify me
 

Joe Steel

Engaged Member
Jan 10, 2018
2,457
3,323
Not necessary, e.g. I was Enslaved by an Evil Witch and Turned into her Maid almost doesn't have any meaningful choices or separate paths and is awesome.
I guess we will have to agree to disagree on that one. I stopped playing I Was Enslaved once I got bored with the mini games because there was nothing else about it that was interesting. Fake AI is much better. WWBAB is somewhere in between, because trivia contest.
 
  • Like
Reactions: jura7

raska42

Member
Feb 16, 2018
263
288
But that is what is causing me most headaches, at any scene player could be dominant or submissive, bimbo or not bimbo or something in between, wearing any clothes she wants. There should be like three major paths for each nerd and it should be possible to combine them.
Adjectives can really change a scene. While it won't completely remove the need for differing scenes, having a few widgets that select them based on the scene's path (if and a few elseif's) might make it so more of the writing can be used for multiple paths


Example

Widget code- (assumes 'scene.path' is set, likely from a previous choice)

<<Widget "expressionadj">>
<<if $scene.path is "bimbosub">>
<<print ["blank", "something else"].pluck()>>
<<elseif $scene.path is "sub">>
<<print ["meek", "obiedient", "compliant", "passive"].pluck()>>
<<elseif $scene.path is "bimbo">>
<<print ["dumb", "stupid"].pluck()>>
<<elseif $scene.path is "vanilla">>
<<print ["nervous", "anxious", "hesitant"].pluck()>>
<<else>>
This is an error, please report as error 12345
<</if>>
<</widget>>

Uses-
Seeing the <<expressionadj>> look on your face....
As you <<expressionadj>>ly stare at the hypnotic do-hicky... *note: 'passive' won't work in this situation due to the dropped 'e' without an additional widget for cropping


As for clothes, I can point you towards another game that handles them... decently. You might be able to get some inspiration from that, I'll pm you a link if desired (not sure how you feel about people plugging other games in your game's thread). From what I've seen of the clothes code I could offer you a few suggestions on how to make it fit standardized checks more easily. I'm by no means an expert in js, more of just a different stylistic approach I suspect would fit it better (it could be used to rewrite it more efficiently with easy checks, or just be used to augment the current wardrobe). Toss me a pm if intersted
 
Last edited:

Dahakma

Member
Nov 15, 2019
129
542
As for clothes, I can point you towards another game that handles them... decently. You might be able to get some inspiration from that, I'll pm you a link if desired (not sure how you feel about people plugging other games in your game's thread). From what I've seen of the clothes code I could offer you a few suggestions on how to make it fit standardized checks more easily. I'm by no means an expert in js, more of just a different stylistic approach I suspect would fit it better (it could be used to rewrite it more efficiently with easy checks, or just be used to augment the current wardrobe). Toss me a pm if intersted

Thank you for your advice!

I am using a few similar functions, although I guess I could be using more, my other game Who Wanna Be a Bimbo are using way more.

Feel free to plug any game, I am looking for any inspiration and I would gladly hear your suggestions too! However, I am not sure if will use them, I rewrote the code handling the clothes and checks and I am rather satisfied with the way it currently works.
 

raska42

Member
Feb 16, 2018
263
288
Thank you for your advice!

I am using a few similar functions, although I guess I could be using more, my other game Who Wanna Be a Bimbo are using way more.

Feel free to plug any game, I am looking for any inspiration and I would gladly hear your suggestions too! However, I am not sure if will use them, I rewrote the code handling the clothes and checks and I am rather satisfied with the way it currently works.
Spoiler for length
You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: Dahakma

Zabulon8

Newbie
Sep 30, 2019
35
48
Hello !

I've been a patron for some time so here's the online version for the 0.9.10 version for anyone interested :

Regarding that, it's too bad because saves don't work so you have to start all over again every time.

Been a while since we had a public downloadable version. Would be cool !
 

DrDerpington

Active Member
Oct 6, 2017
741
1,746
Hello !

I've been a patron for some time so here's the online version for the 0.9.10 version for anyone interested :

Regarding that, it's too bad because saves don't work so you have to start all over again every time.

Been a while since we had a public downloadable version. Would be cool !
thanks
 
  • Like
Reactions: Zabulon8

DrDerpington

Active Member
Oct 6, 2017
741
1,746
I've been a patron for some time so here's the online version for the 0.9.10 version for anyone interested :
Is it just me or does version 0.9.10 have less content than previous 0.8.81 ??

I certainly remember more random content, like piercing, more dates with guys (one romance, other was avatar fetish transformation, last was into BDSM). Now you only see 2 dates for each guy.
 

TheBat89

Member
Apr 6, 2017
140
254
Is it just me or does version 0.9.10 have less content than previous 0.8.81 ??

I certainly remember more random content, like piercing, more dates with guys (one romance, other was avatar fetish transformation, last was into BDSM). Now you only see 2 dates for each guy.
I had that problem, too -- I figured, though, that it was a bug stopping progression or something.
 
  • Like
Reactions: DrDerpington

raska42

Member
Feb 16, 2018
263
288
I had that problem, too -- I figured, though, that it was a bug stopping progression or something.
IIRC, Dahakma said something about having redone the core progression of the game, and hadn't ported all content over when this version was released (less to need to redo if there were core issues).
 

Zabulon8

Newbie
Sep 30, 2019
35
48
Yeah, I tried several times and got stuck everytime too. There are more events at the beginning of this version and the video game mechanics have been redone, but you progress even less in the story than the 0.8.81 version.

Hope the dev will release publicly a more stable version soon. I also had more bugs in thé online version.
 

Eulexia

Newbie
Jun 18, 2018
26
76
Hello !

I've been a patron for some time so here's the online version for the 0.9.10 version for anyone interested :

Regarding that, it's too bad because saves don't work so you have to start all over again every time.

Been a while since we had a public downloadable version. Would be cool !
This link is sadly already dead.
 

DrDerpington

Active Member
Oct 6, 2017
741
1,746
This link is sadly already dead.
New update 0.9.11 is out. Just change a number inside link from FAI0910 to .

But I dont think you should be playing it. New update has less content than old 0.8.81, because author started reworking old stuff. You better play old 0.8.81 that is on first page.
 

dividead

Newbie
May 1, 2017
99
124
Does it have any new content though? Also, link is dead, can you use something that does not kill uploads to fast?
 
4.30 star(s) 29 Votes