赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 3963 |
最后登录 | 2017-3-23 |
在线时间 | 40 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 40 小时
- 注册时间
- 2011-7-23
- 帖子
- 55
|
你想复杂了,把我上图的金银铜图片拷贝下来,贴到窗口背景图的左下角就行了。
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
#def refresh
# contents.clear
# draw_currency_value(value, currency_unit, 4, 0, contents.width - 8)
def refresh
self.contents.clear
a = $game_party.gold/10000 #
b = ($game_party.gold - a*10000) /100 #
c = $game_party.gold - a*10000 - b * 100 #
draw_currency_value(c, " ", 4, 0, contents.width - 1)
draw_currency_value(b, " ", 4, 0, contents.width - 45)
draw_currency_value(a, " ", 4, 0, contents.width - 90)
end |
|