赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 4543 |
最后登录 | 2012-6-24 |
在线时间 | 5 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 5 小时
- 注册时间
- 2007-12-15
- 帖子
- 49
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
#==============================================================================
# ■ Window_Gold
#------------------------------------------------------------------------------
# 显示金钱的窗口。
#==============================================================================
class Window_Gold < Window_Base
#--------------------------------------------------------------------------
# ● 初始化窗口
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 64)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def money(n)
gold = n/100
silver = (n%100)/10
copper = n%10
return gold, silver, copper
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.color = normal_color
main_money = money($game_party.gold)
text = main_money[2].to_s + "铜"
text = main_money[1].to_s + "银" + text if main_money[1] > 0 and main_money[0] > 0
text = main_money[0].to_s + "金" + text if main_money[0] > 0
self.contents.draw_text(4, 0, 120-2, 32, text, 2)
end
end
把它转换成VX的 |
|