Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya
You last visited: Today at 10:43

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

Advertisement



Account does not exist (Leave=0)

Discussion on Account does not exist (Leave=0) within the Shaiya forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2012
Posts: 267
Received Thanks: 50
Account does not exist (Leave=0)

Hello dear Epvpers.

I got a very wired Problem.


None of my users can login to his Accound.

All seems Okay, but it isnt realy. (Account does not Exist)

/nptotectoff & /vchkoff is used.

here is a Screen of my Table that shows there is all ok.



Hope anyone can help me with this Problem.
cypherxxl is offline  
Old 09/23/2012, 02:06   #2
 
STIV123's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 216
Received Thanks: 127
Hello,

Your problem is probably that you don't have Database "GM_Stuff".

I had this problem before, and adding "GM_Stuff" Database, It fixed it.

Just a suggestion.

(Btw, as I know, UserType=N, not 1.)
STIV123 is offline  
Thanks
1 User
Old 09/23/2012, 02:19   #3
 
elite*gold: 0
Join Date: Feb 2012
Posts: 267
Received Thanks: 50
GM_Stuff ?

I never hear about that Oo
cypherxxl is offline  
Old 09/23/2012, 02:28   #4
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
GM_Stuff is just when you are using the release from Dash, else, it is not needed, as it is a completely custom database that was added to get some aspects of the adminCP to work properly
JohnHeatz is offline  
Thanks
1 User
Old 09/23/2012, 02:32   #5
 
elite*gold: 0
Join Date: Feb 2012
Posts: 267
Received Thanks: 50
I dont got this database.

Before i reinstalled my server all works great... hmm
cypherxxl is offline  
Thanks
1 User
Old 09/23/2012, 06:41   #6
 
elite*gold: 23
Join Date: Nov 2011
Posts: 103
Received Thanks: 96
Well i have the same prob , the first account i created was successful and next account , account does'nt exsist -.-
-FeaRs- is offline  
Thanks
1 User
Old 09/23/2012, 09:12   #7
 
elite*gold: 5
Join Date: Jun 2012
Posts: 176
Received Thanks: 214
Kalle Please Try this Query is my login Fix.

PHP Code:
USE [PS_UserData]
GO
/****** Objekt:  StoredProcedure [dbo].[usp_Try_GameLogin_Taiwan]    Skriptdatum: 04/23/2012 17:36:59 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO

/****** Object:  Stored Procedure dbo.usp_Try_GameLogin_Taiwan    Script Date: 2008-6-7 18:34:05 ******/

/*==================================================
@date    2007-12-04
@brief    Login Proc( Taiwan )
==================================================*/

ALTER  Proc [dbo].[usp_Try_GameLogin_Taiwan]

@
UserID     varchar(18),
@
InPassword    varchar(32),

@
SessionID     bigint,
@
UserIP     varchar(15),

-- ???? ??? ??, ???? ?? ??

@
UserUID     int 0,
@
LoginType     smallint 1
@
LoginTime     datetime NULL

AS

SET NOCOUNT ON

DECLARE 

@
Leave         tinyint,
@
Status         smallint,

@
CompanyIP     varchar(15),
@
TempIP     varchar(15),
@
Check        int

SET 
@Status =         -1
SET 
@LoginTime =     GETDATE()

--------------------------------------------------
SET @CompanyIP =     '61.107.81'
SET @UserIP =        LTRIMRTRIM(@UserIP) )
--------------------------------------------------
SET @Check 0
--------------------------------------------------

SELECT @UserUID=UserUID, @Status=Status, @Leave=Leave FROM Users_Master WHERE UserID = @UserID

-- NotExist User OR Leave User
IF( @UserUID OR @Leave )
BEGIN
    SET 
@Status = -3
END
ELSE
BEGIN
    
-- Check Password
    EXEC dbo
.sp_LoginSuccessCheck @UserID, @InPassword, @Check output
    
IF ( @@ERROR )
    
BEGIN
        
IF( @Check <> )
        
BEGIN
            SET 
@Status = -1
        END
    END
    
ELSE
    
BEGIN
        SET 
@Status = -1
    END

    
