Fulminato
Well-Known Member
- Oct 17, 2017
- 1,580
- 1,335
in fact it's very easy to fix.another exception. this one I can't really work around (without drastically changing my playstyle) so I an taking a break for now.
overall this is pretty good looking game. very interesting and I love the fetishes and world building. just needs some spellcheck and bugfixes.
Code:I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 6783, in script if estate == "affected" or estate == "pretending" or eteam "obey": SyntaxError: invalid syntax (script.rpy, line 6783) -- Full Traceback ------------------------------------------------------------ Full traceback: File "game/script.rpy", line 6783, in script if estate == "affected" or estate == "pretending" or eteam "obey": File "renpy/ast.py", line 1898, in execute if renpy.python.py_eval(condition): File "renpy/python.py", line 2274, in py_eval code = py_compile(code, 'eval') File "renpy/python.py", line 835, in py_compile raise e SyntaxError: invalid syntax (script.rpy, line 6783) Windows-10-10.0.19041 Ren'Py 7.4.11.2266 Real Power 0.1 Wed Oct 5 02:58:50 2022
just open the file, search for the row and put a == beween eteam and "obey", save and profit.i'm caught couple or code error. i don't know if you use an interface or write the code yourself, but in the file "script.rpy"
the row 6783
is
should beCode:if estate == "affected" or estate == "pretending" or eteam "obey":
Code:if estate == "affected" or estate == "pretending" or eteam == "obey":