我把宠物的脚本删了,错误就没了,我太机智了,哇哈哈哈哈哈 |
表示完全不懂 |
建议楼主把宠物系统的脚本发上来。 根据楼主的情况,先试试在报错的那一行之前加一句actor_x = 0 最后,请楼主善用“编辑”功能 |
#============================================================================== # ■ Window_BattleStatus #------------------------------------------------------------------------------ # 显示战斗画面同伴状态的窗口。 #============================================================================== class Window_BattleStatus < Window_Base #-------------------------------------------------------------------------- def initialize super(0, 0, 640, 160) self.contents = Bitmap.new(width - 32, height - 32) self.back_opacity = 160 @level_up_flags = [false, false] refresh end #-------------------------------------------------------------------------- def dispose super end #-------------------------------------------------------------------------- # ● 设置升级标志 # actor_index : 角色索引 #-------------------------------------------------------------------------- def level_up(actor_index) @level_up_flags[actor_index] = true end #-------------------------------------------------------------------------- # ● 刷新 #-------------------------------------------------------------------------- def refresh self.contents.clear actor = $game_party.actors[0] return if actor == nil draw_actor_graphic(actor, 20, 40) draw_actor_name(actor, 0, 0) draw_actor_hp(actor, 80, 32, 120) draw_actor_sp(actor, 80, 64, 120) if @level_up_flags[0] self.contents.font.color = normal_color self.contents.draw_text(actor_x, 96, 120, 32, "LEVEL UP!") else draw_actor_state(actor, 80, 96) end end #-------------------------------------------------------------------------- # ● 刷新画面 #-------------------------------------------------------------------------- def update super # 主界面的不透明度下降 if $game_temp.battle_main_phase self.contents_opacity -= 4 if self.contents_opacity > 191 else self.contents_opacity += 4 if self.contents_opacity < 255 end end end |
找到错误原因了是宠物系统。。。。 脚本Window_BattleStatus的第40行发生了NameError。 undefined local variable or mathod actor_x for #<Window_BattleStatus:0x1774ff0> 是什么意思啊 |
顺便问一下主界面的和进入游戏之后音乐文件在哪里,我要换 |
你的脚本貌似错误了,本人脚本渣一个,顺便说一下,我弄了一个鼠标脚本 |
站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作
GMT+8, 2024-11-24 03:52
Powered by Discuz! X3.1
© 2001-2013 Comsenz Inc.