Project1

标题: 谁能帮我写个让VX能显示大图标的脚本! [打印本页]

作者: 猫猫晒月亮    时间: 2010-9-23 09:23
提示: 作者被禁止或删除 内容自动屏蔽
作者: 猫猫晒月亮    时间: 2010-9-23 13:03
提示: 作者被禁止或删除 内容自动屏蔽
作者: 小鱼子    时间: 2010-9-23 14:44
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================

  4. class Window_Base
  5.   def draw_icon2(icon_file, x, y, enabled = true)
  6.     bitmap = Cache.load_bitmap("Graphics/Icons/", icon_file)
  7.     rect = Rect.new(0, 0, 24, 24)
  8.     self.contents.blt(x, y, bitmap, rect, enabled ? 255 : 128)
  9.   end
  10.   
  11.   def draw_item_name(item, x, y, enabled = true)
  12.     if item != nil
  13.       if item.get_icon
  14.         draw_icon2(item.get_icon.to_s, x, y, enabled)
  15.       else
  16.         draw_icon(item.icon_index, x, y, enabled)
  17.       end
  18.       self.contents.font.color = normal_color
  19.       self.contents.font.color.alpha = enabled ? 255 : 128
  20.       self.contents.draw_text(x + 24, y, 172, WLH, item.name)
  21.     end
  22.   end
  23. end

  24. module Item
  25.   ICON = /<ICON*(.*)>/i
  26. end

  27. class RPG::BaseItem
  28.   def get_icon
  29.     self.note.split(/[ ]+/).each { |line|
  30.       if line =~ Item::ICON
  31.         a = line.split(/ /)[1]
  32.         d = ""
  33.         while ((c = a.slice!(/./m)) != nil)
  34.           d += c if c != ">"
  35.         end
  36.         return d
  37.       end
  38.     }
  39.     return nil
  40.   end
  41. end
  42. class RPG::BaseSkill
  43.   def get_icon
  44.     self.note.split(/[ ]+/).each { |line|
  45.       if line =~ Item::ICON
  46.         a = line.split(/ /)[1]
  47.         d = ""
  48.         while ((c = a.slice!(/./m)) != nil)
  49.           d += c if c != ">"
  50.         end
  51.         return d
  52.       end
  53.     }
  54.     return nil
  55.   end
  56. end
复制代码

作者: 猫猫晒月亮    时间: 2010-9-23 15:09
提示: 作者被禁止或删除 内容自动屏蔽




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