Project1

标题: 如何让买卖商品里的属性不显示出来 [打印本页]

作者: falef    时间: 2011-1-28 07:29
标题: 如何让买卖商品里的属性不显示出来
本帖最后由 falef 于 2011-1-28 09:29 编辑

      如下图

作者: fux2    时间: 2011-1-28 08:33
本帖最后由 fux2 于 2011-1-28 09:22 编辑

回复 falef 的帖子

Window_ShopStatus里
  1.   def refresh
  2.     self.contents.clear
  3.     if @item != nil
  4.       number = $game_party.item_number(@item)
  5.       self.contents.font.color = system_color
  6.       self.contents.draw_text(4, 0, 200, WLH, Vocab::Possession)
  7.       self.contents.font.color = normal_color
  8.       self.contents.draw_text(4, 0, 200, WLH, number, 2)
  9.       for actor in $game_party.members
  10.         x = 4
  11.         y = WLH * (2 + actor.index * 2)
  12.         draw_actor_parameter_change(actor, x, y)
  13.       end
  14.     end
  15.   end
复制代码
替换为
  1.   def refresh
  2.     self.contents.clear
  3.     if @item != nil
  4.       number = $game_party.item_number(@item)
  5.       self.contents.font.color = system_color
  6.       self.contents.draw_text(4, 0, 200, WLH, Vocab::Possession)
  7.       self.contents.font.color = normal_color
  8.       self.contents.draw_text(4, 0, 200, WLH, number, 2)
  9.     end
  10.   end
复制代码





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