Prevent creating characters with names like admin, gm etc.

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
User avatar
denser
Posts: 1392
Joined: Wed May 30, 2007 9:13 pm
Location: Russia
Contact:

Re: Prevent creating characters with names like admin, gm etc.

Post by denser »

i check the patch...it works well. you do something wrong!

Code: Select all

# ---------------------------------------------------------------------------# Misc Player Settings# --------------------------------------------------------------------------- # Character name template.# Examples:# CnameTemplate = [A-Z][a-z]{3,3}[A-Za-z0-9]*# The above setting will allow names with first capital letter, next three small letters,# and any letter (case insensitive) or number, like OmfgWTF1# CnameTemplate = [A-Z][a-z]*# The above setting will allow names only of letters with first one capital, like Omfgwtf# Default .* (allows any symbol)CnameTemplate = [A-Za-z0-9]{2,16}  # This setting restricts names players can give to their pets.# See CnameTemplate for detailsPetNameTemplate = [A-Za-z0-9]{2,16}
i was informed about 2 letter names...but not exact
Tiger, once tasted human flesh, will want to taste it again
L2J - the place where glad to see you any time!
hope
Posts: 1160
Joined: Thu Aug 30, 2007 5:17 pm

Re: Prevent creating characters with names like admin, gm etc.

Post by hope »

mine was this will try with the 2
[A-Za-z0-9-]{3,16}
Post Reply