Project1

标题: VX如何在菜单物品里不显示防具? [打印本页]

作者: 好记的名字    时间: 2011-8-28 14:47
标题: VX如何在菜单物品里不显示防具?
XP我尝试过,在XP的Window_Item删一段就可以了 但是VX暂时不会 求指点dsu_plus_rewardpost_czw
作者: 亿万星辰    时间: 2011-8-28 16:46
本帖最后由 亿万星辰 于 2011-8-28 16:46 编辑
  1. next if item.is_a?(RPG::Armor)
复制代码
其实需要这么一句~
作者: 好记的名字    时间: 2011-8-28 16:56
亿万星辰 发表于 2011-8-28 16:46
其实需要这么一句~

放在哪儿 求解 谢谢
作者: 忧雪の伤    时间: 2011-8-28 17:00
好记的名字 发表于 2011-8-28 16:56
放在哪儿 求解 谢谢

循环啊循环,for啊for,跟着啊跟着(你到底在说什么
作者: fux2    时间: 2011-8-28 17:08
以下代码插入到Main上方,为什么我要这么做?因为我很疯狂!
  1. class Window_Item < Window_Selectable
  2.   def refresh
  3.     @data = []
  4.     for item in $game_party.items
  5.       next unless include?(item)
  6.       next if item.is_a?(RPG::Armor)
  7.       @data.push(item)
  8.       if item.is_a?(RPG::Item) and item.id == $game_party.last_item_id
  9.         self.index = @data.size - 1
  10.       end
  11.     end
  12.     @data.push(nil) if include?(nil)
  13.     @item_max = @data.size
  14.     create_contents
  15.     for i in 0...@item_max
  16.       draw_item(i)
  17.     end
  18.   end
  19. end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1