Search found 124 matches

by Lockvia
Mon Mar 31, 2014 6:34 am
Forum: Ren'Py Questions and Announcements
Topic: any way to set music volume by default?
Replies: 12
Views: 7876

Re: any way to set music volume by default?

I got it working now! For future references, indentation is very important! So be careful with it. python: label splashscreen: if not persistent.set_volumes: persistent.set_volumes = True _preferences.volumes['sfx'] *= .40 # You could also set 'sfx' and 'voice'. return
by Lockvia
Mon Mar 31, 2014 6:29 am
Forum: Ren'Py Questions and Announcements
Topic: any way to set music volume by default?
Replies: 12
Views: 7876

Re: any way to set music volume by default?

I tried pasting this in script.rpy but it didn't work ##Default Music and sound volumes label splashscreen: if not persistent.set_volumes: persistent.set_volumes = True _preferences.volumes['music'] *= .75 # You could also set 'sfx' and 'voice'. return
by Lockvia
Mon Mar 31, 2014 3:52 am
Forum: Ren'Py Questions and Announcements
Topic: any way to set music volume by default?
Replies: 12
Views: 7876

Re: any way to set music volume by default?

Where would you use the paste the code in? Like in which .rpy? Is it in screens.rpy?
by Lockvia
Fri Mar 28, 2014 8:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you remove the words "Quick Save Complete"?
Replies: 8
Views: 1207

Re: How do you remove the words "Quick Save Complete"?

I did what you told me to, which was not to indent it too far and it worked! Thank you so much!
by Lockvia
Fri Mar 28, 2014 7:49 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you remove the words "Quick Save Complete"?
Replies: 8
Views: 1207

Re: How do you remove the words "Quick Save Complete"?

I added this to screens.rpy but it didn't work. ############################################################################## # This is called when the quick save button is clicked. # Quick Save Completed Screen transform skip_icon_transform: xalign 0.0 yalign 0.0 alpha 0.0 linear 0.5 alpha 1.0 pau...
by Lockvia
Fri Mar 28, 2014 7:36 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you remove the words "Quick Save Complete"?
Replies: 8
Views: 1207

Re: How do you remove the words "Quick Save Complete"?

So I copy this: screen notify: zorder 100 text message at _notify_transform # This controls how long it takes between when the screen is # first shown, and when it begins hiding. timer 3.25 action Hide('notify') And put it into screens.rpy and then change the part that says "text message" ?
by Lockvia
Fri Mar 28, 2014 7:28 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you remove the words "Quick Save Complete"?
Replies: 8
Views: 1207

Re: How do you remove the words "Quick Save Complete"?

I went to find renpy/common/00action_other.rpy as you said, but I don't know which one I should copy to screens.rpy in order to change.

Sorry, I'm such a newbie with programming.
by Lockvia
Fri Mar 28, 2014 7:11 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you remove the words "Quick Save Complete"?
Replies: 8
Views: 1207

[Solved] How do you remove the words "Quick Save Complete"?

I want to find a way to remove the words "Quick Save Complete" in the top left hand corner and replace it with my own image in the middle of the screen; something like the "Yes/No" screen but it automatically disappears after 3 seconds. I've went to look around and found this: http://www.renpy.org/w...
by Lockvia
Fri Mar 28, 2014 6:18 am
Forum: Creator Discussion
Topic: Would you play commercial VN without voices?
Replies: 37
Views: 4689

Re: Would you play commercial VN without voices?

Why is it that you prefer English not to have voices?
by Lockvia
Fri Mar 28, 2014 6:06 am
Forum: Old Threads (– September 2014)
Topic: Music Composer for hire!
Replies: 9
Views: 3143

Re: Music Composer for hire!

Your music is awesome! One day I'll be coming to look for you! ^^
by Lockvia
Fri Mar 28, 2014 6:03 am
Forum: Creator Discussion
Topic: Would you play commercial VN without voices?
Replies: 37
Views: 4689

Would you play commercial VN without voices?

Lately, I've been playing a VN on my phone and the characters don't have voices, most likely because the game would be too heavy for the phone to handle. But I was wondering if people would play a VN on their computers without voice actors/actresses. Personally, I like hearing the characters' voices...
by Lockvia
Thu Mar 27, 2014 5:10 am
Forum: Creator Discussion
Topic: Would you fund via PayPal or prefer Kickstarter?
Replies: 8
Views: 1583

Would you fund via PayPal or prefer Kickstarter?

Hi! This is just a survey of which option people would prefer to fund/donate to make a game available for free. I personally don't have a credit card so I can't really use Kickstarter, but I was just wondering about other people's opinions. Would you fund for a game via PayPal or you'll still stick ...
by Lockvia
Wed Mar 26, 2014 9:58 pm
Forum: Other Story-based Games
Topic: [ENG VER confirmed] Korean GxB game Wendy's Neverland
Replies: 22
Views: 8009

Re: [ENG VER confirmed] Korean GxB game Wendy's Neverland

The art is so pretty! I hope the storyline is good.
by Lockvia
Wed Mar 26, 2014 9:45 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you remove the words "Skip Mode"?
Replies: 4
Views: 750

Re: How do you remove the words "Skip Mode"?

I've set the quick menu to have arrows around the word "Skip" whenever it's activated, so that it wouldn't be confusing for the players. So I'm hoping there's a way to make the words "Skip Mode" on the top left hand corner to be invisible.