I know the possible solution.
The Pokemon Fonts able only standard english characters.
Polish, Russian, Chineese itp. characters are changed to ???.
You must edit the fonts to select with normal (Unicode) fonts.
If you do not know how to edit this, send Private Message to me.
Solution nr 2:
- Use Advanced Message Script, sample WhiteFlute's MultiMessage.
- Edit this adding command (for example) \z[x], where x is the link to the database.
- Create Database (Sample) here:
CODE
module XW # Shortest as possible is recommended
def self.w(x) # Shortest as possible is recommended
case w
when 0 then return 'RussianChar1'
when 1 then return 'RussianChar2'
when 2 then return 'ChineeseChar' # Only if you have installed asiatic fonts.
end
end
end
In script to message: XW.w(nr)
For example:
'另' => '另' # With method
'另' => ??? # Without method.