Project1
标题:
让VX支援单张的图标的问题
[打印本页]
作者:
沉淪ャ岄
时间:
2008-11-6 01:42
标题:
让VX支援单张的图标的问题
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
复制代码
为什么我把这个脚本插入后 总是提示发生错误~~好郁闷的
作者:
雪流星
时间:
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