设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 2129|回复: 3
打印 上一主题 下一主题

[已经解决] 谁能帮我写个让VX能显示大图标的脚本!

[复制链接]
头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2010-6-17
帖子
7
跳转到指定楼层
1
发表于 2010-9-23 09:23:31 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
提示: 作者被禁止或删除 内容自动屏蔽
头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2010-6-17
帖子
7
2
 楼主| 发表于 2010-9-23 13:03:42 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
回复 支持 反对

使用道具 举报

Lv1.梦旅人

天空之神

梦石
0
星屑
156
在线时间
173 小时
注册时间
2009-5-3
帖子
612
3
发表于 2010-9-23 14:44:20 | 只看该作者
  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
复制代码

评分

参与人数 1星屑 +1000 收起 理由
夕阳武士 + 1000 认可答案+中秋贺礼

查看全部评分

回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2010-6-17
帖子
7
4
 楼主| 发表于 2010-9-23 15:09:51 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-15 23:51

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表