Theme editor

Search results

  1. S

    VN Ren'Py [Koikatsu] Libertine [v0.12a] [Cynist Games]

    Is anyone else getting the error "The package appears to be invalid" when installing v10 on Android?
  2. S

    VN Ren'Py [Koikatsu] Insexual Awakening 2 Love and Learn [v0.6 Alpha] [Team Cyber HexXx]

    I have good news for you! When you're in "your room" in the game, scroll down and look at the options at the bottom. Specifically, "Replay Scenes."
  3. S

    VN Ren'Py [Koikatsu] Libertine [v0.12a] [Cynist Games]

    Is there an option in the compiler for a "clean build" or "full rebuild"? Something like that could help. You could also try deleting all the .rpyc files in the folder, that should force it to generate everything again.
  4. S

    VN Ren'Py [Koikatsu] Libertine [v0.12a] [Cynist Games]

    Hmm, I downloaded the Mac version and looked at 00action_data.rpy, and the get_selected function doesn't match the code in the error. That suggests that maybe the compiled version is somehow out of date...is it possible that you built a Mac version, maybe a long time ago, on an older version of...
  5. S

    VN Ren'Py [Koikatsu] Libertine [v0.12a] [Cynist Games]

    Try running this Python code and you'll get the exact error in the trace: val = "true" print(bool(val)) bool = True print(bool(val))
  6. S

    VN Ren'Py [Koikatsu] Libertine [v0.12a] [Cynist Games]

    Yes, correct, that's why code that looks like this would cause that error. bool can be used as a function in Python to cast other types of values to boolean values. But if you accidentally set it to something else, like, for example, "true", then it's no longer callable and you'll get that error.
  7. S

    VN Ren'Py [Koikatsu] Libertine [v0.12a] [Cynist Games]

    Try searching your code for "bool ="...that would cause this error.
Back
Top Bottom