Main Menu
  • Welcome to The RPG Maker Resource Kit.

Russian language support?

Started by Ensis, March 25, 2007, 08:06:59 PM

0 Members and 1 Guest are viewing this topic.

Ensis

Hello,

i am trying to make a russian language learning game but i wasnt able to embed russian(cyrillic) characters in a dialog. Is it even possible to do so?

This is what i tried:
- add a game event wich displays a text when the player presses the action button.
- display a text with mixed character sets: "Game: ????"

My problem is that only question marks are displayed instead of the russian characters.

Greetings,
Ensis

:)

maybe change the font?

replace the script "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 change the place it says font, but be sure to include the font in the project folder.
Watch out for: HaloOfTheSun