Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Dreamty Games

189
Posts
11
Topics
1,845
Followers
31
Following
A member registered Jul 08, 2022 · View creator page →

Creator of

Recent community posts

The game was first made for a game jam in a limited time frame. Then later on it got a major update that include updated art, voicelines and an epilogue. During the download you can choose to play the 1.0 or the 2.0 just check which version you’re downloading.

And yep the game is complete.

I’m glad to hear that despite it’s short time the game managed to make you feel strong emotions !

Hi hi there, I just want to notify that this is comment would have been more appropriate in LMT comment section and not my out of hiatus announcement. :}

Let’s meet tomorrow is complete and won’t have any more additional game content, the only thing that will be added is potential bug and typos fix. Now to clarify, Silas wasn’t disappointed that mc may have left, he was on edge because he thought he got discovered and mc left by the backdoor to call the cops on him which would have made it harder to cover his tracks.

It is not, you never get his real name in the storie.

(1 edit)

And here is an exemple of when the variable get used in game :

#if any pronouns
if mc_pronouns_any == True:
    mc "I use any pronouns."
else:
    # otherwise based on customization selection
    mc "My pronouns are {nw}"
    if mc_pronouns == 0:
        extend "she/her{nw}"
    elif mc_pronouns == 1:
        extend "he/him{nw}"
    else:
        extend "they/them{nw}"
    extend "."
# Start game here.
label start:
    scene black

    # jump temp #Uncomment to jump to the temp label for testing purposes. (temp.rpy)
    jump mc_customization


###########################
# Choose name for MC
label mc_customization:
    "Welcome to the start of this wholesome and adorable romance game !"
    "To start your whimsical adventure in the enchanted world of love, I will need some information on the character you'll be playing."

label mc_customization2:
    # Allow certain characters + name length limit.
    $ name = renpy.input("What name will you give your character ?", allow="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZéèëç-", length=20)

    # remove spaces, replace capital letters, etc.
    $ name = name.strip()
    $ name = name.replace(" ", "")
    $ name = name.lower()
    $ name = name.title()

    if not name:
        "Please enter a name silly !"
        jump mc_customization2

    elif name == "Erinna" or name == "Erina":
        achieve taken
        voice erinna_v1
        "This name is taken, please choose a different name."
        jump mc_customization2

    elif name == "Leila":
        achieve taken
        voice taken_leila
        "This name is taken."
        jump mc_customization2

    elif name == "Aissata" or name == "Aisata":
        achieve taken
        voice taken_aissata
        "This name is taken. Please choose another name !"
        jump mc_customization2

    elif name == "Rowan" or  name == "Rowane":
        achieve taken
        voice taken_rowan
        "This name is taken, please choose a different name."
        jump mc_customization2

    else:
        "You chose the name [name] right ?"

    menu:
        "Yes": #continue game
      
            jump mc_gender_choice
        "No": #reselect
      
            "let's fix that."
            jump mc_customization2


###################
# Gender choice
label mc_gender_choice:
    "Wonderful !"
    "Now, tell me what gender would you like to choose for your character ?"
    "This choice may impact the storyline but won't stop you from dating anyone."

    label gender_loop:
        menu:
            "Cis Woman":
          
                $ mc_gender = 0

            "Trans Woman":
          
                $ mc_gender = 1

            "Non-Binary":
          
                $ mc_gender = 2

            "Why is there no men option ?"if men1ew == False:
       
             jump nomen


        "Your character is {nw}"
        if mc_gender == 0:
            extend "a cis woman right {nw}"
        elif mc_gender == 1:
            extend "a trans woman right {nw}"
        elif mc_gender == 2:
            extend "non-binary right {nw}"
        else:
            extend "ERROR: could not log response, please try again."
        extend "?"

        menu:
            "Yes":
          
                jump pronoun_choice
            "No":
          
                "Let's retry then."
                jump gender_loop

        label nomen:
        $men1ew = True
        "Because this is a sapphic game intended to a sapphic audience."
        "This story is build around specific topics and wouldn't work with a man protagonist."
        menu:
          "But what if I still want to play a man ?":
           "Well then..."
           $ renpy.quit()
          "Okay I understand":
           "Thank you."
           achieve Sapphic_game
           jump gender_loop


