Project1

标题: 跟随脚本出错 [打印本页]

作者: 少岩    时间: 2018-4-28 19:12
标题: 跟随脚本出错
本帖最后由 RyanBern 于 2018-4-29 15:11 编辑


请问为什么我装了这个跟随脚本后就这样
RUBY 代码复制
  1. # ————————————————————————————————————
  2. # 本脚本来自[url]www.66rpg.com[/url],转载自[url]www.phylomortis.com[/url],转载请保留此信息
  3. # ————————————————————————————————————
  4.  
  5. # ▼▲▼ XRXS13. パーティ列車移動 ver.1.02 ▼▲▼
  6. # by fukuyama
  7.  
  8. #
  9. # Train_Actor
  10. #
  11. # [email protected]
  12. # [url]http://www4.big.or.jp/~fukuyama/rgss/Train_Actor.txt[/url]
  13. #
  14.  
  15. module Train_Actor
  16.  
  17.  
  18.  
  19.  
  20. #是否使用停止跟随的方法,也就是说,这里false改为true的时候,如果TRANSPARENT_SWITCHES_INDEX
  21. #开关打开,跟随的人物就消失了(其实只是变成透明而已)
  22. TRANSPARENT_SWITCH = true
  23. TRANSPARENT_SWITCHES_INDEX = 191
  24. #举例:第一个为true,第二个为20,则打开20号开关,后面的人都没了。
  25.  
  26.  
  27.  
  28.  
  29.  
  30. #跟随人数的最大数目,可以更改为2、3什么的。
  31. TRAIN_ACTOR_SIZE_MAX = 5
  32.  
  33.  
  34.  
  35.  
  36.  
  37. # 定数
  38. #Input::DOWN = 2
  39. #Input::LEFT = 4
  40. #Input::RIGHT = 6
  41. #Input::UP = 6
  42. DOWN_LEFT = 1
  43. DOWN_RIGHT = 3
  44. UP_LEFT = 7
  45. UP_RIGHT = 9
  46. JUMP = 5
  47.  
  48. class Game_Party_Actor < Game_Character
  49.   def initialize
  50.     super()
  51.     @through = true
  52.   end
  53.   def setup(actor)
  54. # キャラクターのファイル名と色相を設定
  55.     if actor != nil
  56.       @character_name = actor.character_name
  57.       @character_hue = actor.character_hue
  58.     else
  59.       @character_name = ""
  60.       @character_hue = 0
  61.     end
  62. # 不透明度と合成方法を初期化
  63.     @opacity = 255
  64.     @blend_type = 0
  65.   end
  66.  
  67.   def screen_z(height = 0)
  68.     if $game_player.x == @x and $game_player.y == @y
  69.  
  70.     return $game_player.screen_z(height) - 1
  71.   end
  72.  
  73.  
  74.   super(height)
  75. end
  76. #--------------------------------------------------------------------------
  77. # ● 下に移動
  78. # turn_enabled : その場での向き変更を許可するフラグ
  79. #--------------------------------------------------------------------------
  80. def move_down(turn_enabled = true)
  81.   if turn_enabled
  82.     turn_down
  83.   end
  84.  
  85.   if passable?(@x, @y, Input::DOWN)
  86.     turn_down
  87.     @y += 1
  88.   end
  89.  
  90.  
  91. end
  92.  
  93. #--------------------------------------------------------------------------
  94. # ● 左に移動
  95. # turn_enabled : その場での向き変更を許可するフラグ
  96. #--------------------------------------------------------------------------
  97.   def move_left(turn_enabled = true)
  98. # 左を向く
  99.     if turn_enabled
  100.       turn_left
  101.     end
  102. # 通行可能な場合
  103.    if passable?(@x, @y, Input::LEFT)
  104.   # 左を向く
  105.     turn_left
  106.     @x -= 1
  107.    end
  108. end
  109.  
  110. #--------------------------------------------------------------------------
  111. # ● 右に移動
  112. # turn_enabled : その場での向き変更を許可するフラグ
  113. #--------------------------------------------------------------------------
  114.   def move_right(turn_enabled = true)
  115. # 右を向く
  116.     if turn_enabled
  117.       turn_right
  118.     end
  119.  
  120. # 通行可能な場合
  121.     if passable?(@x, @y, Input::RIGHT)
  122. # 右を向く
  123.       turn_right
  124. # 座標を更新
  125.       @x += 1
  126.     end
  127.   end
  128.  
  129. #--------------------------------------------------------------------------
  130. # ● 上に移動
  131. # turn_enabled : その場での向き変更を許可するフラグ
  132. #--------------------------------------------------------------------------
  133.   def move_up(turn_enabled = true)
  134. # 上を向く
  135.     if turn_enabled
  136.       turn_up
  137.     end
  138. # 通行可能な場合
  139.     if passable?(@x, @y, Input::UP)
  140. # 上を向く
  141.       turn_up
  142. # 座標を更新
  143.       @y -= 1
  144.     end
  145.  
  146.   end
  147.  
  148. #--------------------------------------------------------------------------
  149. # ● 左下に移動
  150. #--------------------------------------------------------------------------
  151.   def move_lower_left
  152. # 向き固定でない場合
  153.     unless @direction_fix
  154. # 右向きだった場合は左を、上向きだった場合は下を向く
  155.       @direction = (@direction == Input::RIGHT ? Input::LEFT : @direction == Input::UP ? Input::DOWN : @direction)
  156.     end
  157.  
  158. # 下→左、左→下 のどちらかのコースが通行可能な場合
  159.   if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::LEFT)) or
  160.   (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::DOWN))
  161. # 座標を更新
  162.     @x -= 1
  163.     @y += 1
  164.   end
  165.  
  166. end
  167.  
  168. #--------------------------------------------------------------------------
  169. # ● 右下に移動
  170. #--------------------------------------------------------------------------
  171.   def move_lower_right
  172. # 向き固定でない場合
  173.     unless @direction_fix
  174. # 左向きだった場合は右を、上向きだった場合は下を向く
  175.       @direction = (@direction == Input::LEFT ? Input::RIGHT : @direction == Input::UP ? Input::DOWN : @direction)
  176.     end
  177.  
  178. # 下→右、右→下 のどちらかのコースが通行可能な場合
  179.     if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::RIGHT)) or
  180.     (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::DOWN))
  181. # 座標を更新
  182.       @x += 1
  183.       @y += 1
  184.     end
  185.   end
  186.  
  187. #--------------------------------------------------------------------------
  188. # ● 左上に移動
  189. #--------------------------------------------------------------------------
  190.   def move_upper_left
  191. # 向き固定でない場合
  192.     unless @direction_fix
  193. # 右向きだった場合は左を、下向きだった場合は上を向く
  194.       @direction = (@direction == Input::RIGHT ? Input::LEFT : @direction == Input::DOWN ? Input::UP : @direction)
  195.     end
  196.  
  197. # 上→左、左→上 のどちらかのコースが通行可能な場合
  198.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::LEFT)) or
  199.     (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::UP))
  200. # 座標を更新
  201.       @x -= 1
  202.       @y -= 1
  203.     end
  204.  
  205.   end
  206.  
  207. #--------------------------------------------------------------------------
  208. # ● 右上に移動
  209. #--------------------------------------------------------------------------
  210.   def move_upper_right
  211. # 向き固定でない場合
  212.     unless @direction_fix
  213. # 左向きだった場合は右を、下向きだった場合は上を向く
  214.       @direction = (@direction == Input::LEFT ? Input::RIGHT : @direction == Input::DOWN ? Input::UP : @direction)
  215.     end
  216.  
  217. # 上→右、右→上 のどちらかのコースが通行可能な場合
  218.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::RIGHT)) or
  219.     (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::UP))
  220. # 座標を更新
  221.        @x += 1
  222.        @y -= 1
  223.      end     
  224.    end   
  225.   attr_writer :move_speed
  226.   attr_writer :step_anime
  227. end
  228. module Spriteset_Map_Module
  229.   def setup_actor_character_sprites?
  230.     return @setup_actor_character_sprites_flag != nil
  231.   end  
  232.   def setup_actor_character_sprites(characters)
  233.     if !setup_actor_character_sprites?
  234.       index_game_player = 0
  235.       @character_sprites.each_index do |i|
  236.         if @character_sprites[i].character.instance_of?(Game_Player)
  237.           index_game_player = i
  238.           break
  239.         end        
  240.       end
  241.       for character in characters.reverse
  242.         @character_sprites.unshift(Sprite_Character.new(@viewport1, character))
  243.       end
  244.      @setup_actor_character_sprites_flag = true
  245.    end
  246. end
  247. end
  248. module Scene_Map_Module
  249.   def setup_actor_character_sprites(characters)
  250.     @spriteset.setup_actor_character_sprites(characters)
  251.   end  
  252. end
  253. module Game_Party_Module
  254.   def set_transparent_actors(transparent)
  255.     @transparent = transparent
  256.   end
  257.   def setup_actor_character_sprites
  258.     if @characters == nil
  259.       @characters = []
  260.       for i in 1 ... TRAIN_ACTOR_SIZE_MAX
  261.         @characters.push(Game_Party_Actor.new)
  262.       end
  263.     end
  264.     for i in 1 ... TRAIN_ACTOR_SIZE_MAX
  265.       @characters[i - 1].setup(actors[i])
  266.     end
  267.     if $scene.class.method_defined?('setup_actor_character_sprites')
  268.       $scene.setup_actor_character_sprites(@characters)
  269.     end   
  270.   end
  271.   def update_party_actors
  272.     setup_actor_character_sprites
  273.     transparent = $game_player.transparent
  274.     if transparent == false
  275.       if TRANSPARENT_SWITCH
  276.         transparent = $game_switches[TRANSPARENT_SWITCHES_INDEX]
  277.       end
  278.     end
  279.     for character in @characters
  280.       character.transparent = transparent
  281.       character.move_speed = $game_player.move_speed
  282.       character.step_anime = $game_player.step_anime
  283.       character.update
  284.     end
  285.   end  
  286.   def moveto_party_actors( x, y )
  287.     setup_actor_character_sprites
  288.     for character in @characters
  289.       character.moveto( x, y )
  290.     end
  291.     if @move_list == nil
  292.       @move_list = []
  293.     end
  294.     move_list_setup
  295.   end
  296.   def move_party_actors
  297.     if @move_list == nil
  298.       @move_list = []
  299.       move_list_setup
  300.     end
  301.     @move_list.each_index do |i|
  302.     if @characters[i] != nil
  303.       case @move_list[i].type
  304.       when Input::DOWN
  305.         @characters[i].move_down(@move_list[i].args[0])
  306.       when Input::LEFT
  307.         @characters[i].move_left(@move_list[i].args[0])
  308.       when Input::RIGHT
  309.         @characters[i].move_right(@move_list[i].args[0])
  310.       when Input::UP
  311.         @characters[i].move_up(@move_list[i].args[0])
  312.       when DOWN_LEFT
  313.         @characters[i].move_lower_left
  314.       when DOWN_RIGHT
  315.         @characters[i].move_lower_right
  316.       when UP_LEFT
  317.         @characters[i].move_upper_left
  318.       when UP_RIGHT
  319.         @characters[i].move_upper_right
  320.       when JUMP
  321.         @characters[i].jump(@move_list[i].args[0],@move_list[i].args[1])
  322.       end
  323.     end   
  324.   end
  325. end
  326.  
  327. class Move_List_Element
  328.   def initialize(type,args)
  329.     @type = type
  330.     @args = args
  331.   end
  332.   def type() return @type end
  333.     def args() return @args end
  334.   end
  335.   def move_list_setup
  336.     for i in 0 .. TRAIN_ACTOR_SIZE_MAX
  337.       @move_list[i] = nil
  338.     end   
  339.   end  
  340.   def add_move_list(type,*args)
  341.     @move_list.unshift(Move_List_Element.new(type,args)).pop
  342.   end
  343.   def move_down_party_actors(turn_enabled = true)
  344.     move_party_actors
  345.     add_move_list(Input::DOWN,turn_enabled)
  346.   end
  347.  
  348.   def move_left_party_actors(turn_enabled = true)
  349.     move_party_actors
  350.     add_move_list(Input::LEFT,turn_enabled)
  351.   end
  352.   def move_right_party_actors(turn_enabled = true)
  353.     move_party_actors
  354.     add_move_list(Input::RIGHT,turn_enabled)
  355.   end
  356.   def move_up_party_actors(turn_enabled = true)
  357.     move_party_actors
  358.     add_move_list(Input::UP,turn_enabled)
  359.   end
  360.   def move_lower_left_party_actors
  361.     move_party_actors
  362.     add_move_list(DOWN_LEFT)
  363.   end
  364.   def move_lower_right_party_actors
  365.     move_party_actors
  366.     add_move_list(DOWN_RIGHT)
  367.   end
  368.   def move_upper_left_party_actors
  369.     move_party_actors
  370.     add_move_list(UP_LEFT)
  371.   end
  372.   def move_upper_right_party_actors
  373.     move_party_actors
  374.     add_move_list(UP_RIGHT)
  375.   end
  376.   def jump_party_actors(x_plus, y_plus)
  377.     move_party_actors
  378.     add_move_list(JUMP,x_plus, y_plus)
  379.   end  
  380. end
  381.  
  382. module Game_Player_Module
  383.   def update
  384.     $game_party.update_party_actors
  385.     super
  386.   end
  387.   def moveto( x, y )
  388.     $game_party.moveto_party_actors( x, y )
  389.     super( x, y )
  390.   end
  391.   def move_down(turn_enabled = true)
  392.     if passable?(@x, @y, Input::DOWN)
  393.       $game_party.move_down_party_actors(turn_enabled)
  394.     end
  395.     super(turn_enabled)
  396.   end
  397.   def move_left(turn_enabled = true)
  398.     if passable?(@x, @y, Input::LEFT)
  399.       $game_party.move_left_party_actors(turn_enabled)
  400.     end
  401.     super(turn_enabled)
  402.   end
  403.   def move_right(turn_enabled = true)
  404.     if passable?(@x, @y, Input::RIGHT)
  405.       $game_party.move_right_party_actors(turn_enabled)
  406.     end
  407.     super(turn_enabled)
  408.   end
  409.   def move_up(turn_enabled = true)
  410.     if passable?(@x, @y, Input::UP)
  411.       $game_party.move_up_party_actors(turn_enabled)
  412.     end
  413.     super(turn_enabled)
  414.   end
  415.   def move_lower_left
  416.     # 下→左、左→下 のどちらかのコースが通行可能な場合
  417.     if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::LEFT)) or
  418.       (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::DOWN))
  419.       $game_party.move_lower_left_party_actors
  420.     end
  421.     super
  422.   end
  423.   def move_lower_right
  424.     # 下→右、右→下 のどちらかのコースが通行可能な場合
  425.     if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::RIGHT)) or
  426.       (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::DOWN))
  427.       $game_party.move_lower_right_party_actors
  428.     end
  429.     super
  430.   end
  431.   def move_upper_left
  432.     # 上→左、左→上 のどちらかのコースが通行可能な場合
  433.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::LEFT)) or
  434.       (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::UP))
  435.       $game_party.move_upper_left_party_actors
  436.     end
  437.     super
  438.   end
  439.   def move_upper_right
  440.     # 上→右、右→上 のどちらかのコースが通行可能な場合
  441.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::RIGHT)) or
  442.       (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::UP))
  443.       $game_party.move_upper_right_party_actors
  444.     end
  445.     super
  446.   end
  447.   def jump(x_plus, y_plus)
  448.     # 新しい座標を計算
  449.     new_x = @x + x_plus
  450.     new_y = @y + y_plus
  451.     # 加算値が (0,0) の場合か、ジャンプ先が通行可能な場合
  452.     if (x_plus == 0 and y_plus == 0) or passable?(new_x, new_y, 0)
  453.       $game_party.jump_party_actors(x_plus, y_plus)
  454.     end
  455.     super(x_plus, y_plus)
  456.   end
  457.  
  458.   attr_reader :move_speed
  459.   attr_reader :step_anime
  460. end
  461.  
  462. end # module Train_Actor
  463. class Game_Party
  464.   include Train_Actor::Game_Party_Module
  465. end
  466. class Game_Player
  467.   include Train_Actor::Game_Player_Module
  468. end
  469. class Spriteset_Map
  470.   include Train_Actor::Spriteset_Map_Module
  471. end
  472. class Scene_Map
  473.   include Train_Actor::Scene_Map_Module
  474. end

