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] Certain texts not showing up...

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 87
Alright, so, in certain points in my game, text won't show up. Like, the name of equipment, or the Buy, Sell, or Exit commands. Someone please help >_<
« Last Edit: May 10, 2007, 10:56:16 PM by Rathalos888 »

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Sounds like a font problem, so I'm going to refer you to Blizzard's Ultimate Font Override. It's in the Script Database, I'll take a quick look and then link it for you.

EDIT:

Okay, it's part of his Tons of Add-Ons, which I have yet to use and so I suggest you read the instructions to figure out what features you want to turn on or off.

Blizzard's Tons of Add-Ons
« Last Edit: May 10, 2007, 09:37:42 PM by modern algebra »

*
A Random Custom Title
Rep:
Level 96
wah
What about his tricks? :D

b) Ultimate Font Override

This little script will do the job:

Code: [Select]
#==============================================================================
# Game_System
#==============================================================================

class Game_System
 
  attr_reader   :fontname
  attr_reader   :fontsize
 
  alias init_ultimate_font_override_later initialize
  def initialize
    init_ultimate_font_override_later
    self.fontname = "Arial"
    self.fontsize = 24
  end
 
  def fontname=(name)
    $defaultfonttype = $fontface = @fontname = name
  end
   
  def fontsize=(size)
    $defaultfontsize = $fontsize = @fontsize = size
  end
 
end

#==============================================================================
# Bitmap
#==============================================================================

class Bitmap

  alias init_font_override_later initialize
  def initialize(w, h = nil)
    if w.is_a?(Numeric) and h.is_a?(Numeric)
      init_font_override_later(w, h)
    else
      init_font_override_later(w)
    end
    if $game_system.fontname != nil and not $scene.is_a?(Scene_Title)
      self.font.name = $game_system.fontname
      self.font.size = $game_system.fontsize
    else
      self.font.name = "Arial"
      self.font.size = 24
    end
  end
 
end

You can change the font/fontsize with

Code: [Select]
$game_system.fontname = "FONTNAME"
$game_system.fontsize = FONTSIZE

It will override the font from any RMXP version.

**
Rep:
Level 87
I wove blizzard


Seriously >_>

Thanks guys, works fine now ^_^

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
solved? add [RESOLVED] to topic title
Watch out for: HaloOfTheSun