好吧老实说我遇到些问题
[RenPy] 纯文本查看 复制代码 init -2 python:
import datetime
t1 = '17:00'
t2 = '23:00'
current_time = datetime.datetime.now().strftime("%H:%M")
这行代码是直接插入screens当中的吧?
[RenPy] 纯文本查看 复制代码 label check_time:
if t1<= current_time <=t2:
return
else:
call screen confirm(message=_("您暂时无法游玩“天使的遗族”,依照健康系统规则,您只能在每日20:00-21:00游玩一小时,请合理安排游戏时间,适当休息。"), yes_action=Quit(confirm=False), no_action=Return(),type ='OK')#Quit(confirm=False)
return
我在script中调用它请问当中的
[RenPy] 纯文本查看 复制代码 label check_time:
是通过那个jump进行指定的?老实说我有点看不懂了
因为我按照这种方式导入到游戏中它并不生效
|