So today I've read most of the Ren'Py documentation to learn about the program. I found out that you can incorporate the Python scripts onto Ren'Py. But I'm quite curious if it is also applicable the other way around. I mean, I used the
Code: Select all
pythonI'm actually trying to run the
Code: Select all
whileCode: Select all
screenCode: Select all
whileCode: Select all
screenAny suggestions and feedback are welcome. Thanks in advance.
P.S.: Please try to be specific and reply with terminologies that you think noob users like me will understand. I've read about some of the terminologies in the documentation and I'm quite familiar already with some of the syntax. But don't go too deep because I know I won't be able to understand it very well. Thanks again guys
Code: Select all
screen choice(items):
style_prefix "choice"
grid 3 3:
python:
inc = 1
while inc <= 9:
if inc%2 == 0:
textbutton (items[inc]).caption action i.action
else:
null
inc += 1
.