Main Menu
  • Welcome to The RPG Maker Resource Kit.

who have the Main script (deledet him )

Started by Jeffrey555, May 18, 2007, 10:33:02 PM

0 Members and 1 Guest are viewing this topic.

Jeffrey555

who have the Main script (deledet him )

fadark


just so everyone knows, im 15 years old.

:)

Watch out for: HaloOfTheSun

modern algebra

I think he's saying that he deleted the script.

here it is:


#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  After defining each class, actual processing begins here.
#==============================================================================

begin
  # Prepare for transition
  Graphics.freeze
  # Make scene object (title screen)
  $scene = Scene_Title.new
  # Call main method as long as $scene is effective
  while $scene != nil
    $scene.main
  end
  # Fade out
  Graphics.transition(20)
rescue Errno::ENOENT
  # Supplement Errno::ENOENT exception
  # If unable to open file, display message and end
  filename = $!.message.sub("No such file or directory - ", "")
  print("Unable to find file #{filename}.")
end


:)

xD yeah I got that part.

I was saying to open a new project file and take the main script from that.
Watch out for: HaloOfTheSun