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
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================
  4. #
  5. # 脚本功能:给不同物品显示不同颜色,类似暗黑破坏神,比如套装为绿色,超级为金色
  6. #           可以更改的种类包括物品、防具、特技、武器。
  7. #
  8. # 使用方法:对于不想为白色表示的物品,在描述中最后添加@6,@4一类的即可。
  9. #           数字为颜色编号,和对话框中的一样。
  10. # ——————————————————————————————————————
  11. module RPG
  12.   class Skill
  13.     def description
  14.       description = @description.split(/@/)[0]
  15.       return description != nil ? description : ''
  16.     end
  17.     def name_color_66RPG
  18.       name_color = @description.split(/@/)[1]
  19.       return name_color != nil ? name_color.to_i : 0
  20.     end
  21.   end
  22.   class Weapon

  23.     def description
  24.       description = @description.split(/@/)[0]
  25.       return description != nil ? description : ''
  26.     end
  27.     def name_color_66RPG
  28.       name_color = @description.split(/@/)[1]
  29.       return name_color != nil ? name_color.to_i : 0
  30.     end
  31.   end
  32.   class Item
  33.    
  34.     def description
  35.       description = @description.split(/@/)[0]
  36.       return description != nil ? description : ''
  37.     end
  38.     def name_color_66RPG
  39.       name_color = @description.split(/@/)[1]
  40.       return name_color != nil ? name_color.to_i : 0
  41.     end
  42.   end
  43.   class Armor
  44.    
  45.     def description
  46.       description = @description.split(/@/)[0]
  47.       return description != nil ? description : ''
  48.     end
  49.     def name_color_66RPG
  50.       name_color = @description.split(/@/)[1]
  51.       return name != nil ? name_color.to_i : 0
  52.     end
  53.   end
  54. 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