Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 21:02

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Login details incorrect after creating account

Discussion on Login details incorrect after creating account within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1


 
iLogix'.'s Avatar
 
elite*gold: 73
Join Date: Sep 2008
Posts: 2,093
Received Thanks: 160
Login details incorrect after creating account

hey, i always get the error that the login details are incorrect, i dont know why.
i generated a MD5 password with different salts, not even one is working, i checked the Neuz.cpp

analraudiv1, patom and nothing is not working.

any ideas?

Code:
void CNeuzApp::HashMD5( char* szResult, LPCTSTR szPWD )
{
	char szBuffer[256];
	char* szKey = "";

#ifdef __INTERNALSERVER
	switch( LANG_KOR )
#else // __INTERNALSERVER
	switch( ::GetLanguage() )
#endif // __INTERNALSERVER
	{
	case LANG_JAP:	
		szKey = "analraudiv1";
		break;
	case LANG_TWN:	
		szKey = "analraudiv1";
		break;
	case LANG_HK:
		szKey	= "analraudiv1";
		break;
#ifdef __NO_SUB_LANG
	case LANG_USA:
		szKey = "analraudiv1";
		break;
#else // __NO_SUB_LANG
	case LANG_ENG:
		{
			szKey = "patom";
			
		}
		break;
#endif // __NO_SUB_LANG
	case LANG_KOR:	
		szKey = "analraudiv1";
		break;
	case LANG_GER:
		szKey	= "analraudiv1";
		break;
	case LANG_SPA:
		szKey	= "analraudiv1";
		break;
	case LANG_POR:
		szKey	= "analraudiv1";
		break;
	case LANG_FRE:
		szKey	= "analraudiv1"; // "gjgusdbfjq"
		break;
	case LANG_VTN:
		szKey	= "analraudiv1";
		break;
	case LANG_RUS:
		szKey	= "analraudiv1";
		break;
	}

	sprintf( szBuffer, "%s%s", szKey, szPWD );
	md5( szResult, szBuffer );
}
should i not have this empty?
iLogix'. is offline  
Old 02/26/2020, 00:17   #2
 
netHoxInc's Avatar
 
elite*gold: 117
Join Date: Jan 2008
Posts: 790
Received Thanks: 992
Change it in database func too, not only source..
netHoxInc is offline  
Old 02/26/2020, 00:28   #3


 
iLogix'.'s Avatar
 
elite*gold: 73
Join Date: Sep 2008
Posts: 2,093
Received Thanks: 160
where is it? can u tell me?
iLogix'. is offline  
Old 02/26/2020, 00:41   #4
 
elite*gold: 9
The Black Market: 147/0/0
Join Date: Mar 2016
Posts: 1,464
Received Thanks: 252
Quote:
Originally Posted by iLogix'. View Post
hey, i always get the error that the login details are incorrect, i dont know why.
i generated a MD5 password with different salts, not even one is working, i checked the Neuz.cpp

analraudiv1, patom and nothing is not working.

any ideas?

Code:
void CNeuzApp::HashMD5( char* szResult, LPCTSTR szPWD )
{
	char szBuffer[256];
	char* szKey = "";

#ifdef __INTERNALSERVER
	switch( LANG_KOR )
#else // __INTERNALSERVER
	switch( ::GetLanguage() )
#endif // __INTERNALSERVER
	{
	case LANG_JAP:	
		szKey = "analraudiv1";
		break;
	case LANG_TWN:	
		szKey = "analraudiv1";
		break;
	case LANG_HK:
		szKey	= "analraudiv1";
		break;
#ifdef __NO_SUB_LANG
	case LANG_USA:
		szKey = "analraudiv1";
		break;
#else // __NO_SUB_LANG
	case LANG_ENG:
		{
			szKey = "patom";
			
		}
		break;
#endif // __NO_SUB_LANG
	case LANG_KOR:	
		szKey = "analraudiv1";
		break;
	case LANG_GER:
		szKey	= "analraudiv1";
		break;
	case LANG_SPA:
		szKey	= "analraudiv1";
		break;
	case LANG_POR:
		szKey	= "analraudiv1";
		break;
	case LANG_FRE:
		szKey	= "analraudiv1"; // "gjgusdbfjq"
		break;
	case LANG_VTN:
		szKey	= "analraudiv1";
		break;
	case LANG_RUS:
		szKey	= "analraudiv1";
		break;
	}

	sprintf( szBuffer, "%s%s", szKey, szPWD );
	md5( szResult, szBuffer );
}
should i not have this empty?
Go to CreatenNewAccount and use this prodezur

