Search found 7 matches

by meiri_
Tue Jan 23, 2024 12:20 pm
Forum: We are a Free Project looking for Partners
Topic: [Free] [CLOSED] Building Yandere Jam team! Hanahaki Disease VN.
Replies: 0
Views: 963

[Free] [CLOSED] Building Yandere Jam team! Hanahaki Disease VN.

Hi! I'm building a team for my Yandere Jam entry - a psychological horror visual novel inspired by the Hanahaki Disease trope. Your sweetheart was hospitalized after you attempted to break up with them - now, the guilt is keeping you close to them. Too close. Explores themes such as identifying and ...
by meiri_
Wed Sep 01, 2021 5:55 pm
Forum: Completed Games
Topic: My GF Doesn't Know What I'm Into [Horror] [Slice of Life] [Free] [Itch.io]
Replies: 0
Views: 1586

My GF Doesn't Know What I'm Into [Horror] [Slice of Life] [Free] [Itch.io]

screenshot0007.png 🤍"My new girlfriend is so cute and sweet. I can't believe such a nice girl likes me so much. But... would she still want to be with me if she knew what I'm into? A heart-pounding visual novel telling the story of you and your new girlfriend.🤍 My new horror visual novel made ...
by meiri_
Thu Mar 25, 2021 1:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Android build - Only universal release? Can it be done?
Replies: 2
Views: 561

Re: Android build - Only universal release? Can it be done?

Hey! In your ren'py sdk folder, go to the \rapt\project\app folder You'll find a file called 'build'. Open in it a text editor, and look for the lines: include "x86_64", "armeabi-v7a", "arm64-v8a" universalApk true And edit it so it looks like this: // include "x86...
by meiri_
Fri Mar 12, 2021 5:14 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Renpy 7.4 web error: 'module' object has no attribute 'mktime'
Replies: 5
Views: 482

Re: Renpy 7.4 web error: 'module' object has no attribute 'mktime'

is it just the web function not working? is the other functions like windows/mac/android? but do your have a map or variable name mktime? Yes, only the web function. Exporting for windows, linux, mac, and android works fine with no errors. I went through my game's files and didn't find any variable...
by meiri_
Wed Mar 10, 2021 6:20 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Renpy 7.4 web error: 'module' object has no attribute 'mktime'
Replies: 5
Views: 482

[SOLVED]Renpy 7.4 web error: 'module' object has no attribute 'mktime'

EDIT: This seems to have been fixed with the 7.4.4 release! I recently updated Ren'py to 7.4.3, but I'm having trouble using the web function. I keep getting this error, which didn't occur on my 7.3.5 version, when building the application: I'm sorry, but an uncaught exception occurred. While runnin...
by meiri_
Mon Aug 10, 2020 11:32 am
Forum: Ren'Py Questions and Announcements
Topic: Playing a song before the title screen, and a different one during it.
Replies: 2
Views: 376

Re: Playing a song before the title screen, and a different one during it.

I'm gonna guess you're using the config.main_menu_music variable in options.rpy Try commenting out that option if that's what you're using, and play the dark song from the button in fakestart: button: xysize (config.screen_width, config.screen_height) activate_sound "audio/se/crash.ogg" a...
by meiri_
Sun Aug 09, 2020 1:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Playing a song before the title screen, and a different one during it.
Replies: 2
Views: 376

Playing a song before the title screen, and a different one during it.

So, I'm going through an issue with the main menu music. Usually I'd just uncomment the music line on options.rpy and call it a day, but this game I'm working on needs something different. Basically, I have a screen thats called before the main menu itself ("fakestart"), which is supposed ...