在新窗口中打开脚本页
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| $VIPArcherScript ||= {};$VIPArcherScript[:textcolor] = 20141012 module VIPArcher Text_Color = { #<-这行不能删除 #颜色编号 #颜色(R , G , B [,A ]), 32 => Color.new(0 , 0 , 255,255), 33 => Color.new(0 , 255, 0 ), 34 => Color.new(255, 0 , 0 ), 35 => Color.new(233, 233, 233 ) };Text_Color.default = Color.new end class Window_Base < Window alias vip_ex_text_color text_color def text_color(n) return VIPArcher::Text_Color[n] if n > 31 vip_ex_text_color(n) end end
|