Project1

标题: 让VX支援单张的图标的问题 [打印本页]

作者: 沉淪ャ岄    时间: 2008-11-6 01:42
标题: 让VX支援单张的图标的问题
  1. class Window_Base
  2.   def draw_icon2(icon_file, x, y, enabled = true)
  3.     bitmap = Cache.load_bitmap("Graphics/Icons/", icon_file)
  4.     rect = Rect.new(0, 0, 24, 24)
  5.     self.contents.blt(x, y, bitmap, rect, enabled ? 255 : 128)
  6.   end
  7.   
  8.   def draw_item_name(item, x, y, enabled = true)
  9.     if item != nil
  10.       if item.get_icon
  11.         draw_icon2(item.get_icon.to_s, x, y, enabled)
  12.       else
  13.         draw_icon(item.icon_index, x, y, enabled)
  14.       end
  15.       self.contents.font.color = normal_color
  16.       self.contents.font.color.alpha = enabled ? 255 : 128
  17.       self.contents.draw_text(x + 24, y, 172, WLH, item.name)
  18.     end
  19.   end
  20. end

  21. module Item
  22.   ICON = /<ICON*(.*)>/i
  23. end

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



为什么我把这个脚本插入后 总是提示发生错误~~好郁闷的
作者: 雪流星    时间: 2008-11-6 03:58
你插在哪里了...错误是什麽?
[LINE]1,#dddddd[/LINE]
刚才看了一下 = =
你这脚本哪来的
是6R上找到的吗?

我记得主战上论坛里都没有这个错误版了吧?

顺变更新一下:http://rpg.blue/viewthread.php?tid=79657
脚本缩更短了
作者: 沉淪ャ岄    时间: 2008-11-6 04:10
插在Main上面
测试的时候
Cache 79行   这里      @cache[path] = Bitmap.new(path)
作者: 沉淪ャ岄    时间: 2008-11-6 04:35
还是不行  = =b
作者: 雪流星    时间: 2008-11-6 05:52
往上看

用更新版的




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