Project1

标题: 事件能否直接读指定的一个存档 [打印本页]

作者: 刀疤湛    时间: 2011-1-21 14:45
提示: 作者被禁止或删除 内容自动屏蔽
作者: Wind2010    时间: 2011-1-21 18:35
  1. class Interpreter
  2.   def load(n)
  3.     filename = "Save#{n}.rxdata"
  4.     unless FileTest.exist?(filename)
  5.       $game_system.se_play($data_system.buzzer_se)
  6.       return
  7.     end
  8.     $game_system.se_play($data_system.load_se)
  9.     file = File.open(filename, "rb")
  10.     characters = Marshal.load(file)
  11.     Graphics.frame_count = Marshal.load(file)
  12.     $game_system        = Marshal.load(file)
  13.     $game_switches      = Marshal.load(file)
  14.     $game_variables     = Marshal.load(file)
  15.     $game_self_switches = Marshal.load(file)
  16.     $game_screen        = Marshal.load(file)
  17.     $game_actors        = Marshal.load(file)
  18.     $game_party         = Marshal.load(file)
  19.     $game_troop         = Marshal.load(file)
  20.     $game_map           = Marshal.load(file)
  21.     $game_player        = Marshal.load(file)
  22.     if $game_system.magic_number != $data_system.magic_number
  23.       $game_map.setup($game_map.map_id)
  24.       $game_player.center($game_player.x, $game_player.y)
  25.     end
  26.     $game_party.refresh
  27.     file.close
  28.     $game_map.update
  29.     $scene = Scene_Map.new
  30.   end
  31. end
复制代码
在事件脚本调用load(存档号)




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