Search found 229 matches
- Tue Jan 01, 2019 10:08 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help! RuntimeError: maximum recursion depth exceeded
- Replies: 6
- Views: 363
Re: Help! RuntimeError: maximum recursion depth exceeded
Just curious: How did you define the image 'Audience Normal'?
- Tue Jan 01, 2019 7:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: The screen doesn't change according to real time?
- Replies: 8
- Views: 557
Re: The screen doesn't change according to real time?
You have to call a hidden screen for that. In your case it would look like this: screen check_daytime(): timer 3600.0 repeat action Jump("mylabel") #every 3600s (1h) jump to 'label mylabel' label start: show screen check_daytime #start timer "blablabla" ... return label mylabel: if hour in [6, 7, 8,...
- Mon Dec 31, 2018 11:14 am
- Forum: Ren'Py Questions and Announcements
- Topic: Update patch for played game?
- Replies: 6
- Views: 541
Re: Update patch for played game?
In that post, it's more like the patched content is already available in the main script, you just need the patch file as the "key" to unlock those content. I wonder if we can make a patch that add NEW content to the main game instead of unlocking hidden content. In Belgerum's cookbook recipe, he o...
- Mon Dec 31, 2018 8:21 am
- Forum: Ren'Py Questions and Announcements
- Topic: Update patch for played game?
- Replies: 6
- Views: 541
Re: Update patch for played game?
For this you may have to look into Multi-Game Persistence
- Mon Dec 31, 2018 7:08 am
- Forum: Ren'Py Questions and Announcements
- Topic: Update patch for played game?
- Replies: 6
- Views: 541
- Mon Dec 31, 2018 6:58 am
- Forum: Ren'Py Questions and Announcements
- Topic: Variable for to long displaying images statement
- Replies: 2
- Views: 216
Re: Variable for to long displaying images statement
Simple solution:
Code: Select all
label takare:
show taka normal at side_right onlayer mcsprite with dissolve
return
Code: Select all
label start:
call takare
Tk "I don't know, it's still on the way."
- Mon Dec 31, 2018 6:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help! RuntimeError: maximum recursion depth exceeded
- Replies: 6
- Views: 363
Re: Help! RuntimeError: maximum recursion depth exceeded
label comedian: scene bg stage show Harry costume2 at center show Audience Normal Check your image definitions for "stage", "Harry costume2" and "Audience Normal". Example: image Harry costume2 = "Harry costume2" will trigger a "RuntimeError: maximum recursion depth exceeded". Possibbly you forgot ...
- Sun Dec 30, 2018 7:15 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help! RuntimeError: maximum recursion depth exceeded
- Replies: 6
- Views: 363
Re: Help! RuntimeError: maximum recursion depth exceeded
Usually, the error message looks like this:
In what line you get the error and what code does that line contain?I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/script.rpy", line 1131, in script
with Dissolve(2.0)
RuntimeError: maximum recursion depth exceeded
- Sun Dec 30, 2018 7:01 pm
- Forum: Ren'Py Questions and Announcements
- Topic: attempting to code game crash after player inputs specific name easteregg
- Replies: 1
- Views: 189
Re: attempting to code game crash after player inputs specific name easteregg
python: name = renpy.input("What's his name?") name = name.strip() if not name: name = "Nasir" if name == "Noiros": "Thats not his name. Or at least, you couldn't know that, could you?" $renpy.quit() "My name is [name] and not Noiros" '=' is an assignment operator (A=B) '==' is an equality operator...
- Fri Dec 28, 2018 12:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: label start not found error in script.rpy
- Replies: 5
- Views: 413
Re: label start not found error in script.rpy
Check, if your 'script.rpy' is really in the project's 'game' folder.
- Thu Dec 27, 2018 12:37 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] Is it possible to change the font of a text like this?
- Replies: 3
- Views: 271
Re: Is it possible to change the font of a text like this?
Your code should work:
font
The font tag renders the text between itself and its closing tag in the specified font. The argument is the filename of the font to use.
"Try out the {font=mikachan.ttf}mikachan font{/font}."
Ren'Py Documentation; font tag
font
The font tag renders the text between itself and its closing tag in the specified font. The argument is the filename of the font to use.
"Try out the {font=mikachan.ttf}mikachan font{/font}."
Ren'Py Documentation; font tag
- Thu Dec 27, 2018 11:01 am
- Forum: Ren'Py Questions and Announcements
- Topic: End of line expected error in script.rpy
- Replies: 2
- Views: 249
Re: End of line expected error in script.rpy
Line 183 reads: show snazzi boi12 I don't understand what it is looking for, I have used this exact line of code in other areas, so I don't know why it wouldn't be working now. I have also included an image of my code. Try to change 'snazi boi12' to 'snazi _ boy12' (both in the image declaration an...
- Tue Dec 25, 2018 6:08 pm
- Forum: Completed Games
- Topic: Run 'N Gun [GxB][Romance][SchoolLife][Otome]
- Replies: 8
- Views: 6714
Re: Run 'N Gun [GxB][Romance][SchoolLife][Otome]
A well made, nice story.
Thanks for sharing!
Thanks for sharing!
- Sun Aug 05, 2018 4:14 am
- Forum: Ren'Py Questions and Announcements
- Topic: Battery Import
- Replies: 2
- Views: 426
Re: Battery Import
And how do we force the computer to shut down or restart in Lynux and Mactonish ? It's impossible on Linux. For good reasons, "halt" or "shutdown" usually require super user privileges (otherwise every single user would be able to shut down the whole linux-server he's allowed to work on, for exampl...
- Mon Jun 25, 2018 1:07 am
- Forum: Ren'Py Cookbook
- Topic: Artificial Intelligence (AI) & Ren'Py
- Replies: 20
- Views: 41475
Re: Artificial Intelligence (AI) & Ren'Py
EDIT. Hmmm... After editing a .aiml file and deleting the standard.brn, another file is created next turn in the same directory. But unfortunately, something is wrong with the file, because the bot does not answer anymore. I think I am missing a step somewhere. I guess there's something wrong with ...