JLP603

Active Member
Apr 25, 2019
634
836
Got this error when Eryn talks abt plans after waking cara up
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/episode_10.rpy", line 2731, in script
if Alexis_Points =< 30:
SyntaxError: invalid syntax (episode_10.rpy, line 2731)

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

Full traceback:
File "game/episode_10.rpy", line 2731, in script
if Alexis_Points =< 30:
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 (episode_10.rpy, line 2731)

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Intertwined 0.10
Sat Nov 5 19:25:33 2022
```
 
  • Like
Reactions: otto82

Anus Mundi

Member
Nov 27, 2018
331
317
if you're on Alexis path, can you get Elena content?
If you managed to get enough points with Elena on Alexis' path (bit tricky) you get all Elena content up to v0.9, but...

Is Elena content locked behind Layla's?
Yes. If you told Layla about Alexis you get the "Layla_Friends"-flag that pushes you off the Elena path.

Edit:
I tried that, too. Means i can delete at least one save.
 
Last edited:
  • Like
Reactions: luirdp

KopengaKris

Member
Sep 21, 2018
221
321
Got this error when Eryn talks abt plans after waking cara up
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/episode_10.rpy", line 2731, in script
if Alexis_Points =< 30:
SyntaxError: invalid syntax (episode_10.rpy, line 2731)

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

Full traceback:
File "game/episode_10.rpy", line 2731, in script
if Alexis_Points =< 30:
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 (episode_10.rpy, line 2731)

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Intertwined 0.10
Sat Nov 5 19:25:33 2022
```
It's a bug in the variable. You can just ignore it. Got it aswell, but it should'nt be there if your not on the Alexis path.
 
  • Like
Reactions: JLP603

RoadWulf

Engaged Member
Nov 18, 2018
3,979
7,926
Did anyone else get what I expect to be a glitch where Layla says you should ask out Val even though you're dating Layla?

I mean, if she suddenly got it in her head to start sharing you, I'm not gonna complain but I somehow bet this is messed up coding.
 
  • Like
Reactions: hawk784563

camube

Well-Known Member
Jun 4, 2022
1,088
974
If you managed to get enough points with Elena on Alexis' path (bit tricky) you get all Elena content up to v0.9, but...



Yes. If you told Layla about Alexis you get the "Layla_Friends"-flag that pushes you off the Elena path.

Edit:
I tried that, too. Means i can delete at least one save.
What do you mean by "if you told layla about alexis", does the game allow the players to not tell Layla about Alexis?
What happens if the player doesn't tell Layla about Alexis? Is up until Chapter 10, the two-timing the sisters still ongoing?

I rejected Alexis pretty early on so I don't know.
 

PereFourreAss

Member
Sep 30, 2020
325
1,096
What do you mean by "if you told layla about alexis", does the game allow the players to not tell Layla about Alexis?
What happens if the player doesn't tell Layla about Alexis? Is up until Chapter 10, the two-timing the sisters still ongoing?

I rejected Alexis pretty early on so I don't know.
At the start of chapter 9 they both come in your doorstep and break up with you
 

Anus Mundi

Member
Nov 27, 2018
331
317
What do you mean by "if you told layla about alexis", does the game allow the players to not tell Layla about Alexis?
Yeah, you can try to date both Layla and Alexis but at the start of v0.9 shit hits the fan, and all three paths (Alexis, Layla and Elena) end.

Edit:
Too late. :)
 

Sin_Mechero

Member
Mar 27, 2022
314
915
Got this error when Eryn talks abt plans after waking cara up
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/episode_10.rpy", line 2731, in script
if Alexis_Points =< 30:
SyntaxError: invalid syntax (episode_10.rpy, line 2731)

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

Full traceback:
File "game/episode_10.rpy", line 2731, in script
if Alexis_Points =< 30:
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 (episode_10.rpy, line 2731)

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Intertwined 0.10
Sat Nov 5 19:25:33 2022
```
The error is being given by this variable.
if Alexis_Points =< 30
put it like this and it should work
if Alexis_Points <= 30
 
4.40 star(s) 268 Votes