Hightrider Posted May 19, 2008 Posted May 19, 2008 The Question: Will be possibility, write in chat the plays in russian language on Developer Preview 3 ? No? please do it. Think this it is important for russian players Sorry for my english
Hightrider Posted May 19, 2008 Author Posted May 19, 2008 The Question: Will be possibility, write in chat the plays in russian language on Developer Preview 3 ? No? please do it. Think this it is important for russian players Sorry for my english
[LDT]LuxurY Posted May 26, 2008 Posted May 26, 2008 lua doesn't support most special characters not lua. MTA doesn't support these chars. lua supports russian chars. I did lots of functions with russian characters and they work perfectly. Anyway it'll be nice to have a fix in dp3.
Shadd00 Posted June 10, 2008 Posted June 10, 2008 LUA & MTA can't use an encoding for special non-ascii characters? I'm italian and a lot of italian words uses letters like ò, à, è etc. I have to use plain letters with " ' " to write them, and is really boring. I can figure how boring can be for a russian to translate every cyrillic character in ascii letters (by the way, i'm learning russian, very nice language ).
Dominator86 Posted June 17, 2008 Posted June 17, 2008 Would be nice too see german umlauts (ä/ö/ü) and eszet (ß) working in dp3.
SATAN Posted June 17, 2008 Posted June 17, 2008 Would be nice too see german umlauts (ä/ö/ü) and eszet (ß) working in dp3. thats not really important ..because u can write oe instead of ö etc. ...and a normal s or double ss instead of ß ^^ i think russian and other languages are more important at the moment
robhol Posted June 18, 2008 Posted June 18, 2008 Satan; It's not like the developers have to put in each char by itself - adding an encoding would probably do it, and personally, I don't see why not. Cyrillic characters, ß, äöü, æøå, never hurt anybody.
Willy Posted June 26, 2008 Posted June 26, 2008 I was raped by an umlaut. but yeh - would be good to see it in game; it would make translating things to and from, say russian, easier when you have no-one who speaks both and you want to try and tell someone the rules etc.
Dominator86 Posted June 28, 2008 Posted June 28, 2008 I think switching to unicode encoding would do the trick.
[LDT]LuxurY Posted November 1, 2008 Posted November 1, 2008 (edited) Russian letters in MTA server console: function fixconsole(str) local fix_str = "" local fix_len = string.len(str) local ascii_byte for i=1, fix_len, 1 do ascii_byte = string.byte(str,i) if (ascii_byte == 0xA8) then ascii_byte = 0xF0 elseif (ascii_byte == 0xB8) then ascii_byte = 0xF1 elseif (ascii_byte > 0xBF and ascii_byte < 0xF0) then ascii_byte = ascii_byte - 0x40 elseif (ascii_byte > 0xEF and ascii_byte < 0x100) then ascii_byte = ascii_byte - 0x10 end fix_str = string.format("%s%s",fix_str,string.char(ascii_byte)) end return fix_str end returns fixed string. Edited July 31, 2009 by Guest
skybon Posted April 4, 2009 Posted April 4, 2009 SkyBon gives a cookie to Dominator86 and gives a pie to Luxury
Recommended Posts