Project1
标题:
谁能帮我写个让VX能显示大图标的脚本!
[打印本页]
作者:
猫猫晒月亮
时间:
2010-9-23 09:23
提示:
作者被禁止或删除 内容自动屏蔽
作者:
猫猫晒月亮
时间:
2010-9-23 13:03
提示:
作者被禁止或删除 内容自动屏蔽
作者:
小鱼子
时间:
2010-9-23 14:44
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================
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(/[ ]+/).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(/[ ]+/).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
复制代码
作者:
猫猫晒月亮
时间:
2010-9-23 15:09
提示:
作者被禁止或删除 内容自动屏蔽
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1