102 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
104
views
Cannot Get Sprite to Animate in Ren'Py
I am unable to get the images of a sprite to change in Ren'Py.
All the images I intended to add are in the directory, and I wrote the code exactly how it was stated in the tutorial, but it does not ...
0
votes
0
answers
348
views
How to make viewport auto-scroll to the bottom in Renpy
I am currently trying to make a phone text game. I have got most of functionality working except the part where I want to make the viewport of a screen to automatically scroll to the bottom when a new ...
Danny's user avatar
- 9,664
-2
votes
2
answers
186
views
Is the usage of Quit button banned for iOS apps? What if I publish an app with a Quit button? [closed]
I was editing the menu for a Ren'Py project and i found this:
if renpy.variant("pc"):
## The quit button is banned on iOS and unnecessary on Android and
## Web.
...
1
vote
1
answer
116
views
How do I translate an image / scene with Ren'Py?
I need a certain picture to appear in the game when a certain language is enabled. I assume I'd need to write something like the following to do that:
if game.Language("english"):
scene ...
1
vote
1
answer
136
views
Python ctype: argument 2: <class 'Typeerror': wrong type
I use Ren'Py engine and want to implemet Steam leaderboards in to my game.
Steamapi has a method SteamUserStats: https://partner.steamgames.com/doc/api/ISteamUserStats#FindOrCreateLeaderboard
Ren'Py ...
0
votes
1
answer
121
views
"Is not terminated with newline" Ren'py
I had launched my programm, but it gave me a traceback that says: "line 9: is not terminated with newline". I don't see a mistake. Can someone explain it to me?
init:
#Название мода
...
-7
votes
1
answer
141
views
Renpy ‘break’ outside loop [closed]
Im trying to make a insert name but i keep on getting " ‘break’ outside loop"
label start:
scene black
python:
while True:
name = renpy.input("{b}Insert your ...
0
votes
0
answers
103
views
setattr doesn't seem to have an effect when setting multi-level attributes
I'm writing a mod for a Ren'Py game that includes possibility to edit game's variables' values ("cheating"). Variables in the game include different ones from simple booleans to pretty ...
0
votes
1
answer
196
views
KeyError when trying to get variables' values using globals()
I'm writing a simple mod for a Ren'Py game (to show "hidden" variables).
Information about such variables is kept in a lists of dictionaries; like this (simplified):
icm_data_rowan = [
{
...
0
votes
1
answer
133
views
I'm completely new to coding and renpy is testing me in ways I've never been tested
ok so I'm trying to give the player the option to pick multiple choices and the ones they choose I'll flag to use later in the game. But I don't want them picking the same option multiple times so I'm ...
0
votes
1
answer
1k
views
ModuleNotFoundError: No module named 'pydantic_core._pydantic_core' When importing openai python sdk to renpy
when importing openai python sdk in a renpy project
init python:
from openai import OpenAI
This error appear
I'm sorry, but an uncaught exception occurred. While running game ...
1
vote
1
answer
849
views
How do I return from a screen in Ren'Py?
My friends have decided to torture me with Ren'Py and I need help with this code for a visual novel.
screen CorpseText():
frame:
xalign 0.5
yalign 0.5
text "barn är ...
0
votes
0
answers
777
views
How to check if a key is pressed in Renpy?
I am making a visual novel in which I need to check if a key, let's say "a" is pressed, and jump to a label when the key is pressed.
For more context, in my game, the character say 3 ...
1
vote
1
answer
285
views
Renpy showing default avatar when not instructed
I have a problem I am making a visual novel in renpy but for some reason it throws out the default avatar at some of my scenes.
I am not going for avatars on background images, instead I want the ...
-1
votes
1
answer
80
views
I'm making a mod for Everlasting summer, my code constantly gives the error Line is indented
enter image description hereI'm new to Ren'Py and I can't solve the problem with Line is indented,he constantly complains about the 9th line, but at the same time I don't know what I've tried a lot ...