赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 980 |
最后登录 | 2014-4-12 |
在线时间 | 2 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 2 小时
- 注册时间
- 2013-10-8
- 帖子
- 7
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- module XXX
- SXMC = "声望"
- SXBH = 1
- end
- class Window_Gold2 < Window_Base
- def initialize
- super(640 - 160, 480 - 64,160,64)
- self.contents = Bitmap.new(width - 32, height - 32)
- refresh
- end
- def refresh
- value = $game_variables[XXX::SXBH].to_s
- cx = contents.text_size(XXX::SXMC).width
- name = XXX::SXMC
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 0, 120-cx-2, 32, "#{value}", 2)
- self.contents.font.color = system_color
- self.contents.draw_text(124-cx, 0, cx, 32, name, 2)
- end
- end
复制代码 额..第一次来6r发东西……我是新人小朋友~这样可以吗?
SXMC就是单位名称,SXBH就是变量编号..
在地图上显示需要在相应地方添加语句。 |
|