###################
# Pronoun choice
label pronoun_choice:
    "Notes taken."
    "Final question !"
    "Please choose the pronouns of your character."

    label pronoun_loop:
        menu:
            "She/Her":
          
                $ mc_pronouns = 0
            "He/Him":
          
                $ mc_pronouns = 1
            "They/Them":
          
                $ mc_pronouns = 2
            "Any":
          
                $ mc_pronouns_any = True

        # "You've chosen {if mc_pronouns == 0}She/Her {elif mc_pronouns == 1}He/Him {else}They/Them{/else} ?"

        "You've chosen {nw}"
        if mc_pronouns_any == True:
            extend "Any {nw}"
        elif mc_pronouns == 0:
            extend "She/Her {nw}"
        elif mc_pronouns == 1:
            extend "He/Him {nw}"
        elif mc_pronouns == 2:
            extend "They/Them {nw}"
        else:
            extend "ERROR: could not log response, please try again."
        extend "?"


        menu:
            "Yes":

                jump prologue
            "No":
                "Let's try again."
                $ mc_pronouns_any = False
                jump pronoun_loop

The first one is way more complex so I can’t help you if it’s that you’re trying to achieve ( re reading the notice and copy pasting in your project to figure it out is an option )

If you’re okay settling for a simpler code then I can share you the one I used in my game as exemple. Copy paste the same code into your game to try and then adapt it for your storie (I’ll add it in a second reply )

Hi there ! I can be of help depending of what you’re trying to achieve in your game. Do you want to do something similar to the in dept pronouns system made by fenik ( this one ) or something more basic like letting player choose between she / he / them to then have variation later in the storie ? Else if it can be of any help there is these two system exemple available to use on itch, this one and this one

Omg nightshift ?!? This was my first game ever I’m quite surprised you played it what an honor 😭♥️ YOU’RE AWESOME ! YOU MAKE COOL THINGS!!!

Omg I didn’t expect to be known when I made that comment cisifizj thank you so much that really really sweet !

(1 edit)

Had a great time playing, the whole ambiance was really nice and I liked the creepy athmosphère of forced proximity with Ilya. A very impressive first game you did so nice !Keep up the good work I’m really exited to see what more can come of it ! :}

Ehehehe twirling my hair and kicking my feet as I type this, their dynamic was real fun to read about. Such a lovely game ! Would definitely come back for a longer version you mentioned wanting to do ! Keep the good work !

The 1.0 is the og version of the game that was made for the game jam. It end with 3 endings. The 2.0 is the update that has improved artworks + an epilogue that add to the base game.

There is only 3 endings to the first part of the game (which were the endings of the og game ) they all depend of what choice you make when the plot twist appear and mc is scared in their house. This won’t change the general ending of the second part, appology for the confusion

The two first endings are separated by a single choice, looking through the keyhole or walking away. They automatically lock the ending it’s in. :} ! You then get the special ending by starting a new game after finishing a party once.

Sadly yeah…

She’s dating Elise in 21q ( her first gf ) and in apple bag you learn from Elise that she dumped Aurore by text after realising she was straight. This events happened when they were 18/19 years old.

In this game Aurore is 23 years old and mention that she used to spend time on dating apps and how her last relation was toxic ( the ex referred at the one who ghosted her and tried to hit on mc ). Poor girl didn’t catch a break in disastrous love events for 4 years.

This happen 4 years after 21questions :3 !

I think there is a misunderstanding here, real Silas got weirded out that mc spent a whole day with someone else without realizing it wasn’t him + kissed the guy pretending to be him. It’s quite awkward for him to face that their friend don’t know them to such a strong extent.

Also fake Silas didn’t read the messages + didn’t wore the right shade of purple.

Yup yup ! There is 5 names variations :}

Oh wait I realized, it might be the giant Eye file hidden in the game. Sorry I only remembered now. Glad you could still play the game regardless and that you liked it !

The game don’t have any suspicious files but what you computer probably detect is the files being from unknown source. Normaly you have an option to check more on the pc analysis and then continue download regardless.

I’ve been waiting for the update since the first demo of 2024 and I’m so happy with it !!! Loved all the new content, artworks and gui improvement !!! Trully an even better game than before heading well with beautiful art, gui and lovely storyline ! I’m enjoying it so much it’s def a favorite of mine. Also damn that clifhanger… Aouch… CAN’T WAIT FOR THE REST I’M SO EXITED !!!!

Time for the result of colorful love Jam ! Here below all the game winning in their category. Reminded the ranking of this jam was mainly for fun and to motivate people to play each other’s game, each participation was good !

