# ▽△▽ XRXSv34. マップキャラクターセッティング ▽△▽ # # publish 2010/ 4/ 4 # update - # #============================================================================== # カスタマイズポイント #============================================================================== module XRXSV34 ID = 1 # この番号の「変数」の値に応じて変化します end #============================================================================== # プレイヤーキャラクターの表示 #============================================================================== class Game_Player < Game_Character alias xrxsv34_refresh refresh def refresh xrxsv34_refresh id = $game_variables[XRXSV34::ID].to_i if id >= 1 actor = $game_actors[id] @character_name = actor.character_name @character_index = actor.character_index end end end #============================================================================== # 変数の操作 時に適用 #============================================================================== class Game_Interpreter alias xrxsv34_command_122 command_122 def command_122 xrxsv34_command_122 for i in @params[0]..@params[1] $game_player.refresh if i == XRXSV34::ID end end end