Alright so basically here's my code:
I'm trying to show a grid of the same screen plenty of times.
For now the grid is supposed to be 8x8.
It cannot be just images because they should be clickable.
I don't know if it is actually simple or if I have to do some crazy code to do this...
Code:
for i in play_grid:
renpy.show_screen(i.type, i.xbox, i.ybox)
screen gray_land(x,y):
imagebutton:
pos(x, y)
idle "rpg/lands/gray_land.png"
i.type
has always the value "gray_land"xbox
and ybox
are just int which values differsI'm trying to show a grid of the same screen plenty of times.
For now the grid is supposed to be 8x8.
It cannot be just images because they should be clickable.
I don't know if it is actually simple or if I have to do some crazy code to do this...