document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. # Example of Main script using DeadElf79\'s Game_Settings resource check
  2. $gs=Game_Settings.new
  3. $gs.load_settings
  4. begin
  5.   # some part of original code removed from here for example only
  6.   if $gs.need_to_check_up
  7.     $gs.check_up
  8.   end
  9.   $scene=Scene_Title.new
  10.   while $scene != nil
  11.     $scene.main
  12.   end
  13.   # some part of original code removed from here for example only
  14. end
');