sancak Posted August 23, 2010 Posted August 23, 2010 my client is supporting ç ş ı etc. but when my players create a new char...for exampler: if the char name is çiş, it becomes ?i? and also in htm files i'm using l2j gracia final how can i solve this problem thankx Quote
0 ServeSATAN Posted August 23, 2010 Posted August 23, 2010 my client is supporting ç ş ı etc. but when my players create a new char...for exampler: if the char name is çiş, it becomes ?i? and also in htm files i'm using l2j gracia final how can i solve this problem thankx first of all this is not client section. second you need fonts of that language Quote
0 sancak Posted August 24, 2010 Author Posted August 24, 2010 its not about client it is about sql (server side) cuz char names are written in database same as htm files in html folder Quote
0 Bobi Posted August 24, 2010 Posted August 24, 2010 chek here : data/config/server.propertis # Define character name template # Example to use only : CnameTemplate=[A-Z][a-z]{3,3}[A-Za-z0-9]* # will allow names with first capital letter, next three small letters, # and any (capital or not) letter or number, like ZbigN1eW # Most rational to have CnameTemplate=[A-Z][a-z]* # meaning names only of letters with first one capital, like Zbigniew # Default .* - any namy of any symbols CnameTemplate=.* PetNameTemplate=.* Quote
0 xAddytzu Posted August 24, 2010 Posted August 24, 2010 CharacterCreate else if ((_name.length() < 3) || (_name.length() > 16) || !Util.isAlphaNumeric(_name) || !isValidName(_name)) { CharCreateFail ccf = new CharCreateFail(CharCreateFail.REASON_16_ENG_CHARS); sendPacket(ccf); return; } Quote
0 sancak Posted August 26, 2010 Author Posted August 26, 2010 CnameTemplate=.* PetNameTemplate=.* my config is like this but the trouble is still continue! i didn't understand what should i do... could be about sql tables? Quote
Question
sancak
my client is supporting ç ş ı etc. but when my players create a new char...for exampler: if the char name is çiş, it becomes ?i?
and also in htm files
i'm using l2j gracia final
how can i solve this problem thankx
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.