RuntimeError: maximum recursion depth exceeded

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Post Reply
Message
Author
sadekhnd
Newbie
Posts: 10
Joined: Wed Dec 16, 2015 4:49 am
Contact:

RuntimeError: maximum recursion depth exceeded

#1 Post by sadekhnd »

Hi, I have some troubles with my game in renpy. I get this error and I don't know what it is and why it comes.

RuntimeError: maximum recursion depth exceeded

https://drive.google.com/file/d/1TSjbfN ... sp=sharing
here is trackback.txt file

rames44
Veteran
Posts: 233
Joined: Sun May 29, 2016 4:38 pm
Contact:

Re: RuntimeError: maximum recursion depth exceeded

#2 Post by rames44 »

For someone to help you, we’re going to need more information. You might start by posting several lines of the script before and after the line in question, as well as the part of the file where you declare the character that’s talking.

User avatar
Alex
Lemma-Class Veteran
Posts: 3094
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: RuntimeError: maximum recursion depth exceeded

#3 Post by Alex »

sadekhnd wrote: Mon Sep 24, 2018 4:22 pm Hi, I have some troubles with my game in renpy. I get this error and I don't know what it is and why it comes.

RuntimeError: maximum recursion depth exceeded

https://drive.google.com/file/d/1TSjbfN ... sp=sharing
here is trackback.txt file
This error comes out if you call something again and again without return, like

Code: Select all

label start:
    "..."
    call inf_loop
    "never get here"
label inf_loop:
    "... ..."
    "... ... ..."
    call inf_loop
    "never get here"
    return

Post Reply

Who is online

Users browsing this forum: Google [Bot]