USE [ACCOUNT_DBF]
GO
/****** Object: StoredProcedure [dbo].[usp_CreateNewAccount] Script Date: 05/16/2010 20:07:35 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER proc [dbo].[usp_CreateNewAccount]
@ varchar(32),
@pw varchar(32),
@ int = 0,
@ varchar(100) = ''
as
set nocount on
set xact_abort on

select * from ACCOUNT_TBL where account = @


begin tran
INSERT ACCOUNT_TBL(account,password,isuse,member,id_no1,i d_no2,realname, cash)
VALUES @, @pw, 'T', 'A', '', @pw, '', @)
INSERT ACCOUNT_TBL_DETAIL(account,gamecode,tester,m_chLog inAuthority,regdate,BlockTime,EndTime,WebTime,isus e,secession, email)
VALUES @,'A000','2','F',GETDATE(),CONVERT(CHAR(8),GETDATE( )-1,112),CONVERT(CHAR(8),DATEADD(year,10,GETDATE()), 112),CONVERT(CHAR(8),GETDATE()-1,112),'T',NULL, @)
insert AccountPlay (Account, PlayDate)
select @, convert(int, convert(char(8), getdate(), 112))

if @@error <> 0
begin
rollback tran
select -1
end
else
begin
commit tran
select 1
end
UltrainstinctGoku is offline  
Old 02/26/2020, 00:45   #5


 
iLogix'.'s Avatar
 
elite*gold: 73
Join Date: Sep 2008
Posts: 2,093
Received Thanks: 160
Quote:
Originally Posted by Katakuris View Post
Go to CreatenNewAccount and use this prodezur

USE [ACCOUNT_DBF]
GO
/****** Object: StoredProcedure [dbo].[usp_CreateNewAccount] Script Date: 05/16/2010 20:07:35 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER proc [dbo].[usp_CreateNewAccount]
@ varchar(32),
@pw varchar(32),
@ int = 0,
@ varchar(100) = ''
as
set nocount on
set xact_abort on

select * from ACCOUNT_TBL where account = @


begin tran
INSERT ACCOUNT_TBL(account,password,isuse,member,id_no1,i d_no2,realname, cash)
VALUES @, @pw, 'T', 'A', '', @pw, '', @)
INSERT ACCOUNT_TBL_DETAIL(account,gamecode,tester,m_chLog inAuthority,regdate,BlockTime,EndTime,WebTime,isus e,secession, email)
VALUES @,'A000','2','F',GETDATE(),CONVERT(CHAR(8),GETDATE( )-1,112),CONVERT(CHAR(8),DATEADD(year,10,GETDATE()), 112),CONVERT(CHAR(8),GETDATE()-1,112),'T',NULL, @)
insert AccountPlay (Account, PlayDate)
select @, convert(int, convert(char(8), getdate(), 112))

if @@error <> 0
begin
rollback tran
select -1
end
else
begin
commit tran
select 1
end
where "createnewaccount" ? if i wanna make it a new query it has some errors in.

EDIT: i found it but it has alot of syntax errors and stuff.

next edit, account seems to be fine, but password issues.
iLogix'. is offline  
Old 02/26/2020, 00:55   #6
 
elite*gold: 9
The Black Market: 147/0/0
Join Date: Mar 2016
Posts: 1,464
Received Thanks: 252
Quote:
Originally Posted by iLogix'. View Post
where "createnewaccount" ? if i wanna make it a new query it has some errors in.

EDIT: i found it but it has alot of syntax errors and stuff.
You use this script for the database so that the accounts are accepted by flyff.


1. open SQL database and make new query
2. click on the database.
3. then ACCOUNT_DBF.
4. then click programmability
5. then click saved procedures
6. right click on the CreateNewAccount and click the first from the top menü
7. copy pasta this script in the middle window.
8. SQL excute on the red exclamation mark, did you find top left.


Edit: when you create an account, you must put a kikugalanet in front of the password e.g. if your password is test123, you must convert this to kikugalanettest123 and encrypt this to MD5.

the MD5 would be e.g. e07bba0ec8a36844b09d8e2b942634e1
UltrainstinctGoku is offline  
Old 02/26/2020, 00:59   #7


 
iLogix'.'s Avatar
 
elite*gold: 73
Join Date: Sep 2008
Posts: 2,093
Received Thanks: 160
Msg 102, Level 15, State 1, Procedure usp_CreateNewAccount, Line 22
Falsche Syntax in der Nähe von 'd_no2'.
Msg 102, Level 15, State 1, Procedure usp_CreateNewAccount, Line 24
Falsche Syntax in der Nähe von 'inAuthority'.


getting syntax problems when trying to use yours.

EDIT: well i see i have this script in already, i only have password problems it seems. i always get 5min ban for logging in with wrong account
iLogix'. is offline  
Old 02/26/2020, 01:02   #8
 
elite*gold: 9
The Black Market: 147/0/0
Join Date: Mar 2016
Posts: 1,464
Received Thanks: 252
Quote:
Originally Posted by iLogix'. View Post
Msg 102, Level 15, State 1, Procedure usp_CreateNewAccount, Line 22
Falsche Syntax in der Nähe von 'd_no2'.
Msg 102, Level 15, State 1, Procedure usp_CreateNewAccount, Line 24
Falsche Syntax in der Nähe von 'inAuthority'.


getting syntax problems when trying to use yours.

EDIT: well i see i have this script in already, i only have password problems it seems. i always get 5min ban for logging in with wrong account
it is possible that you get errors displayed, you can ignore this as long as the script is executed.

Give me your script, what do you use for creating an account.
UltrainstinctGoku is offline  
Old 02/26/2020, 01:04   #9


 
iLogix'.'s Avatar
 
elite*gold: 73
Join Date: Sep 2008
Posts: 2,093
Received Thanks: 160
Ok my only problem now is this:

Code:
Wed Feb 26 12:43:26 2020
0 - CERT_CONNECTED
Wed Feb 26 12:43:26 2020
2 - CERT_SRVR_LIST
Wed Feb 26 12:43:27 2020
4 - LOGIN_CONNECTED
Wed Feb 26 12:43:27 2020
8 - LOGIN_CACHE_ADDR
Wed Feb 26 12:43:27 2020
15 - CERT_DISCONNECT
network error:64
Wed Feb 26 12:43:28 2020
6 - LOGIN_PLAYER_LIST
Wed Feb 26 12:43:29 2020
9 - CACHE_CONNECTED
Wed Feb 26 12:43:30 2020
11 - LOGIN_REQ_PREJOIN
Wed Feb 26 12:43:30 2020
12 - LOGIN_ACK_PREJOIN
when i enter the world, everything else is working.
iLogix'. is offline  
Old 02/27/2020, 14:58   #10



 
- DK's Avatar
 
elite*gold: 7
Join Date: Sep 2012
Posts: 4,466
Received Thanks: 3,218
Quote:
Originally Posted by iLogix'. View Post
Ok my only problem now is this:

Code:
Wed Feb 26 12:43:26 2020
0 - CERT_CONNECTED
Wed Feb 26 12:43:26 2020
2 - CERT_SRVR_LIST
Wed Feb 26 12:43:27 2020
4 - LOGIN_CONNECTED
Wed Feb 26 12:43:27 2020
8 - LOGIN_CACHE_ADDR
Wed Feb 26 12:43:27 2020
15 - CERT_DISCONNECT
network error:64
Wed Feb 26 12:43:28 2020
6 - LOGIN_PLAYER_LIST
Wed Feb 26 12:43:29 2020
9 - CACHE_CONNECTED
Wed Feb 26 12:43:30 2020
11 - LOGIN_REQ_PREJOIN
Wed Feb 26 12:43:30 2020
12 - LOGIN_ACK_PREJOIN
when i enter the world, everything else is working.
Only this, is nice :P there are 1000 of Prejoin Errors.
Did you have any other lock? Try to use MSSQL Profiler and check your database problem. Its not the salt.
- DK is offline  
Reply


Similar Threads Similar Threads
HELP | Login details incorrect
01/29/2012 - Flyff Private Server - 3 Replies
Hello comunity have one problem The problem is .. Login details incorrect ¿Why? Configuration is Perfect. Pass encrypted MD5.. etc etc http://img812.imageshack.us/img812/7434/fuckerr.pn g
Login Details incorrect ?!
08/04/2011 - Flyff - 7 Replies
Heyho, Ich hab folgendes Problem, immer wenn ich mich ins Game einloggen will steht da "Login Details incorrect", was aber nicht sein kann da ich mich auch auf der Offizielen Seite einloggen kann. Ich hab es auch schon mit mehreren Accounts nur bei keinem gehts. Kann mir einer vllt. ne Lösung nennen? mgh ~
[HELP]--Login Details Incorrect..
01/02/2011 - Flyff Private Server - 0 Replies
Somebody help me for creating account in my flyff.. coz i cant create using dbo.creataccount ..?? WHY SOMEBODY HELP !!:(:(:(:(:(:(:(:(:(:(:(:(:(:(:(
v15 Login details incorrect
05/31/2010 - Flyff Private Server - 3 Replies
hey also wenn ich mich einlogen will auf meim server dann kommt ganze zeit das login details incorrect sind was muss ich dazu tun? das ich mich endlich einlogen kann?
flyff V15 Keep getting Login Details Incorrect. Please try again
05/25/2010 - Flyff Private Server - 1 Replies
Hi i keep getting this ( it all work upto the point of logging into an account ) i got the repack from Serus on Rage Zone. i am trying to get the server to run publicly but i keep getting this error. inside my Network.log it says this Wed May 12 16:38:17 2010 0 - CERT_CONNECTED Wed May 12 16:38:18 2010 3 - CERT_ERROR



All times are GMT +1. The time now is 21:03.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.