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.
[UNRESOLVED, AGAIN] Fonts

0 Members and 1 Guest are viewing this topic.

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
I want something that will make the skill descriptions and statistics and commands in one font, and the actual skills in another.
« Last Edit: May 24, 2007, 09:03:42 PM by (CVE)Baal »
FFFFFFFFFFFFFFFFFFFFFF

*
A Random Custom Title
Rep:
Level 96
wah
This is my guess:

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.
That is Blizzard's Font override. Use the stuff in the second code box as call scripts?

*
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
Yeah, also most AMSes (advanced message systems) have that as a feature.

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
That script is great, but not what I'm looking for. I want something that will make the skill descriptions and statistics and commands in one font, and the actual skills in another.
FFFFFFFFFFFFFFFFFFFFFF

*
? ? ? ? ? ? ? ? ? The nice kind of alien~
Rep:
Level 92
Martian - Occasionally kind
That would require you to edit the actual scripts.

Also this is quiet different from what you first requested.
If you take some time to write out your first question and get it more precise you have a better chance of getting an answer to what you want ;)

***
Rep:
Level 89
I am yourself!
Then, you need to open the statistic script and when you meet a text-drawing method like
Code: [Select]
self.contents.draw_text
or
Code: [Select]
draw_actor_hp #Exception for draw_actor_graphics
add this line above those lines:
Code: [Select]
self.contents.font.type = "FONT NAME"
Symphony of Alderra : Memoirs of Life

Storyline : 200% (Overimaginatives)
Scripting : 100% (At last...)
Eventing  : 100%
Mapping   : 0.125%

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
Okay, but I really suck at scripting, and have no idea what you are talking about.
FFFFFFFFFFFFFFFFFFFFFF

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
 :D I figured it out.
FFFFFFFFFFFFFFFFFFFFFF

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
The call script didn't work.
FFFFFFFFFFFFFFFFFFFFFF

***
Rep:
Level 89
I am yourself!
On the script thing, not call script.
Symphony of Alderra : Memoirs of Life

Storyline : 200% (Overimaginatives)
Scripting : 100% (At last...)
Eventing  : 100%
Mapping   : 0.125%

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
On the script thing, not call script.

I wasn't responding to yours, I got that, but I want to be able to change the font in events.
FFFFFFFFFFFFFFFFFFFFFF

*
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
What do you mean in events?

As in, you want to change the font messages are displayed in?

Or you want to change the fonts of menus and stuff?

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
I want it so that it is like:

Centaur{Bob: What the hell is that?!)
             {Joanna: [Fremen{OMFG)])
FFFFFFFFFFFFFFFFFFFFFF

*
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
Use an AMS. dubealex's and ccoa's both have that feature, I believe. You can find dubealex's on creationasylum, and you could at one time have found ccoa's on .org, but their download manager is down I think...