这是脚本
作者: 少岩    时间: 2018-4-28 19:14
  1. # ————————————————————————————————————
  2. # 本脚本来自www.66rpg.com,转载自www.phylomortis.com,转载请保留此信息
  3. # ————————————————————————————————————

  4. # ▼▲▼ XRXS13. パーティ列車移動 ver.1.02 ▼▲▼
  5. # by fukuyama

  6. #
  7. # Train_Actor
  8. #
  9. # [email protected]
  10. # http://www4.big.or.jp/~fukuyama/rgss/Train_Actor.txt
  11. #

  12. module Train_Actor




  13. #是否使用停止跟随的方法,也就是说,这里false改为true的时候,如果TRANSPARENT_SWITCHES_INDEX
  14. #开关打开,跟随的人物就消失了(其实只是变成透明而已)
  15. TRANSPARENT_SWITCH = true
  16. TRANSPARENT_SWITCHES_INDEX = 191
  17. #举例:第一个为true,第二个为20,则打开20号开关,后面的人都没了。





  18. #跟随人数的最大数目,可以更改为2、3什么的。
  19. TRAIN_ACTOR_SIZE_MAX = 5





  20. # 定数
  21. #Input::DOWN = 2
  22. #Input::LEFT = 4
  23. #Input::RIGHT = 6
  24. #Input::UP = 6
  25. DOWN_LEFT = 1
  26. DOWN_RIGHT = 3
  27. UP_LEFT = 7
  28. UP_RIGHT = 9
  29. JUMP = 5

  30. class Game_Party_Actor < Game_Character
  31.   def initialize
  32.     super()
  33.     @through = true
  34.   end
  35.   def setup(actor)
  36. # キャラクターのファイル名と色相を設定
  37.     if actor != nil
  38.       @character_name = actor.character_name
  39.       @character_hue = actor.character_hue
  40.     else
  41.       @character_name = ""
  42.       @character_hue = 0
  43.     end
  44. # 不透明度と合成方法を初期化
  45.     @opacity = 255
  46.     @blend_type = 0
  47.   end
  48.   
  49.   def screen_z(height = 0)
  50.     if $game_player.x == @x and $game_player.y == @y
  51.   
  52.     return $game_player.screen_z(height) - 1
  53.   end
  54.   

  55.   super(height)
  56. end
  57. #--------------------------------------------------------------------------
  58. # ● 下に移動
  59. # turn_enabled : その場での向き変更を許可するフラグ
  60. #--------------------------------------------------------------------------
  61. def move_down(turn_enabled = true)
  62.   if turn_enabled
  63.     turn_down
  64.   end
  65.   
  66.   if passable?(@x, @y, Input::DOWN)
  67.     turn_down
  68.     @y += 1
  69.   end
  70.   

  71. end

  72. #--------------------------------------------------------------------------
  73. # ● 左に移動
  74. # turn_enabled : その場での向き変更を許可するフラグ
  75. #--------------------------------------------------------------------------
  76.   def move_left(turn_enabled = true)
  77. # 左を向く
  78.     if turn_enabled
  79.       turn_left
  80.     end
  81. # 通行可能な場合
  82.    if passable?(@x, @y, Input::LEFT)
  83.   # 左を向く
  84.     turn_left
  85.     @x -= 1
  86.    end
  87. end

  88. #--------------------------------------------------------------------------
  89. # ● 右に移動
  90. # turn_enabled : その場での向き変更を許可するフラグ
  91. #--------------------------------------------------------------------------
  92.   def move_right(turn_enabled = true)
  93. # 右を向く
  94.     if turn_enabled
  95.       turn_right
  96.     end
  97.    
  98. # 通行可能な場合
  99.     if passable?(@x, @y, Input::RIGHT)
  100. # 右を向く
  101.       turn_right
  102. # 座標を更新
  103.       @x += 1
  104.     end
  105.   end
  106.   
  107. #--------------------------------------------------------------------------
  108. # ● 上に移動
  109. # turn_enabled : その場での向き変更を許可するフラグ
  110. #--------------------------------------------------------------------------
  111.   def move_up(turn_enabled = true)
  112. # 上を向く
  113.     if turn_enabled
  114.       turn_up
  115.     end
  116. # 通行可能な場合
  117.     if passable?(@x, @y, Input::UP)
  118. # 上を向く
  119.       turn_up
  120. # 座標を更新
  121.       @y -= 1
  122.     end
  123.    
  124.   end
  125.   
  126. #--------------------------------------------------------------------------
  127. # ● 左下に移動
  128. #--------------------------------------------------------------------------
  129.   def move_lower_left
  130. # 向き固定でない場合
  131.     unless @direction_fix
  132. # 右向きだった場合は左を、上向きだった場合は下を向く
  133.       @direction = (@direction == Input::RIGHT ? Input::LEFT : @direction == Input::UP ? Input::DOWN : @direction)
  134.     end
  135.    
  136. # 下→左、左→下 のどちらかのコースが通行可能な場合
  137.   if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::LEFT)) or
  138.   (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::DOWN))
  139. # 座標を更新
  140.     @x -= 1
  141.     @y += 1
  142.   end
  143.   
  144. end

  145. #--------------------------------------------------------------------------
  146. # ● 右下に移動
  147. #--------------------------------------------------------------------------
  148.   def move_lower_right
  149. # 向き固定でない場合
  150.     unless @direction_fix
  151. # 左向きだった場合は右を、上向きだった場合は下を向く
  152.       @direction = (@direction == Input::LEFT ? Input::RIGHT : @direction == Input::UP ? Input::DOWN : @direction)
  153.     end
  154.    
  155. # 下→右、右→下 のどちらかのコースが通行可能な場合
  156.     if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::RIGHT)) or
  157.     (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::DOWN))
  158. # 座標を更新
  159.       @x += 1
  160.       @y += 1
  161.     end
  162.   end
  163.   
  164. #--------------------------------------------------------------------------
  165. # ● 左上に移動
  166. #--------------------------------------------------------------------------
  167.   def move_upper_left
  168. # 向き固定でない場合
  169.     unless @direction_fix
  170. # 右向きだった場合は左を、下向きだった場合は上を向く
  171.       @direction = (@direction == Input::RIGHT ? Input::LEFT : @direction == Input::DOWN ? Input::UP : @direction)
  172.     end
  173.    
  174. # 上→左、左→上 のどちらかのコースが通行可能な場合
  175.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::LEFT)) or
  176.     (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::UP))
  177. # 座標を更新
  178.       @x -= 1
  179.       @y -= 1
  180.     end
  181.    
  182.   end
  183.   
  184. #--------------------------------------------------------------------------
  185. # ● 右上に移動
  186. #--------------------------------------------------------------------------
  187.   def move_upper_right
  188. # 向き固定でない場合
  189.     unless @direction_fix
  190. # 左向きだった場合は右を、下向きだった場合は上を向く
  191.       @direction = (@direction == Input::LEFT ? Input::RIGHT : @direction == Input::DOWN ? Input::UP : @direction)
  192.     end
  193.    
  194. # 上→右、右→上 のどちらかのコースが通行可能な場合
  195.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::RIGHT)) or
  196.     (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::UP))
  197. # 座標を更新
  198.        @x += 1
  199.        @y -= 1
  200.      end     
  201.    end   
  202.   attr_writer :move_speed
  203.   attr_writer :step_anime
  204. end
  205. module Spriteset_Map_Module
  206.   def setup_actor_character_sprites?
  207.     return @setup_actor_character_sprites_flag != nil
  208.   end  
  209.   def setup_actor_character_sprites(characters)
  210.     if !setup_actor_character_sprites?
  211.       index_game_player = 0
  212.       @character_sprites.each_index do |i|
  213.         if @character_sprites[i].character.instance_of?(Game_Player)
  214.           index_game_player = i
  215.           break
  216.         end        
  217.       end
  218.       for character in characters.reverse
  219.         @character_sprites.unshift(Sprite_Character.new(@viewport1, character))
  220.       end
  221.      @setup_actor_character_sprites_flag = true
  222.    end
  223. end
  224. end
  225. module Scene_Map_Module
  226.   def setup_actor_character_sprites(characters)
  227.     @spriteset.setup_actor_character_sprites(characters)
  228.   end  
  229. end
  230. module Game_Party_Module
  231.   def set_transparent_actors(transparent)
  232.     @transparent = transparent
  233.   end
  234.   def setup_actor_character_sprites
  235.     if @characters == nil
  236.       @characters = []
  237.       for i in 1 ... TRAIN_ACTOR_SIZE_MAX
  238.         @characters.push(Game_Party_Actor.new)
  239.       end
  240.     end
  241.     for i in 1 ... TRAIN_ACTOR_SIZE_MAX
  242.       @characters[i - 1].setup(actors[i])
  243.     end
  244.     if $scene.class.method_defined?('setup_actor_character_sprites')
  245.       $scene.setup_actor_character_sprites(@characters)
  246.     end   
  247.   end
  248.   def update_party_actors
  249.     setup_actor_character_sprites
  250.     transparent = $game_player.transparent
  251.     if transparent == false
  252.       if TRANSPARENT_SWITCH
  253.         transparent = $game_switches[TRANSPARENT_SWITCHES_INDEX]
  254.       end
  255.     end
  256.     for character in @characters
  257.       character.transparent = transparent
  258.       character.move_speed = $game_player.move_speed
  259.       character.step_anime = $game_player.step_anime
  260.       character.update
  261.     end
  262.   end  
  263.   def moveto_party_actors( x, y )
  264.     setup_actor_character_sprites
  265.     for character in @characters
  266.       character.moveto( x, y )
  267.     end
  268.     if @move_list == nil
  269.       @move_list = []
  270.     end
  271.     move_list_setup
  272.   end
  273.   def move_party_actors
  274.     if @move_list == nil
  275.       @move_list = []
  276.       move_list_setup
  277.     end
  278.     @move_list.each_index do |i|
  279.     if @characters[i] != nil
  280.       case @move_list[i].type
  281.       when Input::DOWN
  282.         @characters[i].move_down(@move_list[i].args[0])
  283.       when Input::LEFT
  284.         @characters[i].move_left(@move_list[i].args[0])
  285.       when Input::RIGHT
  286.         @characters[i].move_right(@move_list[i].args[0])
  287.       when Input::UP
  288.         @characters[i].move_up(@move_list[i].args[0])
  289.       when DOWN_LEFT
  290.         @characters[i].move_lower_left
  291.       when DOWN_RIGHT
  292.         @characters[i].move_lower_right
  293.       when UP_LEFT
  294.         @characters[i].move_upper_left
  295.       when UP_RIGHT
  296.         @characters[i].move_upper_right
  297.       when JUMP
  298.         @characters[i].jump(@move_list[i].args[0],@move_list[i].args[1])
  299.       end
  300.     end   
  301.   end
  302. end

  303. class Move_List_Element
  304.   def initialize(type,args)
  305.     @type = type
  306.     @args = args
  307.   end
  308.   def type() return @type end
  309.     def args() return @args end
  310.   end
  311.   def move_list_setup
  312.     for i in 0 .. TRAIN_ACTOR_SIZE_MAX
  313.       @move_list[i] = nil
  314.     end   
  315.   end  
  316.   def add_move_list(type,*args)
  317.     @move_list.unshift(Move_List_Element.new(type,args)).pop
  318.   end
  319.   def move_down_party_actors(turn_enabled = true)
  320.     move_party_actors
  321.     add_move_list(Input::DOWN,turn_enabled)
  322.   end
  323.   
  324.   def move_left_party_actors(turn_enabled = true)
  325.     move_party_actors
  326.     add_move_list(Input::LEFT,turn_enabled)
  327.   end
  328.   def move_right_party_actors(turn_enabled = true)
  329.     move_party_actors
  330.     add_move_list(Input::RIGHT,turn_enabled)
  331.   end
  332.   def move_up_party_actors(turn_enabled = true)
  333.     move_party_actors
  334.     add_move_list(Input::UP,turn_enabled)
  335.   end
  336.   def move_lower_left_party_actors
  337.     move_party_actors
  338.     add_move_list(DOWN_LEFT)
  339.   end
  340.   def move_lower_right_party_actors
  341.     move_party_actors
  342.     add_move_list(DOWN_RIGHT)
  343.   end
  344.   def move_upper_left_party_actors
  345.     move_party_actors
  346.     add_move_list(UP_LEFT)
  347.   end
  348.   def move_upper_right_party_actors
  349.     move_party_actors
  350.     add_move_list(UP_RIGHT)
  351.   end
  352.   def jump_party_actors(x_plus, y_plus)
  353.     move_party_actors
  354.     add_move_list(JUMP,x_plus, y_plus)
  355.   end  
  356. end

  357. module Game_Player_Module
  358.   def update
  359.     $game_party.update_party_actors
  360.     super
  361.   end
  362.   def moveto( x, y )
  363.     $game_party.moveto_party_actors( x, y )
  364.     super( x, y )
  365.   end
  366.   def move_down(turn_enabled = true)
  367.     if passable?(@x, @y, Input::DOWN)
  368.       $game_party.move_down_party_actors(turn_enabled)
  369.     end
  370.     super(turn_enabled)
  371.   end
  372.   def move_left(turn_enabled = true)
  373.     if passable?(@x, @y, Input::LEFT)
  374.       $game_party.move_left_party_actors(turn_enabled)
  375.     end
  376.     super(turn_enabled)
  377.   end
  378.   def move_right(turn_enabled = true)
  379.     if passable?(@x, @y, Input::RIGHT)
  380.       $game_party.move_right_party_actors(turn_enabled)
  381.     end
  382.     super(turn_enabled)
  383.   end
  384.   def move_up(turn_enabled = true)
  385.     if passable?(@x, @y, Input::UP)
  386.       $game_party.move_up_party_actors(turn_enabled)
  387.     end
  388.     super(turn_enabled)
  389.   end
  390.   def move_lower_left
  391.     # 下→左、左→下 のどちらかのコースが通行可能な場合
  392.     if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::LEFT)) or
  393.       (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::DOWN))
  394.       $game_party.move_lower_left_party_actors
  395.     end
  396.     super
  397.   end
  398.   def move_lower_right
  399.     # 下→右、右→下 のどちらかのコースが通行可能な場合
  400.     if (passable?(@x, @y, Input::DOWN) and passable?(@x, @y + 1, Input::RIGHT)) or
  401.       (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::DOWN))
  402.       $game_party.move_lower_right_party_actors
  403.     end
  404.     super
  405.   end
  406.   def move_upper_left
  407.     # 上→左、左→上 のどちらかのコースが通行可能な場合
  408.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::LEFT)) or
  409.       (passable?(@x, @y, Input::LEFT) and passable?(@x - 1, @y, Input::UP))
  410.       $game_party.move_upper_left_party_actors
  411.     end
  412.     super
  413.   end
  414.   def move_upper_right
  415.     # 上→右、右→上 のどちらかのコースが通行可能な場合
  416.     if (passable?(@x, @y, Input::UP) and passable?(@x, @y - 1, Input::RIGHT)) or
  417.       (passable?(@x, @y, Input::RIGHT) and passable?(@x + 1, @y, Input::UP))
  418.       $game_party.move_upper_right_party_actors
  419.     end
  420.     super
  421.   end
  422.   def jump(x_plus, y_plus)
  423.     # 新しい座標を計算
  424.     new_x = @x + x_plus
  425.     new_y = @y + y_plus
  426.     # 加算値が (0,0) の場合か、ジャンプ先が通行可能な場合
  427.     if (x_plus == 0 and y_plus == 0) or passable?(new_x, new_y, 0)
  428.       $game_party.jump_party_actors(x_plus, y_plus)
  429.     end
  430.     super(x_plus, y_plus)
  431.   end
  432.   
  433.   attr_reader :move_speed
  434.   attr_reader :step_anime
  435. end

  436. end # module Train_Actor
  437. class Game_Party
  438.   include Train_Actor::Game_Party_Module
  439. end
  440. class Game_Player
  441.   include Train_Actor::Game_Player_Module
  442. end
  443. class Spriteset_Map
  444.   include Train_Actor::Spriteset_Map_Module
  445. end
  446. class Scene_Map
  447.   include Train_Actor::Scene_Map_Module
  448. end
