Search found 48 matches

by Moshibit
Wed Mar 11, 2020 1:50 am
Forum: Ren'Py Questions and Announcements
Topic: History log whit images?
Replies: 3
Views: 254

History log whit images?

Hi everyone. Please help me solve this problem, I am trying to make a function that resives h.image_tag from the history screen. to have a picture of the character in the history log. my intention is that this function returns the name of the side images that were shown at the time. so the character...
by Moshibit
Tue Mar 10, 2020 3:17 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?

You have to run renpy.sh on the linux terminal, .exe's files are for Windows

In the terminal change the directory to your sdk and type

Code: Select all

./renpy.sh
by Moshibit
Tue Mar 10, 2020 11:55 am
Forum: Ren'Py Questions and Announcements
Topic: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
Replies: 4
Views: 454

Re: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform

I have the transition you need but it only works with images, I can't make it work with the screen. align (0.5, 1.0) pos (0.5, 1.0) size (0, 0) linear 1.0 maxsize (x, y) # replace x and y with your image size I have another version but I like it less. align (0.5, 1.0) pos (0.5, 1.0) yzoom 0.0 linear...
by Moshibit
Mon Mar 09, 2020 2:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
Replies: 4
Views: 454

Re: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform

1. Perhaps the solution is to mix the transitions with config.window_hide_transition of a transformation with "on show" and "on hide" and put a sentence "at" on the screen. Another solution would be to make another screen say and make changes to the characters objects such as: define e = Character("...
by Moshibit
Fri Mar 06, 2020 5:11 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Say statement in Menu
Replies: 5
Views: 384

Re: Say statement in Menu

I am not sure what you want to do, but you can modify the Ren'py source code, the license it has allows you to make modifications. This is clear if you have the knowledge to do it. Don't forget to make a backup. Inside the renpy SDK folder look for the renpy folder, one of the files contains the sta...
by Moshibit
Fri Mar 06, 2020 11:48 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] reset preferences button
Replies: 3
Views: 269

[SOLVED] reset preferences button

Hi. How can I make a button to reset the default preferences? Thanks for the help.
by Moshibit
Fri Mar 06, 2020 11:31 am
Forum: Ren'Py Questions and Announcements
Topic: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform
Replies: 4
Views: 454

Re: Applying a specific Transform/animation to Textbox from an "on show" function inside another Transform

Hi. Put this on top of options.rpy. Modify the times to get the desired result. It is not necessary to edit screens.rpy. transform offscreenbottom: ypos 1.0 yanchor 0.0 define my_dissolve = Dissolve(0.5) define window_in = MoveTransition(0.5, enter=offscreenbottom, leave=None, layers=['screens']) de...
by Moshibit
Wed Feb 26, 2020 1:58 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] problem with animations while displaying dialog
Replies: 4
Views: 411

[SOLVED] problem with animations while displaying dialog

To make this animation I wrote the following script. default preferences.text_cps = 15 define s = Character('Sylvie', what_suffix='"',what_prefix='"') label start: show Sylvie normal s "Text Text text {nw}" show Sylvie happy extend "Text text text." The animation works well. Makes the image change w...
by Moshibit
Tue Feb 25, 2020 1:41 pm
Forum: Ren'Py Cookbook
Topic: Speaking animation while playing an audio using layeredimages
Replies: 6
Views: 2318

Re: Speaking animation while playing an audio using layeredimages

BáiYù wrote:
Tue Dec 24, 2019 3:47 am
Wow hey, thanks for the shout out! May I add it to the LayeredImage Tutorial, crediting you of course? I've had a lot of people ask me how to do this and I could never figure out how to.
it's ok. sorry about delayed answer.
by Moshibit
Wed Feb 12, 2020 2:25 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved] differences between various types of characters
Replies: 2
Views: 452

[solved] differences between various types of characters

Hi. My question is what is the difference between using: - ADVCharacter("Eileen"), ADVSpeaker("Eileen") and Character("Eileen", kind=adv) - DynamicCharacter("player_name"), Character("player_name", dynamic=True), Character("[player_name]", dynamic=True), Character("[player_name]"), - NVLCharacter("E...
by Moshibit
Fri Jan 24, 2020 7:25 pm
Forum: Ren'Py Cookbook
Topic: FSM and Ren'Py(label)
Replies: 2
Views: 952

Re: FSM and Ren'Py(label)

Nice, this is very useful. I had the idea that complex stories should be handled by a state machine, but there was no time to program a script to do it. Muy bien amigo.