Search found 98 matches

by lsf22
Mon Mar 21, 2022 7:32 pm
Forum: Ren'Py Questions and Announcements
Topic: One Time use Cheat Inputs
Replies: 4
Views: 285

Re: One Time use Cheat Inputs

Thank you both. I went back and revised it. So far it works now and I was able to check the results with the variable viewer Here is the code: define e = Character("Eileen") default Cheat_Money = False default Money = 0 default Wellness = 0 default Cheat_Wellness = False default Cheat_Password_input...
by lsf22
Mon Mar 21, 2022 6:35 pm
Forum: Ren'Py Questions and Announcements
Topic: One Time use Cheat Inputs
Replies: 4
Views: 285

Re: One Time use Cheat Inputs

For some reason it's going to the else statement when the password "Add Money" or "Wellness Up" is entered correctly This is what the code looks like now: define e = Character("Eileen") default Cheat_Money = False default Money = 0 default Wellness = 0 default Cheat_Wellness = False # The game start...
by lsf22
Mon Mar 21, 2022 4:30 pm
Forum: Ren'Py Questions and Announcements
Topic: One Time use Cheat Inputs
Replies: 4
Views: 285

One Time use Cheat Inputs

Renpy Version used is 7.4.11 Trying to implement a cheat function for the game, as one that only allows a cheat password to be used only once Example of something I have worked on but I don't have it working correctly. That code is just a simple test of it define e = Character("Eileen") default Chea...
by lsf22
Mon Mar 21, 2022 3:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Playing Sound with Delay and Looping
Replies: 7
Views: 349

Re: Playing Sound with Delay and Looping

That worked fine for sound. But for voice what is the equivalent of that? I tried using that same code for voice and it didn't' work out
by lsf22
Thu Mar 17, 2022 4:46 pm
Forum: Asset Creation: Music, Sound, and Movies
Topic: Suggestions of Japanese woman vocalists
Replies: 1
Views: 4010

Re: Suggestions of Japanese woman vocalists

Old post but have you tried that Vocaloid software for japanese vocals? There is also a youtuber by the name of Baby Wogue that does his own using some software from Amazon.

https://www.youtube.com/watch?v=wRajEN53gQ4
by lsf22
Thu Mar 17, 2022 4:23 pm
Forum: Asset Creation: Music, Sound, and Movies
Topic: Free and Open Source Software for assets
Replies: 2
Views: 1378

Free and Open Source Software for assets

If you like me have a budget then you should definitely take a look at Free and Open Source Software to get the job done. You can see it referred to as FOSS , which is mostly used by the Linux community. As for someone who's daily driver is a Linux Operating System , I am creating my own VN from Lin...
by lsf22
Thu Mar 17, 2022 4:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Playing Sound with Delay and Looping
Replies: 7
Views: 349

Re: Playing Sound with Delay and Looping

For my sound that I want played, I want a delay of 3 seconds for it before it loops again

Code: Select all

play sound "audio/sound/Alarm_Clock_1.ogg" loop delay=?? #I've tried some codes but I'm not sure which one is actually right for the delay
by lsf22
Thu Mar 17, 2022 3:37 pm
Forum: Asset Creation: Music, Sound, and Movies
Topic: Music with no experience or budget.
Replies: 6
Views: 5674

Re: Music with no experience or budget.

It's a shame that no FOSS (Free and Open Source Software) DAW's get mentioned. You can use LMMS which is available for Windows, Mac & Linux. there are several youtube tutorials on LMMS and you can make more than just music, you can use it for your sound effects as well. There are plenty of FOSS soun...
by lsf22
Thu Mar 17, 2022 3:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Playing Sound with Delay and Looping
Replies: 7
Views: 349

Playing Sound with Delay and Looping

Renpy Version 7.4.11 If I wanted to not only have my sound play with looping but also with a delay, do I need to define that sound or can it be done with auto sound settings? Example: scene room_1 play sound "audio/sound/alarm_clock_1" loop pause # Usually when I do a scene it gets skipped over if t...
by lsf22
Sun Mar 13, 2022 8:31 am
Forum: Ren'Py Questions and Announcements
Topic: Conditional Statement "if and elif" multiple if statements
Replies: 1
Views: 391

Conditional Statement "if and elif" multiple if statements

I feel like I'm missing an understanding about the elif statement. For example in one of my flag requirements for scenes, I use multiple " if " statements because I only want that scene to activate when the requirements are met and not have the scene triggered otherwise. For example I have the use o...
by lsf22
Tue Mar 08, 2022 5:21 am
Forum: Ren'Py Questions and Announcements
Topic: Custom choice box for Item shop script
Replies: 5
Views: 288

Re: Custom choice box for Item shop script

Does this line of code relate to the one in the gui.rpy script? I'm trying to figure out how to define a font, font size and image for the choice buttons that pertain to the earlier code for my item shop. style shop_choice_button_text is choice_button_text Would I be able to include font size and te...
by lsf22
Mon Mar 07, 2022 3:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom choice box for Item shop script
Replies: 5
Views: 288

Re: Custom choice box for Item shop script

For copying the choice buttons from the screens.rpy script Im not getting it. I tried to changing a few things and it ends up changing the choice boxes outside of the item shop script as well. #Store script which is also used for testing out custom choice buttons label store: scene bg room menu: "wh...
by lsf22
Mon Mar 07, 2022 1:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom choice box for Item shop script
Replies: 5
Views: 288

Custom choice box for Item shop script

I have a few questions about custom choice boxes; 1. can I make it scroll-able 2. How can I make the box ends (the width of the box at both ends) shorter for short choices 3. How can I apply it for my Item shop script? I don't want to change the one in the gui.rpy example image of how the default do...
by lsf22
Mon Mar 07, 2022 1:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Day/Night Hub with music
Replies: 6
Views: 368

Re: Day/Night Hub with music

Thanks Ocelot, this works very well.
by lsf22
Sun Mar 06, 2022 12:33 am
Forum: Ren'Py Questions and Announcements
Topic: Day/Night Hub with music
Replies: 6
Views: 368

Re: Day/Night Hub with music

Thanks, I was able to edit it so it calls a random music track in the background. I made some changes to it so that it's part of a room based hub that has a Day/Night time cycle. I had it at first in the Day cycle but since the the day/night cycle is short and so are the activities it ends up playin...