$defaultfonttype = $fontface = Font.default_name = "Tahoma"
$defaultfontsize = $fontsize = Font.default_size = 24
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
begin
#:::::::::::::::::::::::::::
$defaultfonttype = $fontface = Font.default_name = "Tahoma"
$defaultfontsize = $fontsize = Font.default_size = 24
#::::::::::::::::::::::::
Graphics.freeze
$scene = Scene_Title.new
while $scene != nil
$scene.main
end
Graphics.transition(20)
rescue Errno::ENOENT
filename = $!.message.sub("No such file or directory - ", "")
print("File #{filename} not found.")
end
Hwang":3evik110 said:Hi maya,
go to main and add below begin
Code:$defaultfonttype = $fontface = Font.default_name = "Tahoma" $defaultfontsize = $fontsize = Font.default_size = 24
Code:#============================================================================== # ** Main #------------------------------------------------------------------------------ # After defining each class, actual processing begins here. #============================================================================== begin #::::::::::::::::::::::::::: $defaultfonttype = $fontface = Font.default_name = "Tahoma" $defaultfontsize = $fontsize = Font.default_size = 24 #:::::::::::::::::::::::: Graphics.freeze $scene = Scene_Title.new while $scene != nil $scene.main end Graphics.transition(20) rescue Errno::ENOENT filename = $!.message.sub("No such file or directory - ", "") print("File #{filename} not found.") end