5.00 star(s) 6 Votes

BladerayW

Newbie
Dec 1, 2018
58
28
I was wondering why there wasn't any updates for sluted lately. I find this chyoa book style game. I like sluted, so I gave this a shot. The premise is good, and a bit of humor goes a long way.

I like the whole set up for the character status and everything. Everything story wise is gold, but the absence of any picture or logo at least on the blank pages next to the text is, well, blank. It leaves the impression that something should go there. I know this is roughly new, but at the very least put a logo in the page so that we don't see a blank page. If you are not done with the art and left it blank, put the logo in and we the readers wouldn't know the difference.
 

SeaBoundJules

Newbie
Aug 3, 2023
33
10
Original image (at original size and quality):
View attachment 2815340
As seen in game:
View attachment 2815350

Just because other people making games with AI art don't put effort into it, doesn't mean I don't put efforts into it. I write my own engine(-s) and tools for the games I make, so forgive me if I'm annoyed if people suggest I'm being lazy...

Glad You liked SlutED, hope you'll eventually like this one as well ;)
the art is intriguing
 

shark_inna_hat

Active Member
Game Developer
Dec 25, 2018
681
2,632
where is the discord link
When you join via you should get an invite automagically. It might not work if you don't have your discord profile linked with the profile on buy-me-a-coffee, but there also should be a link in the welcome message and in onther messages I send there. If you don't see any messages - I'll send it all out again Monday morning. Finally if you're a supporter you can always send me an e-mail if you have problems or questions - my address isn't that hard to find, just open index.html in a text editor ;)

If you can't or won't send money, but you have a Good Reason* why I should invite You to the discord, feel free to roll your dice - my dm's are open.

Hope this helps.




*a dick pic is not a Good Reason, pls no send
 
  • Thinking Face
Reactions: LucasR0

enezwerin

New Member
Feb 7, 2023
11
3
When you join via you should get an invite automagically. It might not work if you don't have your discord profile linked with the profile on buy-me-a-coffee, but there also should be a link in the welcome message and in onther messages I send there. If you don't see any messages - I'll send it all out again Monday morning. Finally if you're a supporter you can always send me an e-mail if you have problems or questions - my address isn't that hard to find, just open index.html in a text editor ;)

If you can't or won't send money, but you have a Good Reason* why I should invite You to the discord, feel free to roll your dice - my dm's are open.

Hope this helps.




*a dick pic is not a Good Reason, pls no send
man i dont know how to send you dms but i like this game so much i constantly checked if there was an update i really wanna see the chapter 2. I mean this is good work man. Will you update the game?
 

osanaiko

Engaged Member
Modder
Jul 4, 2017
2,096
3,340
shark_inna_hat minor bugs in v0.2_Ch2:
- the text on a couple of pages just after she meets the orc's and they gonk each other to death and she inherit's their slaves is too long and overwrites the next link, gets partially cut off at the bottom, or even escapes the page border. I was playing in a non-full screen browser window in Opera (a chromium engine) browser and page zoom was 100%. Changing window size or zoom level did not help.
- when talking to Pen about the lake, despite having met and enjoyed some time with the inhabitant, the option "...there's something there" was greyed out. I guess it was supposed to be selectable.
- I like how it explicitly told the player that a "star" point was earned at one point (with the dragon maybe?). But there were other places where "magic" points were earned that just appeared with no written feedback. The notification is a E.A.sy way to give the player "a sense of pride and accomplishment"
 
Last edited:

balabasuu

Member
May 17, 2017
291
237
Well, finally someone came up with the idea of using a NEURAL NETWORK to create images for your stories. And 10 years have not passed! My applause! A new era of porn games has begun! I wonder how long it will take for other content creators to come up with this obvious solution and stop using clumsy 3D graphics programs?!
 
  • Thinking Face
Reactions: osanaiko

shark_inna_hat