***Respect of the Jam Theme : *** Golden Until Blue and Ice Breaker

Scenario : The Ships of Men

Visuals / Sound design : Lost&Found

General game experience : Golden Until Blue

**Congratulation on everyone and big bravo to everyone who participated in the jam including : **

-Hot or Iced

-3/4 spell swap

-The BookClub

-Raduck Express: Cross-Realm Delivery

-At Aira Aidros

I wanted to take the time to share my thanks to everyone who participated, intended to participate or simply supported the event by talking about it. Every participations was lovely and I’m grateful to know this jam was the push needed for some people to make their own game !

I intend to continue this jams in the following years but moving it from august / december to july / november. So the time frame would fall during a more calm period. Feedback regarding the event organization and generak how the event have been would be gladly appreciated to ensure that next year will be even better !

Thank you everyone, and happy hollidays soon if you celebrate !

Dahlia screaming HELL YEAH was such a cute moment from the start cbhsdebfchzv Lovely story and one with very sweet trans rep ! I had a good time playing and i’m curious of how the story will develop ! Bravo on your game !

(1 edit)

Such a fun concept I only realized mid playing that it’s technicaly an isekai ! I had a lot of fun playing and all the characters have their charm in design I can’t wait to see them ! ( I really liked Myr ) + i’m a big fan of the sound and character design. Bravo on your game !

Such an interessing premise and love interest ! I’m gonna repeat what Zephyrean said but it’s such a refreshing take to have a dark skinned enby love interest described and loved with such gentleness ! Bravo on your first game !!!

Such a beautiful game i’m impressed ! Really great sound and visual design + the story is so interessing ! It’s such a cool concept to be playing the yandere in this scneario, even more so one who has such human issues ! Really loved the demo and I can’t wait to see more of the game in the futur !

Also the ikemen vampire ref killed me djbchbsq

Such a beautiful game i’m impressed ! Really great sound and visual design + the story is so interessing ! It’s such a cool concept to be playing the yandere in this scneario, even more so one who has such human issues ! Really loved the demo and I can’t wait to see more of the game in the futur !

Also the ikemen vampire ref killed me djbchbsq

(1 edit)

HELLO EVERYNYAN !

Today was the final day for submiting games for the jam so now we’re officialy entering rating phase ! Please do play the other games and rate fairly the other entry. Have a good fun and let’s see who ends up with the honnor this year !

I hope everyone had a good time during production.

Hi, your game got removed because after revision it didn’t fell into the rules of the jam.

The characters need to be romanceable ( so starting as non romantic and becoming romantic to the player or the character played by the player ) and your game is about two characters already being in love.

Hi everyone ! I hope development is going well. As I’ve seen multiple people struggling with finishing their game or wanting to join last minutes I’m making the decision to add 2 weeks to the jam. The new deadline is December 14.

The one you’re missing is sapphic game achievement. I checked and there is no bug so you may have missed an option / didn’t finished the sequence needed for it.

hii thank you for your hilarious comment jqshcdbhqsc

Goodbye love is the only romance ending yes ! But Clem will be back as a lover interest in a future other game so more romance content ( yay ) Have fun playing the other games too ! And have a good day.

ehe i’m responding a bit late but i’m glad you had fun playing !!!!

I’m happy you got to enjoy the game that much ! Thank you for your sweet comment <3

Thank you for your sweet and kind comment, it’s appreciated <3

Op i’m gonna need you to mail me this plushy- ( it looks really cute i’m impressed by your skills !)

I really appreciate that you felt like sharing my game with your friends and that all of you got to enjoy it, it means a lot. Thank you for your kind comment it goes straight to my heart. May you have a wonderful day.

As a big fan of our life myself i’m really happy you enjoyed playing this game ! thank you for your kind comment <3

Hi everyone and hope the game jam is going well for you ! I decided to drop here some more renpy assets ( codes and tutos mainly ) in hope it can be of any use for some of you !

-A gui pack that imitates the Youtube interface

-Astrology kit, a fancy gui pack with rotation asset code

-A template for phone messages

-More transformation / Movement effects

-In depth pronouns system code

-Timed choice menu

-Renpy inline tooltips

Hope this can be of any help or just give some ideas for all of you ! May developement goes well !

hold you hand when i’m gonna say this no… but there is a full update coming soon-