Search found 8 matches

by Leviy
Mon Sep 23, 2019 1:30 am
Forum: Creator Discussion
Topic: using names of famous songs
Replies: 1
Views: 3565

using names of famous songs

Can I use the names of famous songs protected by copyright in my visual novel? I will not use the songs themselves. I just want to use the names of the songs to make it clear to a player what song is playing at a music concert (and a player can find and play it if he wants).
Thank you in advance!
by Leviy
Tue Sep 17, 2019 2:12 pm
Forum: Ren'Py Questions and Announcements
Topic: double-clicks when using centered
Replies: 2
Views: 580

double-clicks when using centered

Hello! I using "centered" for displaying a text. So i want displaying a text this way: centered "some text" ##here player clicks, hides previous text and showing next centered "another text" but the problem is that the player double-clicks to see "another text"...
by Leviy
Fri Aug 30, 2019 2:40 pm
Forum: Ren'Py Questions and Announcements
Topic: to assign definitions to both variables randomly at the same time
Replies: 2
Views: 480

to assign definitions to both variables randomly at the same time

I want to assign definitions to both variables randomly at the same time. If it worked, it would look like this: renpy.random.choice([inj = "none"]*20 + [inj = "light"][l_inj += 1]*30 + [inj = "serious"][s_inj += 1]*40 + [inj = "death"]*10) But surely it is no...
by Leviy
Mon Aug 26, 2019 10:19 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] simultaneous appearance of the screen and the next label
Replies: 5
Views: 748

Re: simultaneous appearance of the screen and the next label

@isobellesophia both methods don't work, because this button may be pushed from any label. i tried this function in button: hotspot (1, 0, 333, 79) action [ui.callsinnewcontext("about_me")] and I added "pause" and "return" in this label: label about_me: show screen abou...
by Leviy
Sun Aug 25, 2019 8:20 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] simultaneous appearance of the screen and the next label
Replies: 5
Views: 748

[solved] simultaneous appearance of the screen and the next label

Hello. I want the player to call up a screen with information about themselves at any time of a game and the screen to be returned to the moment of the game where he stopped. But when I click on the button with the appearance of the information screen the transition to the next label occurs. Please,...
by Leviy
Fri Aug 23, 2019 11:43 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Screen with choice of gender
Replies: 2
Views: 546

[solved] Screen with choice of gender

Hello. I want to do choice of gender of character at the beginning of the game. I decided to realize that through screen in "screens.rpy". But how do I assign the result of choice to a specific variable in "script.rpy"? screens.rpy. screen choise_gender: vbox align (0.5,0.5): ima...
by Leviy
Sun Dec 23, 2018 5:29 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Pause without spaces
Replies: 1
Views: 214

[solved] Pause without spaces

The simplest question I could not find anywhere else: How to add a pause between sentences / words / letters in the nvl-mode? (!!!) Without adding a space between them and moving to the next line.
Thanks in advance for your help.