I have an illegal version of RPG Maker :-\, because I don't have the money to pay. When I tes run my game, at the menu, it dosen't show the words new game, continue, and shutdown. Why is this? Thanks for your time and help.
I believe:
Find font "Maiandra GD" somewhere on the net and install it.
OR
REPLACE MAIN with this:
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
begin
# Prepare for transition
$defaultfonttype = $fontface = $fontname = Font.default_name = "Maiandra GD"
$defaultfontsize = $fontsize = Font.default_size = 22
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
-----
and replace the "Maiandra GD" with a font your computer has installed.
thanks, but when I try to test play it, it says ?????'Main'?27???SyntaxError ????????. Please help, thanks for your time.
EDIT: If you do not no what went wrong, then please tell me the code to put back in, so that I can at least run the game. Thanks, once again.
?_? you replaced the main with that right? replaced not added under correct? also you changed the font name right?
Not sure what you mean by replaced the font, it is in the script called main, if that is what you mean. And i changed your script with the old one, not just added it.
EDIT: I tried to look it up on google, but most of the sites were asking for money, about $30 to get it, and I don't want to do that. Could I jst use the name of a font already installed? If so, tell me how to do this. Thanks! :)
upload teh game folder if you can.
In the script near the beggining it should say Font.default_name = "Maiandra GD" that's what he wants you to change. Something like Tahoma or Times New Roman. Get it?
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
begin
# Prepare for transition
$defaultfonttype = $fontface = $fontname = Font.default_name = "Maiandra GD"
$defaultfontsize = $fontsize = Font.default_size = 22
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
-----
Thank you guys both! the problem is solved. Once again, thanks for your help and time! :D
Solved? Add [Resolved] to the topic title.
cool, so I fixed the title from ya xD add [resolved] not delete the name and change it to resolved xD
also moved it.