赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 2690 |
最后登录 | 2015-4-29 |
在线时间 | 58 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 58 小时
- 注册时间
- 2007-8-10
- 帖子
- 284
|
3楼
楼主 |
发表于 2008-4-9 01:36:07
|
只看该作者
想在菜单里显示:(背包 20/20)前面的是物品总数后面的是物品最大携带上限如提
可以理解吗 我是脚本小白 帮帮我吧
简单的问吧如何将包里物品总数显示在菜单画面里
#==============================================================================
# ■ Window_Steps
#------------------------------------------------------------------------------
# 菜单画面显示步数的窗口。
#==============================================================================
class Window_Steps < Window_Base
#--------------------------------------------------------------------------
# ● 初始化对像
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 96)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 120, 32, "背包")
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, 120, 32, $game_system.warehouse_number.to_s, 2)
end
end
|
|