赞 | 0 |
VIP | 1 |
好人卡 | 5 |
积分 | 1 |
经验 | 47515 |
最后登录 | 2024-9-13 |
在线时间 | 216 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 90
- 在线时间
- 216 小时
- 注册时间
- 2007-9-5
- 帖子
- 370
|
本帖最后由 亿万星辰 于 2012-2-19 23:03 编辑
def update 下添加:
$cw_index = @cw.index
@iw.refresh #即时刷新右边的物品列表窗口
然后 class Window_LGM_Item < Window_Selectable 下改成:- case $cw_index
- when 0
- for i in 1..10
- if $game_party.item_number(i) > 0 and !$lgm_except_item.include?(i)
- @data.push($data_items[i])
- end
- end
- when 1
- for i in 11..20
- if $game_party.item_number(i) > 0 and !$lgm_except_item.include?(i)
- @data.push($data_items[i])
- end
- end
- end
复制代码 |
|