rebf-gaiden/Scripts/_.18.rb
2025-04-26 17:06:34 -05:00

23 lines
No EOL
956 B
Ruby
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# マップ内イベント呼び出し(RGSS3)
#  (C)2011 TYPE74RX-T
#
#==============================================================================
# ■ Game_Interpreter
#------------------------------------------------------------------------------
#  イベントコマンドを実行するインタプリタです。このクラスは Game_Map クラス、
# Game_Troop クラス、Game_Event クラスの内部で使用されます。
#==============================================================================
class Game_Interpreter
#--------------------------------------------------------------------------
# ★ マップ内イベント呼び出し
#--------------------------------------------------------------------------
def call_ev(ev)
event = $game_map.events[ev]
child = Game_Interpreter.new(@depth + 1)
child.setup(event.list, same_map? ? @event_id : 0)
child.run
end
end