Jump to content

Character creation


Recommended Posts

3 hours ago, R3ktMeight said:

Hello, so i want, when i create a character in metin2 to be allowed to use special characters like "_" and ".". Can i do this from client or binnary source ? If yes, how ?

Input_auth.cpp  delete

	if(!FN_IS_VALID_LOGIN_STRING(login))
	{
		sys_log(0, "InputAuth::Login : IS_NOT_VALID_LOGIN_STRING(%s) desc %p", login, boost::get_pointer(d));
		LoginFailure(d, "NOID");
		return;
	}

 

  • Love 1
Link to comment
Share on other sites

4 hours ago, Ikh said:

Input_auth.cpp  delete


	if(!FN_IS_VALID_LOGIN_STRING(login))
	{
		sys_log(0, "InputAuth::Login : IS_NOT_VALID_LOGIN_STRING(%s) desc %p", login, boost::get_pointer(d));
		LoginFailure(d, "NOID");
		return;
	}

 

So I see that is not possbile just from binnary source, anyway thx for the solution ! :)

Link to comment
Share on other sites

17 hours ago, Ikh said:

Input_auth.cpp  delete


	if(!FN_IS_VALID_LOGIN_STRING(login))
	{
		sys_log(0, "InputAuth::Login : IS_NOT_VALID_LOGIN_STRING(%s) desc %p", login, boost::get_pointer(d));
		LoginFailure(d, "NOID");
		return;
	}

 

not found in input_auth;

which code ? 

// in this function: void CInputAuth::Login(LPDESC d, const char * c_pData) 
	if (false == FN_IS_VALID_LOGIN_STRING(login))
	{
		sys_log(0, "InputAuth::Login : IS_NOT_VALID_LOGIN_STRING(%s) desc %p",
				login, get_pointer(d));
		LoginFailure(d, "NOID");
		return;
	}

// and in this function: void CInputAuth::LoginOpenID(LPDESC d, const char * c_pData)
	if (false == FN_IS_VALID_LOGIN_STRING(login))
	{
		sys_log(0, "InputAuth::Login : IS_NOT_VALID_LOGIN_STRING(%s) desc %p",
				login, get_pointer(d));
		LoginFailure(d, "NOID");
		return;
	}

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.