Search found 84 matches

by rusicaria
Sat Apr 29, 2023 12:34 am
Forum: Ren'Py Questions and Announcements
Topic: Slow fade?
Replies: 1
Views: 572

Slow fade?

Hello,

Is there a way to slow the transition fade, like a slow fade to black? and can you also use $ renpy.pause(_, hard=True) to make this unskippable?
by rusicaria
Wed Mar 29, 2023 9:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Show a custom name in codex?
Replies: 4
Views: 431

Re: Show a custom name in codex?

It's a custom screen, in a new .rpy file. I'm not sure what you mean (sorry I'm a noob when it comes to coding language!), but the way the codex works, is i define a new variable (a new piece of information for the codex) in the main script.rpy file, and in the codex screen I used if statements. If...
by rusicaria
Sun Mar 26, 2023 5:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Show a custom name in codex?
Replies: 4
Views: 431

Re: Show a custom name in codex?

What I'd like to do is show the players name, which they have customized, in the codex. I'm not sure how to do that, as I don't think the customizeable name is a variable that you can necessarily define as True or False? If it is, or if I've missed something, or if there is a way to do this, then I...
by rusicaria
Thu Mar 23, 2023 6:48 am
Forum: Ren'Py Questions and Announcements
Topic: Show a custom name in codex?
Replies: 4
Views: 431

Show a custom name in codex?

Hello! I've made a codex in my game, and I've done so by defining each piece of information that the player collects as True of False. Once it becomes true, it will appear in the codex. I know that there are different ways to make a codex, but this is the easiest way for me to understand, in order t...
by rusicaria
Thu Mar 09, 2023 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Unhide menu bar in script.rpy
Replies: 4
Views: 301

Re: Unhide menu bar in script.rpy

Thank you! Sorry for posting something so small, I tried searching online but nothing came up
by rusicaria
Thu Mar 09, 2023 12:46 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Unhide menu bar in script.rpy
Replies: 4
Views: 301

Re: Unhide menu bar in script.rpy

Ocelot wrote: Thu Mar 09, 2023 11:56 am Which editor do you use?
I think it's Atom? I'm not sure, but I opened Ren'Py and opened the script.rpy, and the menu bar at the top where it usually has the file, edit view etc buttons is gone. Sorry i don't know the exact words for things
by rusicaria
Thu Mar 09, 2023 11:25 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Unhide menu bar in script.rpy
Replies: 4
Views: 301

[SOLVED] Unhide menu bar in script.rpy

Hi,

I don't know how but I accidentally hid the menu/navigation bar at the top of the screen while coding. I might have toggled it off? How do I unhide it/get it back?
by rusicaria
Sat Jan 14, 2023 2:01 am
Forum: Ren'Py Questions and Announcements
Topic: Window hide/show command help
Replies: 3
Views: 273

Re: Window hide/show command help

what version of renpy are you using it would be best so we don't give you the wrong info like give python 2 when you might using python 3 I think you don't need to use dissolve when using window hide or window show that might be the problem I'm using version 8.0.3 perhaps, but during the one scene ...
by rusicaria
Sat Jan 14, 2023 1:17 am
Forum: Ren'Py Questions and Announcements
Topic: Icon stuck as previous icon
Replies: 5
Views: 315

Re: Icon stuck as previous icon

Build icons are part of building a distribution for the game. You won't see it during the development (launching the game through the Renpy launcher). You need to build a distribution for your game (renpy launcher -> build distribution) to see the changes. The built distribution (when extracted) sh...
by rusicaria
Sat Jan 14, 2023 1:14 am
Forum: Ren'Py Questions and Announcements
Topic: Window hide/show command help
Replies: 3
Views: 273

Window hide/show command help

hi, sorry ive literally just posted another topic, but i have another query. I've used window hide/show dissolve, and now i just...need it to go back to normal? since i used window hide dissolve, the window now instantly hides during every transition, and i could use window show dissolve, but then w...
by rusicaria
Sat Jan 14, 2023 12:36 am
Forum: Ren'Py Questions and Announcements
Topic: Icon stuck as previous icon
Replies: 5
Views: 315

Re: Icon stuck as previous icon

This is a common Windows error, not specifically renpy itself. Clear temporary files. The easiest way is to use task manager to force close Explorer.exe and then press the windows key + R and give it the command Explorer.exe Note that Explorer.exe is necessary for most basic functions in Windows (i...
by rusicaria
Fri Jan 13, 2023 9:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Icon stuck as previous icon
Replies: 5
Views: 315

Icon stuck as previous icon

hi, having trouble updating the icon for my vn. when i dragged and dropped the new .ico into the game directory, it gave me the option to replace existing files, which i accepted. nothing changed? it stayed the same. I've tried deleting persistent, and I've tried deleting the icon altogether and run...
by rusicaria
Sat Nov 05, 2022 9:41 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED!] HELP Create looped background
Replies: 8
Views: 348

Re: HELP Create looped background

Err, you still have "image" in image name. Or is it not part of the name and you just prepending it to actual name for some reason? The show statement looks like show <name of the image you defined before> , nothing extra. Generally it is better to define image externally with all animati...
by rusicaria
Sat Nov 05, 2022 9:16 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED!] HELP Create looped background
Replies: 8
Views: 348

Re: HELP Create looped background

I didn't notice that before, but you have a strange image name: "image image_background". As image is a reserved name in RenPy, it is inadvisable to have as either image tag or attribute, because it might lead to problems. Maybe that name is parsed as image statement declaring image_backg...
by rusicaria
Sat Nov 05, 2022 9:00 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED!] HELP Create looped background
Replies: 8
Views: 348

Re: HELP Create looped background

How your code looks now and what is the error? Did you save script file after editing? Did you restart the game? Did you try to force recompilation? It's the same error as above, only repeat <- I've been saving don't worry, tried restarting and the error is still there. Force recomp has been failin...