设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1790|回复: 3
打印 上一主题 下一主题

[已经解决] 在修改状态栏脚本(Window_Status),显示变量显示问题

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
3 小时
注册时间
2012-8-21
帖子
6
跳转到指定楼层
1
发表于 2013-4-22 13:56:30 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

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)

Lv4.逐梦者

「Pemercyia」


Urhurrenna

梦石
0
星屑
9397
在线时间
2748 小时
注册时间
2008-9-5
帖子
3543

开拓者短篇八RM组冠军短篇九导演组亚军白银编剧

2
发表于 2013-4-22 22:33:28 | 只看该作者
首先把变量括弧里的000去掉没关系……
然后……把那个设置颜色的换一行吧……(虽然没什么关系)
去掉0之后试试看~
不行再试试看在这行之前输出一下变量看看~
p $game_variables[8]
p $game_variables[8].to_s
看看是不是能输出指定的值~
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
193 小时
注册时间
2013-3-24
帖子
448
3
发表于 2013-4-22 22:52:35 | 只看该作者
本帖最后由 joe5491 于 2013-4-22 22:59 编辑

沒換行是有關係的...
沒換行的話,兩個東西中間要打分號(ex:   x+=1;y+=1  )

整理一下(附加防止nil錯誤):
  1.     for i_i in 1 .. 9
  2.       if $game_variables[i_i]==nil
  3.         $game_variables[i_i]=0
  4.       end
  5.     end
  6.     self.contents.font.color = system_color
  7.     self.contents.draw_text(320, 140, 96, 32, "资质")
  8.     self.contents.draw_text(320, 204, 96, 32, "拳掌")
  9.     self.contents.draw_text(320, 236, 96, 32, "使剑")
  10.     self.contents.draw_text(320, 268, 96, 32, "使刀")
  11.     self.contents.draw_text(320, 300, 96, 32, "奇门")
  12.     self.contents.draw_text(320, 332, 96, 32, "暗器")
  13.     self.contents.draw_text(320, 172, 96, 32, "运气")
  14.     self.contents.draw_text(320, 364, 96, 32, "医术")
  15.     self.contents.draw_text(320, 396, 96, 32, "用毒")
  16.     self.contents.font.color = normal_color
  17.     self.contents.draw_text(320 + 20, 140, 96, 32, $game_variables[1].to_s, 2)
  18.     self.contents.draw_text(320 + 20, 204, 96, 32, $game_variables[2].to_s, 2)
  19.     self.contents.draw_text(320 + 20, 236, 96, 32, $game_variables[3].to_s, 2)
  20.     self.contents.draw_text(320 + 20, 268, 96, 32, $game_variables[4].to_s, 2)
  21.     self.contents.draw_text(320 + 20, 300, 96, 32, $game_variables[5].to_s, 2)
  22.     self.contents.draw_text(320 + 20, 332, 96, 32, $game_variables[6].to_s, 2)
  23.     self.contents.draw_text(320 + 20, 172, 96, 32, $game_variables[7].to_s, 2)
  24.     self.contents.draw_text(320 + 20, 364, 96, 32, $game_variables[8].to_s, 2)
  25.     self.contents.draw_text(320 + 20, 396, 96, 32, $game_variables[9].to_s, 2)
复制代码

评分

参与人数 1梦石 +1 收起 理由
hys111111 + 1 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
3 小时
注册时间
2012-8-21
帖子
6
4
 楼主| 发表于 2013-4-23 11:38:58 | 只看该作者
问题已解决,多谢
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-15 06:59

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表