设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索

那个 前辈protosssonny出来一下 你的1.02整合系统出问题了

查看数: 1296 | 评论数: 9 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2014-1-24 11:15

正文摘要:

肿么办啊

回复

倾灬城 发表于 2014-1-25 22:41:06
这个帖子标题好嚣张的语气OTZ
灰太狼与喜羊羊 发表于 2014-1-25 18:25:53
好像是你事件里执行脚本时输入错误了
415569280 发表于 2014-1-24 11:42:28
解决了     有东西被我改了。。

评分

参与人数 1星屑 -100 收起 理由
丿梁丶小柒 -100 严重连贴(警告)!记得下次使用编辑或者点评.

查看全部评分

415569280 发表于 2014-1-24 11:39:58
t太大  发不上啊
415569280 发表于 2014-1-24 11:35:52
怎么发文件夹
是打孔的脚本
415569280 发表于 2014-1-24 11:31:51
本帖最后由 415569280 于 2014-1-24 11:33 编辑

貌似是这个

   #==============================================================================
# ■ Scene_Status
#------------------------------------------------------------------------------
#  处理状态画面的类。
#==============================================================================

class Scene_Status < Scene_Base
  #--------------------------------------------------------------------------
  # ● 初始化对像
  #     actor_index : 角色位置
  #--------------------------------------------------------------------------
  def initialize(actor_index = 0)
    @actor_index = actor_index
  end
  #--------------------------------------------------------------------------
  # ● 开始处理
  #--------------------------------------------------------------------------
  def start
    super
    create_menu_background
    @actor = $game_party.members[@actor_index]
    @status_window = Window_Status.new(@actor)
  end
  #--------------------------------------------------------------------------
  # ● 结束处理
  #--------------------------------------------------------------------------
  def terminate
    super
    dispose_menu_background
    @status_window.dispose
  end
  #--------------------------------------------------------------------------
  # ● 回到原画面
  #--------------------------------------------------------------------------
  def return_scene
    $scene = Scene_Menu.new(3)
  end
  #--------------------------------------------------------------------------
  # ● 切换至下一角色画面
  #--------------------------------------------------------------------------
  def next_actor
    @actor_index += 1
    @actor_index %= $game_party.members.size
    $scene = Scene_Status.new(@actor_index)
  end
  #--------------------------------------------------------------------------
  # ● 切换至上一角色画面
  #--------------------------------------------------------------------------
  def prev_actor
    @actor_index += $game_party.members.size - 1
    @actor_index %= $game_party.members.size
    $scene = Scene_Status.new(@actor_index)
  end
  #--------------------------------------------------------------------------
  # ● 更新画面
  #--------------------------------------------------------------------------
  def update
    update_menu_background
    @status_window.update
    if Input.trigger?(Input::B)
      Sound.play_cancel
      return_scene
    elsif Input.trigger?(Input::R)
      Sound.play_cursor
      next_actor
    elsif Input.trigger?(Input::L)
      Sound.play_cursor
      prev_actor
    end
    super
  end
end

点评

汗,,。我去。你还是吧整个工程发上来吧。就是把你出错的游戏的游戏文件夹整个发上来  发表于 2014-1-24 11:33
415569280 发表于 2014-1-24 11:30:39
yangjunyin2002 发表于 2014-1-24 11:26
汗,你什么问题都没说清楚,另外标题方面要扣分,还有我听不懂你在说什么,另外你又没发脚本、工程,而且没 ...

我不知道是那个脚本。。  
yangjunyin2002 发表于 2014-1-24 11:26:34
汗,你什么问题都没说清楚,另外标题方面要扣分,还有我听不懂你在说什么,另外你又没发脚本、工程,而且没说明清楚到底怎么出错,有没有加过什么其他脚本等,@丿梁丶小柒 @protosssonny  
拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-1 11:27

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表