Active Member
Game Developer
Dec 25, 2018
681
2,632
shark_inna_hat minor bugs in v0.2_Ch2:
- the text on a couple of pages just after she meets the orc's and they gonk each other to death and she inherit's their slaves is too long and overwrites the next link, gets partially cut off at the bottom, or even escapes the page border. I was playing in a non-full screen browser window in Opera (a chromium engine) browser and page zoom was 100%. Changing window size or zoom level did not help.
- when talking to Pen about the lake, despite having met and enjoyed some time with the inhabitant, the option "...there's something there" was greyed out. I guess it was supposed to be selectable.
- I like how it explicitly told the player that a "star" point was earned at one point (with the dragon maybe?). But there were other places where "magic" points were earned that just appeared with no written feedback. The notification is a E.A.sy way to give the player "a sense of pride and accomplishment"
The text not fitting is not a browser incompatibility problem. It's a bug in the program, a paragraph(<p></p>) is inserted where there only should be a line break (<br>). This is fixed in the supporters version (with the gallery unlocked), but is slipped through the cracks when the public version shipped.
There's the index.html with the fixes attached to this post View attachment index.zip , if anyone wants to make the fix manually:

(around line 190) change:
Python:
def _lang(txt, Class, autotranslate=False):
    txt= txt.replace("`", "&apos;")
    txt= txt.replace("'", "&apos;")
    txt= txt.replace('"', "&quot;")
    if has_flag(f'know_{Class}') or autotranslate:
        return f'''<span class='{Class}' data-txt="{txt}">{txt}</span>'''
    else:   
        return f'''<span class='{Class}'>{txt}</span>'''
to:
Python:
def _lang(txt, Class, autotranslate=False):
    txt= txt.replace("<p>", "<br>") #<--- insert this line
    txt= txt.replace("`", "&apos;")
    txt= txt.replace("'", "&apos;")
    txt= txt.replace('"', "&quot;")
    if has_flag(f'know_{Class}') or autotranslate:
        return f'''<span class='{Class}' data-txt="{txt}">{txt}</span>'''
    else:   
        return f'''<span class='{Class}'>{txt}</span>'''
and around line 208:
Python:
def I(txt):    
    return f"<span class='italic'>{txt}</span>"
into:
Python:
def I(txt):
    txt= txt.replace("<p>", "<br>") #<--- insert this line
    return f"<span class='italic'>{txt}</span>"
This might leave an orphaned </p> in the document, but that shouldn't cause problems (add txt= txt.replace("</p>", "") if you feel the need).
 

maverih345456

Well-Known Member
Feb 27, 2018
1,071
319
Well, finally someone came up with the idea of using a NEURAL NETWORK to create images for your stories. And 10 years have not passed! My applause! A new era of porn games has begun! I wonder how long it will take for other content creators to come up with this obvious solution and stop using clumsy 3D graphics programs?!

I was telling him the same thing to use different illustrations instead of AI generated images but he doesn't listen and prefer AI plus, hiring an illustrator costs a lot of money
 

Tanzie

Member
Mar 10, 2019
249
451
Buttons stop working (even the Back button) unless you pick a particular path and/or option and you cannot progress in the game. For instance, if you choose going to the lake first, instead of going to the forest and meeting the witch getting the quest etc. after a while you cannot progress due to buttons not functioning, similarly if you don't pick to learn the remove curse spell immediately (i.e. not choosing the second option and keep choosing the first option instead) you also get stuck.
 

Laughingfox

Active Member
Apr 2, 2017
841
800
Well, that was quite a bit of fun! Yes, AI art, but the writing is amusing and I'm honestly curious where the story is heading. Plus, you get to fuck a dragon. One should always give bonus points for dragon fucking.
 

ChaozEnigma

Newbie
Jun 18, 2019
84
103
Buttons stop working (even the Back button) unless you pick a particular path and/or option and you cannot progress in the game. For instance, if you choose going to the lake first, instead of going to the forest and meeting the witch getting the quest etc. after a while you cannot progress due to buttons not functioning, similarly if you don't pick to learn the remove curse spell immediately (i.e. not choosing the second option and keep choosing the first option instead) you also get stuck.
go stuck once, but before stuck i managed to save. so i just close the game and open again, voila the buttons works again.
 

thedemus

Newbie
Apr 9, 2017
90
86
Interesting game.

It's always fun when you can chose to fuck everything that moves to solve your problems. :ROFLMAO:
 
5.00 star(s) 6 Votes