=begin ŸÀÌƲ ½ºÅµ ½ºÅ©¸³Æ® by Çã°Æ =end module TitleSkip @loadedScript = false def self.load; @loadedScript = true end def self.loaded?; @loadedScript end end class Scene_Title < Scene_Title #-------------------------------------------------------------------------- # ¡Ü ¸ÞÀΠó¸® #-------------------------------------------------------------------------- def main if $BTEST # ÀüÅõ Å×½ºÆ®ÀÇ °æ¿ì battle_test # ÀüÅõ Å×½ºÆ®ÀÇ °³½Ã ó¸® else # Åë»óÀÇ Ç÷¹ÀÌÀÇ °æ¿ì TitleSkip.loaded? ? super : skip_title end end #-------------------------------------------------------------------------- # ¡Ü ¸ÞÀΠó¸® #-------------------------------------------------------------------------- def skip_title TitleSkip.load # Font.default_size = 22 # ±âº» Å©±â, '¹®ÀåÀÇ Ç¥½Ã'ÀÇ ÇÁ¸®ºä¿Í µ¿ÀÏÇÏ°Ô ¸ÂÃèÀ½. # Font.default_bold = false #º¼µå¸¦ »ç¿ëÇÏÁö ¾ÊÀ½, »ç¿ëÇÔÀº true # Font.default_name = ["ÈÞ¸Õ³ª¹«"] #±âº»À¸·Î ¼³Á¤µÈ ÇÑ±Û ÆùÆ® load_database create_game_objects confirm_player_location $game_party.setup_starting_members # Ãʱâ ÆÄƼ $game_map.setup($data_system.start_map_id) # Ãʱâ À§Ä¡ÀÇ ¸Ê $game_player.moveto($data_system.start_x, $data_system.start_y) $game_player.refresh $scene = Scene_Map.new Graphics.fadeout(60) Graphics.wait(40) Graphics.frame_count = 0 $game_map.autoplay end end # presented by Çã°Æ