Ren'Py Need a Help Renpy Mod

REx344

New Member
Feb 2, 2024
14
11
"Hi, I am trying to learn Mod, but I encountered an error while working. can anyone tell me what to do in indentation mismatch?"
The script is failed:
error.PNG
Indentation mismatch is on this line 1356:
Capture.PNG
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,561
15,520
can anyone tell me what to do in indentation mismatch?
Hmm, well it mean that the given line do not have the right indentation level.
Code:
Indentation level 0
    Indentation level 1
        Indentation level 2
            [...]
But there's something weird with your code screenshot.
The faulty line is at the same indentation level that all the other lines, but the symbol in top of the line seem to indicate that it's a block that can be folded :/
 
  • Like
Reactions: REx344

REx344

New Member
Feb 2, 2024
14
11
Hmm, well it mean that the given line do not have the right indentation level.
Code:
Indentation level 0
    Indentation level 1
        Indentation level 2
            [...]
But there's something weird with your code screenshot.
The faulty line is at the same indentation level that all the other lines, but the symbol in top of the line seem to indicate that it's a block that can be folded :/