- Dec 30, 2017
- 51
- 186
Message for the author of the game
Unfortunately, there is a bug in parameters:
one sample:
file "ep1.rpy" calls:
file "screens1.rpy" defined screen is:
we will gradually assign parameters:
x=172
y=475
img='/buttons/be1_hospital_window1.pic'
door='ep1.hospital_window_open' ?????error!!!
item=????
solution for mod:
before parameter 'ep1.hospital_window_open' append item=
we assign the variable directly to the item parameter, otherwise it is assigned to the parameter door
after this repair, the window can be broken
Unfortunately, there is a bug in parameters:
one sample:
file "ep1.rpy" calls:
show screen btn1(172,475,'/buttons/be1_hospital_window1.pic','ep1.hospital_window_open')
file "screens1.rpy" defined screen is:
screen btn1(x, y, img, label=False, door=False, item=False):
we will gradually assign parameters:
x=172
y=475
img='/buttons/be1_hospital_window1.pic'
door='ep1.hospital_window_open' ?????error!!!
item=????
solution for mod:
before parameter 'ep1.hospital_window_open' append item=
we assign the variable directly to the item parameter, otherwise it is assigned to the parameter door
show screen btn1(172,475,'/buttons/be1_hospital_window1.pic',item='ep1.hospital_window_open')
after this repair, the window can be broken