赞 | 0 |
VIP | 0 |
好人卡 | 43 |
积分 | 0 |
经验 | 7308 |
最后登录 | 2016-7-22 |
在线时间 | 486 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 49
- 在线时间
- 486 小时
- 注册时间
- 2009-7-23
- 帖子
- 449
|
本帖最后由 2578699 于 2011-8-20 18:55 编辑
把游戏所用字体放在游戏目录下,
在脚本顶端插入,7行修改字体。- dir = Win32API.new('kernel32','GetSystemDirectory','pl','l')
- dir_str = " " * 256
- dir.call(dir_str,255)
- dir_str = dir_str.split('system')[0]
- font_name = "fzchyjw.ttf"
- font_chn_name = "方正粗活意简体"
- begin
- if FileTest.exist?(font_name)
- copy = Win32API.new('kernel32',"CopyFileA",'ppl','')
- copy.call(font_name, "#{dir_str}Fonts/#{font_name}",0)
- font = Win32API.new('gdi32','AddFontResourceA','p','l')
- sendmsg = Win32API.new('user32','SendMessageA','llll','l')
- unless Font.exist?(font_chn_name)
- font.call(font_name)
- sendmsg.call(65535,29,0,0)
- end
- end
- end
- #==============================================================================
- # 鸣谢:GPRA8764
- #==============================================================================
复制代码 脚本来自全新世纪2 |
|