赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 200 |
最后登录 | 2013-4-23 |
在线时间 | 3 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 3 小时
- 注册时间
- 2012-8-21
- 帖子
- 6
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我的脚本大致如下,目的是在状态栏中显示几个我以变量形式添加的属性。
变量1-7都没有问题,这些脚本也都是复制粘贴过来的,但是变量8和9就会显示发生了Syntax Error (报错脚本我已经用红色标出)。
另外:之后我有跳过这两个变量,改用10 和11 ,测试游戏没问题,但是变量无法正确显示。
(例如我调用变量12为毒术,在游戏中毒术增加,用分歧条件变量测试OK,但是状态栏始终显示为0。也就是说,这变量其实变化了,但是无法显示)
self.contents.font.color = system_color
self.contents.draw_text(320, 140, 96, 32, "资质")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 140, 96, 32, $game_variables[0001].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 204, 96, 32, "拳掌")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 204, 96, 32, $game_variables[0002].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 236, 96, 32, "使剑")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 236, 96, 32, $game_variables[0003].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 268, 96, 32, "使刀")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 268, 96, 32, $game_variables[0004].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 300, 96, 32, "奇门")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 300, 96, 32, $game_variables[0005].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 332, 96, 32, "暗器")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 332, 96, 32, $game_variables[0006].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 172, 96, 32, "运气")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 172, 96, 32, $game_variables[0007].to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(320, 364, 96, 32, "医术")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 364, 96, 32, $game_variables[0008].to_s, 2) self.contents.font.color = system_color
self.contents.draw_text(320, 396, 96, 32, "用毒")
self.contents.font.color = normal_color
self.contents.draw_text(320 + 20, 396, 96, 32, $game_variables[0009].to_s, 2)
|
|