Resolved. I didn't add some lines in screen.rpy x_x
higurashika
Creator of
Recent community posts
Thank you! I suddenly found out that the tooltips don't work in the choice menu like this:
$ x = {1: True, 2: True, 3: True, 4: True, 5: True}
while x[1] or x[2] or x[3] or x[4] or x[5]:
menu:
"Blablabla" if x[1] and y == 1:
$ x[1] = False
$ y = 0
pass
"Yaddayaddayadda" if x[2] and b== 1:
$ x[2] = False
$ b= 0
pass
But I didn't test your code. So I wonder, does your code work with the choice menu like this one?
Thank you! I found another but almost the same way:
if i.action.sensitive is False:
....textbutton i.caption:
........action NullAction()
else:
.....textbutton i.caption action i.action
I'm not sure which option is better, though. Seems like it doesn't really matter. But I keep testing. Thanks for the reply!

