RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

[RESOLVED] RMXP Font issue

Started by clakes707, April 21, 2007, 02:44:46 AM

0 Members and 1 Guest are viewing this topic.

clakes707

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.
Watch out for: HaloOfTheSun

clakes707

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?
Watch out for: HaloOfTheSun

clakes707

#4
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.
Watch out for: HaloOfTheSun

ChaosSpartan28

#6
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

-----

Sig by MacGravel

clakes707

Thank you guys both! the problem is solved. Once again, thanks for your help and time! :D

ChaosSpartan28

Solved? Add [Resolved] to the topic title.
Sig by MacGravel

:)

cool, so I fixed the title from ya xD add [resolved] not delete the name and change it to resolved xD

also moved it.
Watch out for: HaloOfTheSun