Search found 136 matches

by alexei
Sat Sep 03, 2022 4:43 pm
Forum: Completed Games
Topic: Monster Boy Doctor [Yaoi Jam 2022 | FREE]
Replies: 0
Views: 2117

Monster Boy Doctor [Yaoi Jam 2022 | FREE]

https://i.imgur.com/ajhk4P0.png https://img.itch.zone/aW1nLzk4NTU1NzMucG5n/original/7%2BSReD.png On the first day of his job after inheriting his late grandfather’s veterinary clinic, Zaru Kotamu learns that for a good part of four years now, the clinic has also been secretly offering medical servi...
by alexei
Wed Jul 27, 2022 5:59 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Strange Cache issue with renpy engine (or something else)
Replies: 1
Views: 280

Re: Strange Cache issue with renpy engine (or something else)

Ok, so it was because i used another renpy version. I downloaded the old one and seems to be working fine now.
by alexei
Tue Jul 26, 2022 2:22 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Strange Cache issue with renpy engine (or something else)
Replies: 1
Views: 280

[SOLVED] Strange Cache issue with renpy engine (or something else)

Suddenly, renpy will show bgs (and sprites in some cases) glitched. https://i.imgur.com/AYVGnWj.png FYI, I tried to upload a previous version of the game and the issue still persists. Strange thing is that I copied everything from version 0.93 to version 0.92 built and it works, so the issue has to ...
by alexei
Mon Jul 25, 2022 5:07 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

Ok peeps, I tested both and it seems that what Alouette suggested initially works perfectly fine! define mc = Character("Main Character", voice_tag="mc_voice") default gender = "female" # or "male" init python: def genderVoice(id): global gender voice_tag = _v...
by alexei
Sun Jul 24, 2022 10:48 am
Forum: We are a Commercial Project looking for Partners
Topic: [CLOSED] We're looking for one BG artist and one composer / sound designer for two of our upcoming Visual Novels.
Replies: 6
Views: 1677

[CLOSED] We're looking for one BG artist and one composer / sound designer for two of our upcoming Visual Novels.

This is an unpaid project, but we're planning on splitting profits on a revshare basis. Previous games we've made - https://funigami.itch.io/ Portfolio - https://www.alexitsios.com/p/video-games.html Discord: alexei#5190 First VN is a yaoi thriller mystery story with comedic & romance elements, ...
by alexei
Fri Jul 22, 2022 11:55 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

I'll check out everything tonight and see what works! Thanks for your help, guys.
by alexei
Tue Jul 19, 2022 9:12 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

Hm, you're right. Other characters should also work. XD I didn't test it, since I never used voices, but maybe this works, assuming all other characters are inside "voice/*.ogg". You could of course make different return statements depending on all the characters. I'm not sure the _get_vo...
by alexei
Tue Jul 19, 2022 7:39 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

This function works thought

Code: Select all

default gender = "female" # or "male"

init python:
    def genderVoice(id):
        global gender
        return "voice/{}/{}.ogg".format(gender, id)
    config.auto_voice = genderVoice # or maybe genderVoice()
by alexei
Tue Jul 19, 2022 5:36 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

Hm, you're right. Other characters should also work. XD I didn't test it, since I never used voices, but maybe this works, assuming all other characters are inside "voice/*.ogg". You could of course make different return statements depending on all the characters. I'm not sure the _get_vo...
by alexei
Mon Jul 18, 2022 4:09 am
Forum: We are a Free Project looking for Partners
Topic: [CLOSED] Monster Boy Wars - Looking for a proofreader
Replies: 1
Views: 588

[CLOSED] Monster Boy Wars - Looking for a proofreader

Our team, Funigami , is looking for a proofreader for our new VN for this year's Yaoi Jam. The script is around 25k words, and it's complete. More about our game: Title: Monster Boy Doctor Short Description: A light-hearted slice-of-life rom-com with a cat boy, a wolf-boy, and a VAMPIRE, set in one ...
by alexei
Thu Jul 14, 2022 9:41 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

Thanks! Will check it out and update if it worked.

Thanks again!
by alexei
Tue Jul 12, 2022 2:20 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Play the voice's MC based on their gender using Renpy's Automatic Voice function.
Replies: 16
Views: 1066

Re: Play voice's MC based on their gender.

define config.auto_voice = None This may be a string, a function, or None. If None, auto-voice is disabled. If a string, this is formatted with the id variable bound to the identifier of the current line of dialogue. If this gives an existing file, that file is played as voice audio. If a function,...