Project1
标题:
装备升级脚本BUG
[打印本页]
作者:
司马承志
时间:
2012-8-27 02:22
标题:
装备升级脚本BUG
我用的是这个脚本:
http://rpg.blue/thread-121566-1-1.html
但是实际使用的时候发现我的游戏里的装备都消失了,无法使用。。
打开范例是的时候他说缺少个什么Plus的字体,但是我也不知道怎么改……
求教。
(不知怎么发图。。。)
作者:
xiongzhuang
时间:
2012-8-27 11:27
工程里面的装备图标看看有没,要是没有图 就说明F:\RPG Maker VX\RGSS2\Graphics\System里的IconSet.png这个文件出了问题
字那个问题就直接F11脚本main里面关于那个什么PLUS的那几条删了,我删了之后就是
#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 在定义完各个类后、从这里开始实际处理。
#==============================================================================
begin
Font.default_name = ["黑体", "Tahoma"]
Graphics.freeze
$scene = Scene_Title.new
$scene.main while $scene != nil
Graphics.transition(30)
rescue Errno::ENOENT
filename = $!.message.sub("No such file or directory - ", "")
print("找不到 #{filename} 文件。")
end
没有发现问题
作者:
咕噜
时间:
2012-8-27 11:34
添加附件发图 简单的方法是那就添加个Plus字体
或者是Main的脚本改字体,
#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 在定义完各个类后、从这里开始实际处理。
#==============================================================================
unless Font.exist?("UmePlus Gothic")
print "找不到 UmePlus Gothic 字体。"
exit
end
begin
Font.default_name = ["黑体", "Tahoma"]
Graphics.freeze
$scene = Scene_Title.new
$scene.main while $scene != nil
Graphics.transition(30)
rescue Errno::ENOENT
filename = $!.message.sub("No such file or directory - ", "")
print("找不到 #{filename} 文件。")
end
复制代码
我也不明白是不是装备脚本的问题……如果不行就加个字体吧
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1