复制代码

作者: 少岩    时间: 2018-4-28 19:14
重发了一下
作者: 吃土姬    时间: 2018-4-28 19:57
也许可以试试插入下面这段在给出的脚本后面
  1. class Sprite_Cursor
  2.     def method_missing name,*args
  3.         nil
  4.     end
  5. end
复制代码

作者: 少岩    时间: 2018-4-28 20:07
吃土姬 发表于 2018-4-28 19:57
也许可以试试插入下面这段在给出的脚本后面

http://t1.aixinxi.net/o_1cc62gbucis3127ehbo1jpr11n4a.jpg-w.jpg
作者: 少岩    时间: 2018-4-28 20:08
吃土姬 发表于 2018-4-28 19:57
也许可以试试插入下面这段在给出的脚本后面
  1. #==============================================================================
  2. # ■ Game_Actors
  3. #------------------------------------------------------------------------------
  4. #  处理角色排列的类。本类的实例请参考
  5. #  $game_actors。
  6. #==============================================================================

  7. class Game_Actors
  8.   #--------------------------------------------------------------------------
  9.   # ● 初始化对像
  10.   #--------------------------------------------------------------------------
  11.   def initialize
  12.     @data = []
  13.   end
  14.   #--------------------------------------------------------------------------
  15.   # ● 获取角色
  16.   #     actor_id : 角色 ID
  17.   #--------------------------------------------------------------------------
  18.   def [](actor_id)
  19.     if actor_id > 999 or $data_actors[actor_id] == nil
  20.       return nil
  21.     end
  22.     if @data[actor_id] == nil
  23.       @data[actor_id] = Game_Actor.new(actor_id)
  24.     end
  25.     return @data[actor_id]
  26.   end
  27. end
复制代码

作者: 少岩    时间: 2018-4-28 20:16
吃土姬 发表于 2018-4-28 19:57
也许可以试试插入下面这段在给出的脚本后面

非常感谢,已经好了,谢谢你。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1