Yes. My Discord account is goldenstarwishes
Sorry for not being as active
Noel Tugy
Creator of
Recent community posts
Taken care of that bug! It'll be fixed on the next major update (including the secret ending)
Thank you so much for enjoying the game!! <3 I had fun working on it and I'm happy people are enjoying. I will watch the let's play as I'm very curious.
Regarding that past, it'll be more clear with Love In The Dark, which might or might not get a game!
All the endings are available besides the secret bad ending which isn't complete yet, in which you have to complete the game with the starting likeness points (2), you can get it, but the rest of the route that comes with it is currently a WIP. (You can get the achievement of the bad ending, but the complete experience isn't ready yet)
You can get the Manly, true and normal ending +the rest of the bad endings! <3
Hi there, I'm a bit confused with your comment! Can you send a screenshot or a further description of where you're stuck.
There shouldn't be any note on the plastic plants, it's purely aesthetic purposes. If I understand what you mean, a secret note should be in the living room in one of the bookshelves. Hopefully it helped! Thank you for playing!
Hi there! I've followed the guide and used your plugin to add achievements in my game. Unfortunately, it didn't work and I don't understand why. I did translate TransMod version of the plugin to English and used it instead of the other plugin, I'm unsure what is the difference anyways, LOL.
If you can offer support, I'll greatly appreciate it! Keep up the good work! <3
kit_options.rpy
init -25:
define gui.use_side_image = True
define gallery.enabled = True
# If true, items in the gallery will be unlocked based on variables and instead of automatically after the player has seen them
define gallery.variable_mode = False
#"GrandmaHouse", "house", "Woods", "DeepWood", "GrandmaEntrance", "GrandmaBedroom", "village"
define gallery.items = []
# If true, items in the gallery will only unlock once all items have been seen. Doesn't do anything if variable mode is on.
define gallery.strict_multiple = False
define music_room.enabled = True
# If True, all tracks will be unlocked by default. If false, tracks will appear only once they are heard by the player.
define music_room.unlocked = False
define music_room.tracks = [
{"name": "Don't Stray From The Road", "file": "OST/Don't Stray From The Road.mp3"},
{"name": "Horror Ambience", "file": "OST/Horror Ambience.mp3"},
{"name": "Miss Riding Hood", "file": "OST/Miss Riding Hood.mp3"},
{"name": "The Way on The Woods", "file": "OST/The Way on The Woods.mp3"},
{"name": "Hunting a Wolf Down", "file": "OST/Hunting a Wolf Down.mp3"},
]
Gallery.rpy
# Instant CG and BG Gallery by Leon: https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=22465 init python: #list the CG gallery images here: gallery_thumbnails = [] gal_rows = 3 gal_cols = 2 #Thumbnail size in pixels: thumbnail_x = 328 thumbnail_y = 185 gal_cells = gal_rows * gal_cols g_cg = Gallery() if not gallery.variable_mode: for gal_item in gallery.items: if (isinstance(gal_item, list)): gallery_thumbnails.append(gal_item[0]) g_cg.button(gal_item[0] + " butt") if gallery.strict_multiple: g_cg.unlock_image(*gal_item) else: for item in gal_item: g_cg.unlock_image(item) else: gallery_thumbnails.append(gal_item) g_cg.button(gal_item + " butt") g_cg.unlock_image(gal_item) else: for gal_item in gallery.items: if (isinstance(gal_item["image"], list)): gallery_thumbnails.append(gal_item["image"][0]) g_cg.button(gal_item["image"][0] + " butt") g_cg.condition(gal_item["variable"]) for item in gal_item["image"]: g_cg.image(item) else: gallery_thumbnails.append(gal_item["image"]) g_cg.button(gal_item["image"] + " butt") g_cg.condition(gal_item["variable"]) g_cg.image(gal_item["image"]) g_cg.transition = fade cg_page=0 init +1 python: #Here we create the thumbnails. for gal_item in gallery_thumbnails: renpy.image (gal_item + " butt", im.Scale(ImageReference(gal_item), thumbnail_x, thumbnail_y)) screen auto_gallery: tag menu use game_menu(_("Gallery")): $ current_num = cg_page + 1 fixed: xpos -170 if (len(gallery_thumbnails)>gal_cells): text "Page {}".format(current_num): ypos 55 xalign 0.5 style "page_label_text" frame background None: xalign 0.5 yalign 0.5 grid gal_rows gal_cols: xalign 0.5 yalign 0.5 spacing gui.slot_spacing $ i = 0 $ next_cg_page = cg_page + 1 $ prev_cg_page = cg_page -1 if next_cg_page > int(len(gallery_thumbnails)/gal_cells): $ next_cg_page = 0 elif prev_cg_page == -1: $ prev_cg_page = 0 for gal_item in gallery_thumbnails: $ i += 1 if i <= (cg_page+1)*gal_cells and i>cg_page*gal_cells: add g_cg.make_button(gal_item + " butt", gal_item + " butt","gui/gallery/locked.png", xalign=0.5, yalign=0.5, idle_border=None, background=None, bottom_margin=24) for j in range(i, (cg_page+1)*gal_cells): #we need this to fully fill the grid null if (len(gallery_thumbnails)>gal_cells): $ pages = ((len(gallery_thumbnails)) / gal_cells) + 1 hbox: style_prefix "page" xalign 0.5 yalign 0.96 spacing gui.page_spacing imagebutton: auto "gui/gallery/page_number_%s.png" foreground Text(_("<"),style="pg_num_idle") hover_foreground Text(_("<"),style="pg_num_hover") insensitive_foreground Text(_("<"),style="pg_num_insensitive") action [SetVariable('cg_page', prev_cg_page), ShowMenu("auto_gallery")] sensitive cg_page != 0 for num in range(pages): $display_num = num + 1 imagebutton: auto "gui/gallery/page_number_%s.png" foreground Text(_("{}".format(display_num)), style="pg_num_idle") hover_foreground Text(_("{}".format(display_num)), style="pg_num_hover") action [SetVariable('cg_page', num), ShowMenu("auto_gallery")] imagebutton: auto "gui/gallery/page_number_%s.png" foreground Text(_(">"),style="pg_num_idle") hover_foreground Text(_(">"),style="pg_num_hover") insensitive_foreground Text(_(">"),style="pg_num_insensitive") action [SetVariable('cg_page', next_cg_page), ShowMenu("auto_gallery")] sensitive cg_page != pages-1
Hey! I have an issue with the gallery!
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/gallery.rpy", line 55, in script
init +1 python:
File "game/gallery.rpy", line 55, in script
init +1 python:
File "game/gallery.rpy", line 58, in <module>
renpy.image (gal_item + " butt", im.Scale(ImageReference(gal_item), thumbnail_x, thumbnail_y))
Exception: Expected an image, but got a general displayable.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/bootstrap.py", line 277, in bootstrap
renpy.main.main()
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/main.py", line 558, in main
renpy.game.context().run(node)
File "game/gallery.rpy", line 55, in script
init +1 python:
File "/home/tom/ab/renpy-build/tmp/install.linux-x86_64/lib/python3.9/site-packages/future/utils/__init__.py", line 441, in raise_
File "game/gallery.rpy", line 55, in script
init +1 python:
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/ast.py", line 1131, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/python.py", line 1061, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/gallery.rpy", line 58, in <module>
renpy.image (gal_item + " butt", im.Scale(ImageReference(gal_item), thumbnail_x, thumbnail_y))
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/display/im.py", line 877, in __init__
im = image(im)
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/display/im.py", line 1877, in image
return image(arg.target, loose=loose, **properties)
File "/home/noel/Desktop/renpy-7.5.3-sdk/renpy/display/im.py", line 1892, in image
raise Exception("Expected an image, but got a general displayable.")
Exception: Expected an image, but got a general displayable.
Linux-5.15.0-48-generic-x86_64-with-glibc2.31 x86_64
Ren'Py 8.0.3.22090809
Little Red Riding Hood 1.1.0
Fri Sep 23 00:17:33 2022
I have no clue how to solve it.
This is how I wrote my images:
#Images ##Background image bg GrandmaHouse = "Background/Entrance.jpeg" image bg house = "Background/House.jpeg" image bg Woods = "Background/Wood.jpeg" image bg DeepWood = "Background/Deep_Wood.jpeg" image bg GrandmaEntrance = "Background/Cabin.jpeg" image bg GrandmaBedroom = "Background/Bedroom.jpeg"
Thank you!
Story
Wendy is a shy and soft-spoken girl in the last year of high school, her only friends are Sophie from the same class and Katy, an underclassman. One night, her friends forced Wendy to come to a party the most popular girl in high school hosted, Wendy was somehow invited to it.
Everything went well until her friends abandoned her for their other friends and Wendy left alone to wonder aimlessly at the party. With nothing to do, Wendy went to the buffet to get a drink where accidentally spilled her drink at the host of the party.
Wendy was terrified and she didn't know how to handle this situation correctly, luckily a beautiful stranger who seem to be at her same age, saved her from the scandal. That girl is Claudia, which is a girl everyone is terrified off because she does whatever she pleases to do without giving a f*ck.
Of course, Claudia's help isn't for free, and Wendy is forced to form a vow with her, how would their relationship be? You'll decide on your own!
Features
The first chapter features:
- 1 choice that defines Wendy's relationship with Claudia
- 3 busts with multiple expressions
- 4 backgrounds (for now from online I'm sorry)
- 7 OST pieces (for now from online, I'm sorry)
Screenshots



Hellu!~ <3 my name is NoaTugy! <3 I'm a singer and a voice actress <3
Here's my demo reels! <3 https://noasgame.wixsite.com/noatugy/demoreels
I'm an artist on the anime genre and I helping a team is one of my biggest dreams♥
I'm a student and around December-January and April-May I'm busy with exams with barely no time for art but other than that I'll use all my free time for the project♥
Here's my portfolio! <3 https://noasgame.wixsite.com/noatugy
Hi there!♥♥
I would love to work for you! <3 I have a bit problems with boys but I'll try to work it out♥
Here's my portfolio<3 Good luck on your project♥
Hi!
My name is Noa Tugy! I'm a musician, an artist a writer and a game developer♥
Art and music is my biggest passion and my dream is to work with a game team and to sing and to draw for them and to write stories for them♥
I'm working on confession for quite a while and I'm having SO MUCH FUN! <3
Here's my devblog for confession: https://confessionvn.tumblr.com/
and my discord server: https://discordapp.com/invite/X3hEz7f
You can check my social medias here: https://t.co/CNxA56zNgw
