Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I got an error in the Infinite Stars game:

```

I'm sorry, but an uncaught exception occurred.

While running game code:

  File "game/src/story/script.rpy", line 85, in script call

  File "game/src/controllers/Navigation.rpy", line 176, in script call

  File "game/src/controllers/Navigation.rpy", line 191, in script call

  File "game/src/controllers/EventDispatcher.rpy", line 233, in script call

  File "game/src/story/S01/E03/Day1/Medsec.rpy", line 259, in script

  File "game/src/story/S01/E03/Day1/Medsec.rpy", line 259, in <module>

TypeError: '>' not supported between instances of 'str' and 'int'

-- Full Traceback ------------------------------------------------------------

Traceback (most recent call last):

  File "game/src/story/script.rpy", line 85, in script call

  File "game/src/controllers/Navigation.rpy", line 176, in script call

  File "game/src/controllers/Navigation.rpy", line 191, in script call

  File "game/src/controllers/EventDispatcher.rpy", line 233, in script call

  File "game/src/story/S01/E03/Day1/Medsec.rpy", line 259, in script

  File "renpy/ast.py", line 2079, in execute

    if renpy.python.py_eval(condition):

       ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^ 

  File "renpy/python.py", line 1305, in py_eval

    return py_eval_bytecode(code, globals, locals)

           ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^

  File "renpy/python.py", line 1298, in py_eval_bytecode

    return eval(bytecode, globals, locals)

           ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "game/src/story/S01/E03/Day1/Medsec.rpy", line 259, in <module>

TypeError: '>' not supported between instances of 'str' and 'int'

Windows-11-10.0.26200-SP0 AMD64

Ren'Py 8.5.2.26010301

Infinite Stars 1.0426.0035

Thu Jul 16 22:00:47 2026

```

Hey! Thanks for reaching out!

That's a weird one, and probably isolated and safe to ignore. 
The error is saying that we're trying to compare a word with a number to see which one is larger, which should absolutely give an error if that's what we were trying to do.
What we are actually doing is checking how much you've been flirting to Khalil to determine how upset Veera is. I had another look at the code just to be safe, but we are definitely comparing numbers with numbers despite the error message stating otherwise.

(Renpy sometimes messes up when you skip/fast forward through the script)

It's very unlikely that anyone else will get this same error, and ignoring it shouldn't impact your game or your save. If you however keep on getting this error across the rest of the game, it's probably a corrupted save file. :(