马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
测试脚本:
[RenPy] 纯文本查看 复制代码 # 游戏的脚本可置于此文件中。
init python :
Dict_00 = {'甲':1, '乙':3, '丙':5}
def AAA():
for k in Dict_00:
Dict_00[k] -= 1
def BBB() :
if '甲' in Dict_00 :
if Dict_00['甲'] == 0 :
# Dict_00['甲'] += 999 ## 正常
del Dict_00['甲'] # 删除提示出错
# del Dict_00.pop['甲'] ## 删除提示出错
screen CCC:
vbox:
xpos 0.4
ypos 0.3
text str(Dict_00['甲'])
null height 20
textbutton "减去" action Function(AAA),Function(BBB)
null height 20
textbutton "退出游戏" action Quit(confirm=False)
# 游戏在此开始。
label start:
call screen CCC
# 此处为游戏结尾。
return
|