text stringlengths 0 40.9k | label stringlengths 5 23 | dataType stringclasses 2
values | communityName stringlengths 5 23 | datetime stringclasses 32
values |
|---|---|---|---|---|
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
Hello!
I'm in the same boat as you. My first project sounds rather similar to what you're planning on doing. While I'm really interested in what more experienced creators would recommend, here's what I can tell you:
- I believe it can be done in Ren'py, but it's going to be significantly more complicated than the VN ... | r/renpy | comment | r/RenPy | 2024-27-08 |
Thank you very much for your answer
Do you maybe have a link to see your first project ? | r/renpy | comment | r/RenPy | 2024-27-08 |
Not yet, I'm afraid. It's still very much a work in progress, and it's going to be months before it's even remotely playable. It's at the stage where I've got most of the story ready, sourcing the images, and wondering which program would be best at turning this mess into something even vaguely deserving of being calle... | r/renpy | comment | r/RenPy | 2024-27-08 |
This sounds *exactly* like my games! :) And they’re all made in Ren’Py so it definitely works: https://store.steampowered.com/app/2077080/Pitstop_in_Purgatory/ | r/renpy | comment | r/RenPy | 2024-27-08 |
I've done a point and click game in renpy and the actual point and click part is really not that bad and has plenty of support (code wise) to be done in renpy.
Its the drag and drop stuff that renpy struggles with specifically but even that has gotten a lot better in the last few years. But, simple point and click st... | r/renpy | comment | r/RenPy | 2024-27-08 |
Adventure Game Studio? | r/renpy | comment | r/RenPy | 2024-27-08 |
I want to create a nvl style scrolling text visual novel, where, to obviously prevent the scroll-able text from getting far too long, it's split up into chapters.
Furthermore, and really the hardest bit I've been trying to do, is that I want to make portraits for the texts to go to the left of them, like Baldur's Gat... | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
I've seen simulations of mobile phone screens in RenPy which work something like that. image + text. I would look at those and adapt them to your needs.
[https://nighten.itch.io/yet-another-phone-renpy](https://nighten.itch.io/yet-another-phone-renpy)
[https://badmustard.itch.io/phone-message-system-for-renpy](https... | r/renpy | comment | r/RenPy | 2024-27-08 |
Hi, I'm trying to change the position of the screenshot slot that's in the load screen, but I looked through the code and I can't find any, and the ones that I found doesn't seem to be working? (I created a frame like asset for the screenshot picture but I can't change the position of the screenshot to match it, I've a... | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
I'm no expert and I don't know what your code looks like, but have you tried adding xpos and ypos next to "add FileScreenshot(slot)" in screens.rpy?
That's what I did to my project and although it took a lot of trial and error to find the right coordinates (I'm sure there's a better way to do it), it worked! | r/renpy | comment | r/RenPy | 2024-27-08 |
Hi! Thank you so much!! I used yoffset and xoffset and It worked 😭😭🤎🤎🤎 | r/renpy | comment | r/RenPy | 2024-27-08 |
Oh I always forget those exist, glad you made it work :D | r/renpy | comment | r/RenPy | 2024-27-08 |
I know how to create a hover sound, but how do I put a sound when you are actually clicking an option? | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
If I recall correctly, I believe you do the same thing you did (with idle and hover), but you add selected this time and add action Play(“audio/sound_effect.ogg”)
So it might be something like this:
idle cursor
hover glowing_cursor
selected click_cursor
action Play(“audio/sound_effect.ogg”)
cursor, glowing_cursor... | r/renpy | comment | r/RenPy | 2024-27-08 |
Where? In a screen? If so, each type of button has a style parameter named `activate_sound`. You just add the filename (or variable of the filename) that you want played. Like:
define click = "audio/click_sound.mp3"
. . .
textbutton "Click Me" activate_sound click action NullAction
It can get pretty annoy... | r/renpy | comment | r/RenPy | 2024-27-08 |
It keeps saying that "activate\_sound" doesn't exist. I have this for the hover. Can I change the "hovered" for something else?
hovered [ Play("sound", "audio/click.wav") ] | r/renpy | comment | r/RenPy | 2024-27-08 |
Wouldn't recommend it. The problem is that you may use the sound channel to play sounds during the game. If you went into your screen and clicked on a button, it would stop that sound.
What version of Ren'Py are you using? `activate_sound` has been around since version 6.99.2. You should be [running 8.3](https://renpy... | r/renpy | comment | r/RenPy | 2024-27-08 |
Hi guys! I'm looking to create a VN in RenPy but I'm completely new to coding. I've watched some tutorials, but I was wondering if anyone has/knows of a "create-with-me" type tutorial, where I would just follow along and make something simple to get my feet wet? Kind of like animating the ball bouncing as the first les... | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
Don't know of this exact kind of video for Ren'py (though there are many that are close) but I would suggest playing the built-in tutorial game "The Question" which you can launch from the Ren'py browser and then open up all the code for.
Reading along with that and seeing what code corresponds with what is how a lot... | r/renpy | comment | r/RenPy | 2024-27-08 |
[https://www.youtube.com/@GameDeveloperTraining](https://www.youtube.com/@GameDeveloperTraining)
Check this guy out. He has tutorials on renpy, daz and also very cool let's code where he creates a game from scratch. | r/renpy | comment | r/RenPy | 2024-29-08 |
I was looking into making a light novel game and ren py seemed like the best free option. But both when downloading it from the site renpy.org and when trying to open it on my pc, windows warns me and tells me that the file could be dangerous. What should I do? Is the engine safe? Should I ignore the warnings? | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
Yes, it's safe. It's being warned about as a download due to the .exe file in it and then when opened due to it not being a commonly used program. | r/renpy | comment | r/RenPy | 2024-27-08 |
maybe don't spread misinformation? The reason it's flagged as unsafe is because the devs are too lazy to get the software signed and windows defender does not like unsigned software. | r/renpy | comment | r/RenPy | 2024-27-08 |
Ignore the warnings, it’s safe. If it wasn’t, there most likely wouldn’t be a community here asking questions for help on their projects (using Ren’Py). | r/renpy | comment | r/RenPy | 2024-27-08 |
Windows is a whiny little bitch, ignore it. | r/renpy | comment | r/RenPy | 2024-28-08 |
You know what, I actually didn't know about getting software a signing certificate so you're right, this *is* misinformation! However I don't think it's a case of the devs being lazy, I think that's a little presumptuous. Reading a few posts from software developers on blogs, independent news sites, etc, it seems that ... | r/renpy | comment | r/RenPy | 2024-28-08 |
hello everyone I just made my first ever game on ren'py and would love any feedback that you can give I know it's not very good but I will strive to make it better so please give it a chance
[https://split-studio.itch.io/longinus-demo](https://split-studio.itch.io/longinus-demo) | r/renpy | post | r/RenPy | 2024-27-08 |
Promote it some more!
What’s it about?
What kind of people would enjoy this game?
What are the highlights of the game? | r/renpy | comment | r/RenPy | 2024-28-08 |
r/renpy | post | r/RenPy | 2024-27-08 | |
[https://zaphassets.itch.io/yusuke-the-school-boy-vn-character](https://zaphassets.itch.io/yusuke-the-school-boy-vn-character)
Yusuke the school boy enters the ring! Yusuke is the quiet and mysterious one, but he actually wants to be noticed and be known thoroughly.
He is part of the School VN pack!
Join my pat... | r/renpy | comment | r/RenPy | 2024-27-08 |
Nude version..? | r/renpy | comment | r/RenPy | 2024-28-08 |
Yea, why do you ask? By the upvotes count, I’m starting to think that maybe people think he is underage but all my characters are 18+ it just on an school setting 🤔 | r/renpy | comment | r/RenPy | 2024-28-08 |
Kinda looks like a Jojo character, ngl. | r/renpy | comment | r/RenPy | 2024-31-08 |
Thanks! That’s a really nice compliment 💜 | r/renpy | comment | r/RenPy | 2024-31-08 |
I'm compiling my game after making some changes, adding some new images and such. The compiled distribution keeps ignoring the new images (they are not being added to the zip file), "old" gui image such as the cover keeps appearing even when it's not in the project folder. The changes to the scripts are being added to ... | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
do you ctrl + R to reload the game window to look for changes? and make sure the images your changing have the correct names in the variables?
if so, try deleting the rpyc files of the files your changing and compile again | r/renpy | comment | r/RenPy | 2024-29-08 |
Trying to make a "chapter screen" like in half-life (kinda)
ex, text saying "Chapter 0 - Placeholder" centered in the middle of the screen that appears, then fades out and goes back to dialogue
ty!!! | r/renpy | post | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
the easiest way is like this
e "The end of the chapter"
scene black
show text "Chatper 1 - Place holder" with Dissolve(2.0)
pause 3.5
hide text with Dissolve(2.0)
scene theSceneImage
e "The start of the next chapter"
or if you want to use the same cod... | r/renpy | comment | r/RenPy | 2024-27-08 |
I use splash screen for showing text on screen, especially if it’s showing an image.
For an image, you could do something like this:
image chapter0 = “chapter_0_screen.png”
and once you reach label chapter_0, you can show the image below it like this:
show chapter0 at truecenter with dissolve
pause 1.0
hide chapt... | r/renpy | comment | r/RenPy | 2024-28-08 |
For the second method, you might also want to define numerals and textuals with the default code.
default numerals = 0
default textuals = None
- not sure if “None” is the best approach for this variable since it is used to display text though.
What’s your thoughts? Any suggestions on improving this? | r/renpy | comment | r/RenPy | 2024-28-08 |
i wouldn't give them defaults, no reason to put them in the save file, at best something like this
label chapters(numerals=100, textuals="You forgot something"):
so if you did call chapters without them, you would see your mistake(hopefully)... | r/renpy | comment | r/RenPy | 2024-28-08 |
So is just typing label chapters(numerals, textuals) considered defining those two variables?
Because as you know, if you don’t define them in some way, Ren’Py won’t know what they represent, what they mean, or what they are referring to. Thus, leading to an unexpected error (from the program getting confused). | r/renpy | comment | r/RenPy | 2024-28-08 |
they don't need to be defined like normal variables, renpy will just use them without getting confuzzled.
when you use them, they are referred to as the variables in the label statement that sort of defines them for use in this instance, and they can only be used in that label try to use them outside the label and brr... | r/renpy | comment | r/RenPy | 2024-28-08 |
Is it the () in the label that defines them? | r/renpy | comment | r/RenPy | 2024-29-08 |
i don't know programmatically what it does, but they are used as variables in that label and after the return if you try to access them you will get an error | r/renpy | comment | r/RenPy | 2024-29-08 |
Well, it sounds like the () is the only thing defining those variables. Programmatically speaking, if you try using undefined variables, you will get an error due to the program not knowing what it’s supposed to be used for or what its purpose is.
Does it have a value? Is it used as an integer, True/False, or has Non... | r/renpy | comment | r/RenPy | 2024-29-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-27-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
r/renpy | post | r/RenPy | 2024-28-08 | |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
In this game you can click on the characters and change their outfit as soon as they wear it for the first time (they only change it in the menu tho)
I watched a few tutorials and read some posts but I just don't understand how to code something like this even though it's probably not that hard
thanks in advance! | r/renpy | comment | r/RenPy | 2024-28-08 |
you could ask caribdis himself in his ds server if they can give you some tips | r/renpy | comment | r/RenPy | 2024-28-08 |
If what you're trying to do is a function for unlocking the outfits, I think I would add a variable to each of them to define wether they are locked or unlocked. For example:
label outfit_setup:
$ outfit1 = "locked"
$ outfit2 = "locked"
label start:
call outfit_setup
#Add ... | r/renpy | comment | r/RenPy | 2024-28-08 |
What's stopping you from looking directly into the code of that game? You can always use Unren to unpack it if it's build is classified. | r/renpy | comment | r/RenPy | 2024-28-08 |
Take a look at the source code. Use unren to extract this game . And take a look | r/renpy | comment | r/RenPy | 2024-28-08 |
I actually have something very much the same to this in my own Game.
İt's a simple screen, with İmagebuttons.
You have the BG İmage the Wall and then your add those fancy İmagebuttons :)
İt's a very simple code once you understand how screens work.
Hit me up if you need any help :) | r/renpy | comment | r/RenPy | 2024-28-08 |
Ok, that is a bit more work but literally the same code. I have a Wardrobe feature in my game where you can check out the Clothes that currently in game, with the option to even undress them or flash the top.
What you need to have are still images of those different form the Clothes have and then you give the player t... | r/renpy | comment | r/RenPy | 2024-28-08 |
Game name | r/renpy | comment | r/RenPy | 2024-28-08 |
# Eternum by Caribdis | r/renpy | comment | r/RenPy | 2024-28-08 |
image buttons? Wouldn't an imagemap do better in that scenario? | r/renpy | comment | r/RenPy | 2024-28-08 |
Yeah but he is also talking about making a Wardrobe feature with different images for the girls.
Obviously you can make a imagemap, but you have more control over the İmagebuttons. Also if you want to change for example a picture of the girls in the imagemap, you would have go and edit every image in the map, while fo... | r/renpy | comment | r/RenPy | 2024-28-08 |
You culd use various imagemaps maybe | r/renpy | comment | r/RenPy | 2024-28-08 |
guys I did it
I love every single one of you
I'll name my firstborn after one of you | r/renpy | comment | r/RenPy | 2024-29-08 |
Yeah this. | r/renpy | comment | r/RenPy | 2024-29-08 |
I wish that was possible, new users can't talk in there anymore | r/renpy | comment | r/RenPy | 2024-30-08 |
I wanna create textboxes that change colors based on who is speaking. I have a prototype image, the base color is white, so I can tint it(and keep transparency of Alpha).
I tried something like this:
define p = Character("Paulo" , color="#66d9ff", window_background= Frame("gui/textbox-test.png",10,10))
But I do... | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
basically i want to have the namebox to the right if the character on the right is talking, and to the left if the character on the left is talking. help?
https://preview.redd.it/h112dhx6vcld1.jpg?width=1280&format=pjpg&auto=webp&s=d3b6c6e0b94f01559d2f1b29b54723283ffdcaa6 | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
hi, i'm trying to figure out how to assign different textboxes to each character. this is the code i used:
`(define fir = Character ("", window_background=Frame`(`"gui/textbox_fir.png"))`
the textbox shows, but the image is stretched wide and compressed and i have no idea how to fix it, when i remove the 'Frame' it's... | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
Good day, i'm sorry if such question was answered and i haven't seen it, but i've encountered a problem, when i was trying to find game's dialogues, but after checking script and different folders in the /game folder, i couldn't find the file, that contains game's dialogues. May i ask, if Anyone knows where i should lo... | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
readable dialogue and scripts would be in rpy files. this is the version you can edit/read (unlike rpyc files, the compiled version)
assuming it's someone else's game, they likely just included the rpyc files, or rpa (archive, kind of like zip files) in this case you could look [here](https://www.reddit.com/r/RenPy/w... | r/renpy | comment | r/RenPy | 2024-29-08 |
i see, thank You very much for sending information about these files, but there is one problem i think, i can't seem to find rpyc or rpya files anywhere 😅. There are only PY, PYO and RPY files. Although RPYC files are being mentioned in the code, they are nowhere to be seen in game files. | r/renpy | comment | r/RenPy | 2024-29-08 |
i apologise, i've found a folder with RPYC files, but it seems that files in there are bot RPY and RPYC. Should i still decompile them? And i think that there is no "script" file. | r/renpy | comment | r/RenPy | 2024-29-08 |
if the files have the same names (e.g. act1.rpy and act1.rpyc) those would most likely be the same file, so you could open the rpy file with a text editor like notepad++ without having to decompile it | r/renpy | comment | r/RenPy | 2024-29-08 |
i see, thank You for explaining! i was trying to use search bar in Visual Studio and tried to look for names of Characters in game, but it seems that there are no files with Character names, so it made me think if the game has a file with dialogues? Although there are dialogues in game, meaning that the game may read t... | r/renpy | comment | r/RenPy | 2024-30-08 |
Whenever I try to make a button, it just runs automatically without my input. How do I make it so that it only runs when my mouse is touching it and my mouse is down? | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
action [enter action you would like it to make] | r/renpy | comment | r/RenPy | 2024-28-08 |
i did that but it still automatically goes | r/renpy | comment | r/RenPy | 2024-28-08 |
Whatever is after `action` is *immediately evaluated* (before the screen is shown) to see what the action is. You should (typically) use one of the action factories like `Return`, `Function`, `Call`, `Jump`, `SetVariable` etc - each of these return a kind of action object, and that *action object* is run when the butto... | r/renpy | comment | r/RenPy | 2024-28-08 |
Ok I will try | r/renpy | comment | r/RenPy | 2024-28-08 |
There's a long [list of actions](https://www.renpy.org/doc/html/screen_actions.html#actions) you can use in the docs. | r/renpy | comment | r/RenPy | 2024-28-08 |
oh thanks! | r/renpy | comment | r/RenPy | 2024-28-08 |
If you cannot fix it then post your code | r/renpy | comment | r/RenPy | 2024-29-08 |
I would like the pointer to be on the middle of the target, the coords 60, 50 seems to be the best one so far but still pretty off | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
Use your art program to measure the x,y position from the top left of the image to the centre of your target; this is the offset you need. If you're zooming/scaling or otherwise adjusting the image in Ren'Py, you'll need to do that to the offset too. | r/renpy | comment | r/RenPy | 2024-28-08 |
Hey, so I only just recently learned how to code using renpy via youtube videos and I've been struggling with trying to get this to work
The error messages says that the menu statement expects a non-empty block which kinda confuses me | r/renpy | post | r/RenPy | 2024-28-08 |
Welcome to r/renpy! While you wait to see if someone can answer your question, we recommend checking out [the posting guide](https://www.reddit.com/r/RenPy/comments/1099hpg/a_short_posting_guide_or_how_to_get_help/), [the subreddit wiki](https://www.reddit.com/r/RenPy/wiki/index/), [the subreddit Discord](https://disco... | r/renpy | comment | r/RenPy | 2024-28-08 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.