| 
 
| 赞 | 9 |  
| VIP | 1 |  
| 好人卡 | 6 |  
| 积分 | 205 |  
| 经验 | 289801 |  
| 最后登录 | 2025-6-10 |  
| 在线时间 | 94 小时 |  
 Lv5.捕梦者 御灵的宠物 
	梦石12 星屑8481 在线时间94 小时注册时间2006-12-11帖子3156 
 | 
| window_base里39行开始 
 def text_color(n)
 case n
 when 0
 return Color.new(255, 255, 255, 255)
 when 1
 return Color.new(128, 128, 255, 255)
 when 2
 return Color.new(255, 128, 128, 255)
 when 3
 return Color.new(128, 255, 128, 255)
 when 4
 return Color.new(128, 255, 255, 255)
 when 5
 return Color.new(255, 128, 255, 255)
 when 6
 return Color.new(255, 255, 128, 255)
 when 7
 return Color.new(192, 192, 192, 255)
 else
 normal_color
 end
 end
 
 在else上加
 
 when 8
 return Color.new(0, 0, 0, 255)
 
 即可。然后你打\c[8]就可以转黑色了
 系统信息:本贴获得楼主认可,66RPG感谢您的热情解答~
 系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~
 | 
 |