Message by TSUKASA:
k, I have the answer
go to main and put this after begin
CODE
# Font used
$fontface = "Lucida Console"
it should look like this
CODE
begin
# Font used
$fontface = "Lucida Console"
# Prepare for transition
Graphics.freeze
# Make scene object (title screen)
$scene = Scene_Title.new
rEGULAR SCRIPT:
#==============================================================================
# ? Main
#------------------------------------------------------------------------------
#
?
#==============================================================================
begin
# This variable determines the default font type
$defaultfonttype = "Tahoma"
# This variable determines the default font size
$defaultfontsize = 22
#
Graphics.freeze
#
(
)
$scene = Scene_Title.new
# $scene
main
while $scene != nil
$scene.main
end
#
?
Graphics.transition(20)
rescue Errno::ENOENT
# ?? Errno::ENOENT
#
??
filename = $!.message.sub("No such file or directory - ", "")
print("File #{filename} not found.")
end