Jump to content
  • 0

[help] ? in char names


Question

Posted

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

  • 0
Posted

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

  • 0
Posted

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=.*

 

  • 0
Posted

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;

}

  • 0
Posted

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?

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...