/* Old
    SET @InEnPassword = master.dbo.fn_md5(@InPassword)
    IF ( @InEnPassword <> @EnPassword )
    BEGIN
        SET @Status = -1
    END
    */
END

-- BlockUser Check
IF( (@Status >= 2) AND (@Status <= 6) )
BEGIN
    
-- Get Block Limit Date AND Replace date text
    
DECLARE @BlockEndDate datetime
    SELECT 
@BlockEndDate BlockEndDate FROM Users_Block WHERE UserUID = @UserUID
    
IF ( @@ROWCOUNT <> )
    
BEGIN
        
-- Block Release
        
IF ( @BlockEndDate <= @LoginTime )
        
BEGIN
            SET 
@Status 0
            UPDATE Users_Master SET Status 
= @Status WHERE UserUID = @UserUID
        END
    END
END

-- Admin IP Check(2006-02-21)
/*
IF( @Status = 16 OR @Status = 32 OR @Status = 48 OR @Status = 64 OR @Status = 80 )
BEGIN
    SET @TempIP = LEFT(@UserIP, 9)
    IF( @TempIP <> @CompanyIP )
    BEGIN
        SET @Status = -999
    END
END
*/

-- Select 
SELECT 
@Status AS Status, @UserUID AS UserUID

-- Log Insert
IF( @Status OR @Status 16 OR @Status 32 OR @Status 48 OR @Status 64 OR @Status 80 )
BEGIN
    EXEC usp_Insert_LoginLog_E 
@SessionID=@SessionID, @UserUID=@UserUID, @UserIP=@UserIP, @LogType=0, @LogTime=@LoginTime, @LoginType=@LoginType
END
SET NOCOUNT OFF 
..Zeus.. is offline  
Thanks
5 Users
Old 09/23/2012, 17:16   #8
 
elite*gold: 0
Join Date: Feb 2012
Posts: 267
Received Thanks: 50
what means this?

Quote:
--------------------------------------------------
SET @CompanyIP = '61.107.81'
SET @UserIP = LTRIM( RTRIM(@UserIP) )
--------------------------------------------------
hm this query dont work for me.
cypherxxl is offline  
Old 09/23/2012, 17:49   #9
 
elite*gold: 5
Join Date: Jun 2012
Posts: 176
Received Thanks: 214
Try to reinstall the server or use a clean database
..Zeus.. is offline  
Thanks
2 Users
Old 09/25/2012, 06:09   #10
 
elite*gold: 0
Join Date: Feb 2012
Posts: 267
Received Thanks: 50
oh nvm i got it allready.

Thank you.
cypherxxl is offline  
Reply


Similar Threads Similar Threads
account doesn't exist please help!
12/03/2013 - Shaiya PServer Development - 2 Replies
Hello Friends I create a new account again gives this error. I looked but could not find a result previously opened Issues Forum Please tell me what to do! http://d1207.hizliresim.com/z/t/b1sdc.jpg
the account does not exist
04/19/2012 - Shaiya - 2 Replies
le compte n'existe pas shaiya et pour tous les joueur sa fait le meme chose the account does not exist Shaiya and for all his players made ​​the same thing :confused: http://www.elitepvpers.com/forum/attachment.php?a ttachmentid=127806&stc=1&d=1334851327
[HELP] Account does not exist upon first click then does on second
12/28/2011 - Shaiya Private Server - 3 Replies
I have tried searching the forums for this issue but all I find is problems with starting the server, I have mine all set up and "semi" public but when I or anyone else logs in we get a message saying account does not exist but if you click ok and re-enter your password it logs in, does anyone know what the problem is?
Why i take this account does not exist?
11/05/2011 - Shaiya - 5 Replies
db on shaiya server, game public ip= whatismyip.com and public ip:whatismyip.com ,so all whatismyip.com in db i must change to my computers ip or 127.0.0.1??? Help me HElpmeee
Metin2SG acc account does not exist
01/27/2011 - Metin2 - 13 Replies
hi leute habe ja schon 1 acs mit dem ich ja für 1 woche farmen war wegen den kostenlosen itemshop dingen da dann woltle ich noch 1 acc machen alles hat funktioniert doch als ich mich einloggen wollte account does not exist



All times are GMT +2. The time now is 10:43.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.