RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] RMXP Font issue

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 87
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.
« Last Edit: April 23, 2007, 02:51:04 PM by Zeriab »

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
I believe:

Find font "Maiandra GD" somewhere on the net and install it.

OR

REPLACE MAIN with this:

Code: [Select]
#==============================================================================
# ** 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

**
Rep:
Level 87
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.

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
?_? you replaced the main with that right? replaced not added under correct? also you changed the font name right?
Watch out for: HaloOfTheSun

**
Rep:
Level 87
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! :)
« Last Edit: April 21, 2007, 03:52:50 AM by clakes707 »

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
upload teh game folder if you can.
Watch out for: HaloOfTheSun

*
Shooting for the "MEMBER MODERATOR OF THE YEAR 2007" Award
Rep:
Level 89
Hi, there.
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

-----

« Last Edit: April 21, 2007, 03:56:39 AM by ChaosSpartan28 »
Sig by MacGravel

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

*
Shooting for the "MEMBER MODERATOR OF THE YEAR 2007" Award
Rep:
Level 89
Hi, there.
Solved? Add [Resolved] to the topic title.
Sig by MacGravel

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
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