Project1
标题:
我这个脚本为什么总是错误?
[打印本页]
作者:
乐乐66
时间:
2012-12-31 19:57
标题:
我这个脚本为什么总是错误?
<p>#==============================================================================
# ■ Scene_New_Game
#------------------------------------------------------------------------------
# 人·仙·番外传(篇)的大篇幅选择窗口
#==============================================================================
class Scene_New_Game
#--------------------------------------------------------------------------
# ● 初始化对像
# help_text : 帮助窗口显示的字符串
#--------------------------------------------------------------------------
def initialize(help_text)
@help_text = help_text
end
#--------------------------------------------------------------------------
# ● 主处理
#--------------------------------------------------------------------------
def main
# 生成帮助窗口
@lolo1_window = Window_New_Game_File.new
@help_window = Myself_Window_Help.new
@help_window.set_text(@help_text)
# 执行过渡
Graphics.transition
# 主循环
loop do
# 刷新游戏画面
Graphics.update
# 刷新输入信息
Input.update
# 刷新画面
update
# 如果画面被切换的话就中断循环
if $scene != self
break
end
end
# 准备过渡
Graphics.freeze
# 释放窗口
@lolo1_window.dispose
@help_window.dispose
end
#--------------------------------------------------------------------------
# ● 刷新画面
#--------------------------------------------------------------------------
def update
# 刷新窗口
@help_window.update
@lolo1_window.update
# 按下 C 键的情况下
if Input.trigger?(Input::C)
# 调用过程 on_decision (定义继承目标)
on_decision(make_filename(@file_index))
$game_temp.last_file_index = @file_index
return
end
# 按下 B 键的情况下
if Input.trigger?(Input::B)
# 设置初期同伴位置
$game_party.setup_starting_members
# 设置关于我们的地图
$game_map.setup(002)
# 刷新主角
$game_player.refresh
# 执行地图设置的 BGM 与 BGS 的自动切换
$game_map.autoplay
# 刷新地图 (执行并行事件)
$game_map.update
# 切换地图画面
$scene = Scene_Map.new
# 主角向初期位置移动
$game_player.moveto(0,0)
return
end
end
end</p>
复制代码
第19行总是错误
ArgumentError
提示内容是
Wrong number of arguments(0 for 2)
如果需要我再发其他相关脚本
作者:
wwwcctvty
时间:
2012-12-31 20:40
19行应该是"@lolo1_window = Window_New_Game_File.new",这行没理由出错呀?
楼主再试下看是19行不?
作者:
弗雷德
时间:
2013-1-1 15:28
俺这测试没问题,LZ还用了啥外挂脚本?
作者:
zhangbanxian
时间:
2013-1-1 15:34
- -b搜索class Window_New_Game_File看看initialize要传哪些参数...
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1