Search found 22 matches

by lykoia
Thu May 07, 2020 11:21 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with if statements
Replies: 2
Views: 273

Re: Problem with if statements

Milkymalk wrote: Thu May 07, 2020 11:10 am Capitalization matters. "Drama" is not == "drama"
Oh, I didn't notice!
Thank you for your help, I appreciate it a lot
by lykoia
Thu May 07, 2020 10:35 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with if statements
Replies: 2
Views: 273

Problem with if statements

Hello, newbie here. I tried to add this thing to the game that if the player is in a certain club they will go to that club room: if club == "drama": jump mondaydrama elif club == "art": jump mondayart elif club == "music": jump mondaymusic The player chooses the club e...
by lykoia
Thu May 07, 2020 9:17 am
Forum: Ren'Py Questions and Announcements
Topic: Music doesn't fadeout
Replies: 2
Views: 260

Music doesn't fadeout

Hello, newbie here. I wanted to make the music fade out but it just simply doesn't work. Here's the code: scene old-park-entrance with fade stop music fadeout 3.0 play music "forest.mp3" loop fadein 3.0 I'm not sure what I did wrong but only the fade in from forest.mp3 works but the fadeou...
by lykoia
Mon May 04, 2020 3:28 pm
Forum: Asset Creation: Art
Topic: Shading advice for a beginner! (advice needed)
Replies: 5
Views: 7414

Re: Shading advice for a beginner! (advice needed)

The best advice I can give is - use references and try to see and understand the way light works. Shading is hard but with practice and patience you can do anything, my guy.
by lykoia
Mon May 04, 2020 12:48 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Ren'py won't play a list of sounds
Replies: 2
Views: 469

Re: Ren'py won't play a list of sounds

I fixed it by using

Code: Select all

play music ["a.mp3", "b.mp3"] loop
Thank you for your help.
by lykoia
Mon May 04, 2020 12:36 pm
Forum: Ren'Py Questions and Announcements
Topic: How to change the position of the title in the game menu?
Replies: 2
Views: 296

How to change the position of the title in the game menu?

Hi, newbie here.

How do I change the position of the title in the game menu?
By that I mean the text '[screen name]' at the top of the game menu when accessed.
Sorry if I wasn't clear.

Thank you
by lykoia
Tue Apr 14, 2020 11:18 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Ren'py won't play a list of sounds
Replies: 2
Views: 469

[SOLVED] Ren'py won't play a list of sounds

Hi, I'm a newbie to Ren'py and stuff and I have a problem - Ren'py doesn't play a list of sounds, only loops the first one. I use the code play music [ "a.ogg", "b.ogg" ] fadeout 1.0 fadein 1.0 I don't know what I did wrong and I really want to play all of the sounds. Thank you.