赞 | 452 |
VIP | 56 |
好人卡 | 75 |
积分 | 429 |
经验 | 124650 |
最后登录 | 2025-1-10 |
在线时间 | 7625 小时 |
Lv5.捕梦者 (管理员) 老黄鸡
- 梦石
- 0
- 星屑
- 42869
- 在线时间
- 7625 小时
- 注册时间
- 2009-7-6
- 帖子
- 13506
|
以下代码插入到Main上方,为什么我要这么做?因为我很疯狂!- class Window_Item < Window_Selectable
- def refresh
- @data = []
- for item in $game_party.items
- next unless include?(item)
- next if item.is_a?(RPG::Armor)
- @data.push(item)
- if item.is_a?(RPG::Item) and item.id == $game_party.last_item_id
- self.index = @data.size - 1
- end
- end
- @data.push(nil) if include?(nil)
- @item_max = @data.size
- create_contents
- for i in 0...@item_max
- draw_item(i)
- end
- end
- end
复制代码 |
|