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.
Russian language support?

0 Members and 1 Guest are viewing this topic.

*
Rep: +0/-0Level 87
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
« Last Edit: March 25, 2007, 08:25:20 PM by Ensis »

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
maybe change the font?

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