赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 0 |
经验 | 0 |
最后登录 | 2008-11-6 |
在线时间 | 0 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 0 小时
- 注册时间
- 2009-6-12
- 帖子
- 4
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- class Window_Base
- def draw_icon2(icon_file, x, y, enabled = true)
- bitmap = Cache.load_bitmap("Graphics/Icons/", icon_file)
- rect = Rect.new(0, 0, 24, 24)
- self.contents.blt(x, y, bitmap, rect, enabled ? 255 : 128)
- end
-
- def draw_item_name(item, x, y, enabled = true)
- if item != nil
- if item.get_icon
- draw_icon2(item.get_icon.to_s, x, y, enabled)
- else
- draw_icon(item.icon_index, x, y, enabled)
- end
- self.contents.font.color = normal_color
- self.contents.font.color.alpha = enabled ? 255 : 128
- self.contents.draw_text(x + 24, y, 172, WLH, item.name)
- end
- end
- end
- module Item
- ICON = /<ICON*(.*)>/i
- end
- class RPG::BaseItem
- def get_icon
- self.note.split(/[\r\n]+/).each { |line|
- if line =~ Item::ICON
- a = line.split(/ /)[1]
- d = ""
- while ((c = a.slice!(/./m)) != nil)
- d += c if c != ">"
- end
- return d
- end
- }
- return nil
- end
- end
- class RPG::BaseSkill
- def get_icon
- self.note.split(/[\r\n]+/).each { |line|
- if line =~ Item::ICON
- a = line.split(/ /)[1]
- d = ""
- while ((c = a.slice!(/./m)) != nil)
- d += c if c != ">"
- end
- return d
- end
- }
- return nil
- end
- end
复制代码
为什么我把这个脚本插入后 总是提示发生错误~~好郁闷的 |
|