加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 z2z4 于 2013-2-14 14:01 编辑
class Window_ItemCategory < Window_HorzCommand #-------------------------------------------------------------------------- # ● 列数取得 #-------------------------------------------------------------------------- def col_max 6 # end #-------------------------------------------------------------------------- # ● 指令取得 #-------------------------------------------------------------------------- def make_command_list add_command(Vocab::item, :item) add_command(Vocab::weapon, :weapon) add_command(Vocab::armor, :armor) add_command("配方", :gem) add_command("材料", :material) add_command(Vocab::key_item, :key_item) end end
class Window_ItemCategory < Window_HorzCommand
#--------------------------------------------------------------------------
# ● 列数取得
#--------------------------------------------------------------------------
def col_max
6 #
end
#--------------------------------------------------------------------------
# ● 指令取得
#--------------------------------------------------------------------------
def make_command_list
add_command(Vocab::item, :item)
add_command(Vocab::weapon, :weapon)
add_command(Vocab::armor, :armor)
add_command("配方", :gem)
add_command("材料", :material)
add_command(Vocab::key_item, :key_item)
end
end
|