Project1

标题: 关于如何让某变量显示在菜单金钱窗口内 [打印本页]

作者: qazsdwexc    时间: 2011-8-25 12:55
标题: 关于如何让某变量显示在菜单金钱窗口内
如题,我使用的是这个脚本,将第二种货币设置在了变量100号里,不过我想让这个变量显示在菜单金钱窗口内,让玩家一打开就可以看到。该怎么做?是否应该在window_gold里设置?dsu_plus_rewardpost_czw
作者: 亿万星辰    时间: 2011-8-25 13:59
我记得大概是4或者5年前。。。写过一个窗口教程,恰巧是用window_gold做的例子。
  1. class Window_Gold < Window_Base #Window_Gold 是Window_Base 的继承类
  2. def initialize #初始化
  3.    super(0, 0, 160, 64)#窗口坐标,大小
  4.    self.contents = Bitmap.new(width - 32, height - 32)#选择在width - 32, height - 32的位置写东西
  5.    refresh  #刷新
  6. end
  7.   def refresh  #定义刷新
  8.    self.contents.clear #清屏
  9.    cx = contents.text_size($data_system.words.gold).width#
  10.    self.contents.font.color = normal_color#定义字的颜色
  11.    self.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 2)#写字
  12.    self.contents.font.color = system_color#定义字的颜色
  13.    self.contents.draw_text(124-cx, 0, cx, 32, $data_system.words.gold, 2)#写字
  14. end
  15. end
复制代码

作者: f26401004    时间: 2011-8-25 14:00
本帖最后由 f26401004 于 2011-8-25 14:05 编辑

於window_gold裡的refresh新增下面這行試試:


self.contents.draw_text(4, 0, 120, 32, $game_variables[100].to_s, 2)



位置應該不用再說了,若座標位置請自行調整。
作者: qazsdwexc    时间: 2011-8-25 14:16
f26401004 发表于 2011-8-25 14:00
於window_gold裡的refresh新增下面這行試試:


self.contents.draw_text(4, 0, 120, 32, $game_variabl ...

可以是可以了,不过可以让变量100像金币一样显示单位吗?
无法回答也没关系。
作者: f26401004    时间: 2011-8-25 14:20
本帖最后由 f26401004 于 2011-8-25 14:52 编辑



self.contents.draw_text(4, 0, 120, 32, "貨幣名稱", 2)


也是於window_gold裡的refresh再加上這行看看- -
在提醒一下,
self.contents.draw_text(x, y, 寬度, 高度, "貨幣名稱", 對齊方式)




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1