Noka
Joined: 3rd Jun 2010
Posts: 23
Can you make it so names can be shorter than 4 letters
is this possible? my friend did it once, but i never figured out how
15 years, 47 weeks ago
|
Dallas
Joined: 5th Apr 2009
Posts: 125
Re: Can you make it so names can be shorter than 4 letters
Theres no way so your name to be less than 4 letters. Only way is to change it in the database.
15 years, 47 weeks ago
|
Noka
Joined: 3rd Jun 2010
Posts: 23
Re: Can you make it so names can be shorter than 4 letters
Dallas posted: (30th Jul 2010 01:50 am)
Theres no way so your name to be less than 4 letters. Only way is to change it in the database.
nope. There is a way. i did it right off of the char creating screen. i tried the database thing and it crashed
15 years, 47 weeks ago
|
Klutz

Joined: 14th Jul 2009
Posts: 1737
Re: Can you make it so names can be shorter than 4 letters
I do believe the name is measured by the client before submitting the data into the DB. If I'm right, you can only get a 3 letter name by entering it into the DB yourself.
---
Web developer, currently looking for graphic artists / designers.
15 years, 47 weeks ago
|
Miksu

Joined: 4th Jun 2009
Posts: 1457
Re: Can you make it so names can be shorter than 4 letters
You can change it from source I believe, on eoserv; go to sources>src>player.cpp search line: bool Player::ValidName(std::string username)
you should find this:
bool Player::ValidName(std::string username)
{
if (username.length() < 4) <Change this to 3 or 2 then you can make 2 or 3 letter
accounts
{
return false;
}
if (username.length() >
12)
{
return false;
}
Not sure if it affects on characters but...
---
Eoserv classes: Forum ghost, test player, ex-server owner, TOP 50, mapper & an
oldbie
15 years, 47 weeks ago
|
Klutz

Joined: 14th Jul 2009
Posts: 1737
Re: Can you make it so names can be shorter than 4 letters
There was a hack used before to have a 3 letter name, the client side definitely has some built in protection for this. Sordie could probably build an addon for this but is it worth it really?
---
Web developer, currently looking for graphic artists / designers.
15 years, 47 weeks ago
|
Miksu

Joined: 4th Jun 2009
Posts: 1457
Re: Can you make it so names can be shorter than 4 letters
Klutz posted: (30th Jul 2010 02:49 pm)
There was a hack used before to have a 3 letter name, the client side definitely has some built in protection for this. Sordie could probably build an addon for this but is it worth it really?
oh, its client sided then my bad. Nevermind of my post.
---
Eoserv classes: Forum ghost, test player, ex-server owner, TOP 50, mapper & an
oldbie
15 years, 47 weeks ago
| | | | | | | |