Project1
标题:
怎么改变装备的颜色?
[打印本页]
作者:
lyd520love
时间:
2009-7-16 11:02
标题:
怎么改变装备的颜色?
就是要在数据库里设置,设置一次,以后这件装备连介绍都时这个颜色了
作者:
lyd520love
时间:
2009-7-16 11:26
没人会?
作者:
白斑病赌东道
时间:
2009-7-16 11:29
http://rpg.blue/web/index.php?doc-view-4475
是这意思吗?
作者:
lyd520love
时间:
2009-7-16 12:47
是的,但是我要xp的
作者:
ONEWateR
时间:
2009-7-16 13:35
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================
#
# 脚本功能:给不同物品显示不同颜色,类似暗黑破坏神,比如套装为绿色,超级为金色
# 可以更改的种类包括物品、防具、特技、武器。
#
# 使用方法:对于不想为白色表示的物品,在描述中最后添加@6,@4一类的即可。
# 数字为颜色编号,和对话框中的一样。
# ——————————————————————————————————————
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
复制代码
作者:
lyd520love
时间:
2009-7-16 16:25
谢谢
作者:
lyd520love
时间:
2009-7-16 16:29
那个脚本好像不对吧,发个范例好吗?
作者:
我不宅
时间:
2009-7-16 16:36
连帖有罪,我用的好好的啊.............
作者:
lyd520love
时间:
2009-7-18 15:46
发个范例好吗,谢谢
作者:
凌辰
时间:
2009-7-31 09:20
http://rpg.blue/web/htm/news202.htm
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1