Search found 48 matches
- Thu Aug 27, 2020 8:10 pm
- Forum: Ren'Py Cookbook
- Topic: Japanese ADV Interaction Menu
- Replies: 4
- Views: 2182
Re: Japanese ADV Interaction Menu
Hello, good job, I really liked this system, I did not know the way in which Japanese visual novels were made before, it is very interesting, thanks for sharing.
- Wed Aug 26, 2020 11:29 am
- Forum: Ren'Py Questions and Announcements
- Topic: PLEASE HELP! A Teaching Feeling-styled game
- Replies: 2
- Views: 347
Re: PLEASE HELP! A Teaching Feeling-styled game
if what you need is to recruit people. there is a sub forum for that viewforum.php?f=58
- Wed Aug 26, 2020 8:12 am
- Forum: Ren'Py Questions and Announcements
- Topic: PLEASE HELP! A Teaching Feeling-styled game
- Replies: 2
- Views: 347
Re: PLEASE HELP! A Teaching Feeling-styled game
Hello, there is no framework that makes it easier for you to make a game like this, however there are tutorials and framworks in the cookbook forum that can help you, you will have to refer to them to make a game based on Teaching Feeling. Keep in mind that you have to work on the features. here are...
- Tue Aug 25, 2020 3:44 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Timed Choice Menus with timeout random choice
- Replies: 1
- Views: 255
Re: Timed Choice Menus with timeout random choice
solution screen choice(items): style_prefix "choice" default randchoice = renpy.random.choice(items) vbox: for i in items: textbutton i.caption action i.action: bar: xalign 0.5 ypos 400 xsize 740 value AnimatedValue(old_value=0.0, value=1.0, range=1.0, delay=timeout) timer timeout action randchoice....
- Tue Aug 25, 2020 1:19 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Timed Choice Menus with timeout random choice
- Replies: 1
- Views: 255
[SOLVED] Timed Choice Menus with timeout random choice
Hi, I've tried to make the choice menu pick a random choice when time runs out, but it doesn't work, always choose the first option. Can you help me? This is what I have. I have relied on this tutorial: tutorial . Thank you in advance for your help. screen choice(items): style_prefix "choice" defaul...
- Sun Jul 05, 2020 10:08 pm
- Forum: Ren'Py Cookbook
- Topic: Mark chosen choices
- Replies: 2
- Views: 1128
Mark chosen choices
An important part of the visual novels are the choices, I consider that the player has the right to know which choices he has already chosen. Here is a simple script to change the text color of the chosen choices in a viusal novel. Modify the screens.rpy script screen choice(items): style_prefix "ch...
- Thu Mar 26, 2020 9:07 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] I need help with 'with' statement
- Replies: 2
- Views: 293
Re: I need help with 'with' statement
Thank you, you were very helpful. Although the script doesn't work, you solved the question. Apparently you need to have the images off the screen before making the transition, first I solved it with a say statement, but then I remembered that there is a Pause () transition, this is the script to sh...
- Wed Mar 25, 2020 11:22 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] I need help with 'with' statement
- Replies: 2
- Views: 293
[SOLVED] I need help with 'with' statement
Hi! I want to show two images simultaneously with different transitions. is it possible for one character to enter from the right and the other to enter from the left at the same time? This script shows the two images one by one. scene bg room with dissolve show eileen at left with moveinleft show l...
- Sat Mar 14, 2020 8:19 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to pause and then play a certain track at that point?
- Replies: 4
- Views: 289
Re: How to pause and then play a certain track at that point?
Hi. The word 'pause' is reserved by Ren'Py, so use another name for the varaible. since you are placing the value inside a string it is likely that the way to pass the value is by renpy transposition, using [value]. I'm not sure about the latter. but try this: to save the pause point: $ pause_point ...
- Thu Mar 12, 2020 11:25 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to set up Ren'Py on the Linux Endless 64_86?
- Replies: 12
- Views: 616
Re: How to set up Ren'Py on the Linux Endless 64_86?
My last try, step by step. 1. open the terminal by pressing ctrl + alt + t 2. type: cd Ren'Py/renpy-7.3.5-sdk " 3. press Enter. the terminal now looks like "account:~Ren'Py/renpy-7.3.5-sdk$ " 4. type: chmod u+x renpy.sh 5. press Enter. 6. type: ./renpy.sh 7. press Enter. https://www.renpy.org/doc/ht...
- Wed Mar 11, 2020 2:54 pm
- Forum: Ren'Py Questions and Announcements
- Topic: History log whit images?
- Replies: 3
- Views: 254
Re: History log whit images?
I fix hsi, and it didn't work. Additional information, the history screen is the original of Ren'Py, and the add clause is inside the fixed
- Wed Mar 11, 2020 2:49 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to set up Ren'Py on the Linux Endless 64_86?
- Replies: 12
- Views: 616
Re: How to set up Ren'Py on the Linux Endless 64_86?
Maybe you need to grant permissions to renpy.sh , change directory with the cd command to the sdk folder. and type: chmod u+x renpy.sh and then: ./renpy.sh If this doesn't work, I don't know what's going on. I hope someone else can help you. Try sending a message to PyTom or ask for help on the Disc...
- Wed Mar 11, 2020 1:21 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to set up Ren'Py on the Linux Endless 64_86?
- Replies: 12
- Views: 616
Re: How to set up Ren'Py on the Linux Endless 64_86?
The easiest thing is to move it using the file viewer. you drag and drop it. the other is to use the terminal with the mv command, for example:
Code: Select all
mv source target
- Wed Mar 11, 2020 1:02 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to set up Ren'Py on the Linux Endless 64_86?
- Replies: 12
- Views: 616
Re: Please, copy-paste all that mast be in the terminal.
To facilitate the procedure, place the sdk folder in your Home folder. second press Ctrl + Alt + T simultaneously to open the terminal. type: cd renpy-7.3.5-sdk/ If you don't have the sdk folder in the Home folder, you will have to put the full directory path after cd finally type ./renpy.sh I think...
- Wed Mar 11, 2020 2:13 am
- Forum: Ren'Py Cookbook
- Topic: minigames on new context
- Replies: 0
- Views: 988
minigames on new context
I have seen many visual novels with mini-games, where they eliminate the rollback feature. I bring a solution so that this feature is not eliminated. This is just an example. init python: class NoRollObj(NoRollback): def __init__(self, v): self.value = v default ctrlnc = NoRollObj(False) default poi...