赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 3590 |
最后登录 | 2014-1-4 |
在线时间 | 153 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 153 小时
- 注册时间
- 2010-12-18
- 帖子
- 167
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 mo88 于 2013-5-29 00:04 编辑
= =游戏设计越接近完成越多问题出现,我方5个人,敌方6个,我方使用攻击,前三个人正常,第四个人冲过去打怪就出错。。但是奇怪的是有时候第一场战斗第四个人去打就出错,有时候第一场战斗没事,但是第二场就出错。。跳框提示下面这个脚本红色字部分出错,有没人知道究竟怎么回事?
# ● 脚本
#--------------------------------------------------------------------------
def command_355
script = @list[@index].parameters[0] + "\n"
loop do
if @list[@index+1].code == 655 # 下一个事件指令在脚本2行以上的情况下
script += @list[@index+1].parameters[0] + "\n"
else
break
end
@index += 1
end
eval(script)
return true
end
end
#==============================================================================
# ■ Main
#------------------------------------------------------------------------------
# 各定义结束后,从这里开始实际处理。
#==============================================================================
# 一些常用的字体
Font.default_name = ["方正粗圆简体", "黑体", "DFKai-SB", "標楷體", "Verdana", "Arial Unicode MS"]
begin
Graphics.freeze
$scene = Scene_Title.new
$scene.main while $scene != nil
Graphics.transition(30)
rescue Errno::ENOENT
filename = $!.message.sub("无此文件或文件夹 - ", "")
print("无法找到文件 #{filename}.")
end
|
|