赞 | 11 |
VIP | 302 |
好人卡 | 162 |
积分 | 62 |
经验 | 108302 |
最后登录 | 2024-11-2 |
在线时间 | 6592 小时 |
Lv4.逐梦者 醉啸 长风万里
- 梦石
- 0
- 星屑
- 6157
- 在线时间
- 6592 小时
- 注册时间
- 2007-12-16
- 帖子
- 4501
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 仲秋启明 于 2010-8-6 17:21 编辑
有人问道这个脚本,以前的那个又有冲突,现在我发一个完整无冲突版- module RPG
- class Skill
- def description
- description = @description.split(/@/)[0]
- return description != nil ? description : ''
- end
- def name_color_66RPG
- name_color = @description.split(/@/)[1]
- return name_color != nil ? name_color.to_i : 0
- end
- end
- class Weapon
- def description
- description = @description.split(/@/)[0]
- return description != nil ? description : ''
- end
- def name_color_66RPG
- name_color = @description.split(/@/)[1]
- return name_color != nil ? name_color.to_i : 0
- end
- end
- class Item
- def description
- description = @description.split(/@/)[0]
- return description != nil ? description : ''
- end
- def name_color_66RPG
- name_color = @description.split(/@/)[1]
- return name_color != nil ? name_color.to_i : 0
- end
- end
- class Armor
- def description
- description = @description.split(/@/)[0]
- return description != nil ? description : ''
- end
- def name_color_66RPG
- name_color = @description.split(/@/)[1]
- return name != nil ? name_color.to_i : 0
- end
- end
- end
- class Window_Base < Window
- def disabled_color
- return Color.new(255, 255, 255, 128)
- end
- def draw_item_name(item, x, y, enabled = true)
- if item != nil
- draw_icon(item.icon_index, x, y, enabled)
- self.contents.font.color = text_color(item.name_color_66RPG)
- self.contents.font.color.alpha = enabled ? 255 : 128
- self.contents.draw_text(x + 24, y, 172, WLH, item.name)
- end
- end
- end
复制代码 使用方法:
颜色用的是对话颜色
附一个对话颜色表
|
|