• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

usp_logout fix

Newbie Spellweaver
Joined
Aug 28, 2013
Messages
18
Reaction score
1
as i can say.. i used the phoenix client ... i tried everything i can i go to the lobby then i logout i got the USP Error but here's the mini - tip
Code:
2013/09/11 14:01:21 - usp_logout : 74, usp_logout servernum(int)(18) usernum(int)(3375) uid(varchar)(testerlant) nickName(varchar)(원피스는내꺼) exp(int)(197061) channelNum(int)(-1)
look the
Code:
servernum(int)(18) usernum(int)(3375) uid(varchar)(testerlant) nickName(varchar)(원피스는내꺼) exp(int)(197061) channelNum(int)(-1)
that's what you need to change
go to the SQL > Your GameServer Database > Programmibility > Stored Procedures > dbo.usp_logout > Right Click > Modify
Then set the code at the top from line from the ALTER PROCEDURE [dbo].[usp_logout]
to the DECLARE @ChannelNum INT;
tobe
Code:
ALTER PROCEDURE [dbo].[usp_logout]
    @servernum INT,
    @usernum INT,
    @uid varchar,
    @nickName varchar,
    @exp int,
    @channelNum int
AS
SET NOCOUNT ON
EXEC dbo.usp_LogTranCount @@procid


UPDATE UserInfoLogin
SET        fdServerNum = 0, fdLastLogoutTime = GETDATE() WHERE fdUserNum = @usernum;


DECLARE @userid VARCHAR(50);
DECLARE @usernickname VARCHAR(50);
DECLARE @gamemoney INT;
then execute the script..
then .. i gtg i will be right back a few more hours from school to upload a a video.
 
Last edited:
Joined
Feb 28, 2012
Messages
738
Reaction score
65
as i can say.. i used the phoenix client ... i tried everything i can i go to the lobby then i logout i got the USP Error but here's the mini - tip
Code:
2013/09/11 14:01:21 - usp_logout : 74, usp_logout servernum(int)(18) usernum(int)(3375) uid(varchar)(testerlant) nickName(varchar)(원피스는내꺼) exp(int)(197061) channelNum(int)(-1)
look the
Code:
servernum(int)(18) usernum(int)(3375) uid(varchar)(testerlant) nickName(varchar)(원피스는내꺼) exp(int)(197061) channelNum(int)(-1)
that's what you need to change
go to the SQL > Your GameServer Database > Programmibility > Stored Procedures > dbo.usp_logout > Right Click > Modify
Then set the code at the top from line from the ALTER PROCEDURE [dbo].[usp_logout]
to the DECLARE @ChannelNum INT;
tobe
Code:
ALTER PROCEDURE [dbo].[usp_logout]	@servernum INT,
	@usernum INT,
	@uid varchar,
	@nickName varchar,
	@exp int,
	@channelNum int
AS
SET NOCOUNT ON
EXEC dbo.usp_LogTranCount @@procid


UPDATE UserInfoLogin
SET		fdServerNum = 0, fdLastLogoutTime = GETDATE() WHERE fdUserNum = @usernum;


DECLARE @userid VARCHAR(50);
DECLARE @usernickname VARCHAR(50);
DECLARE @gamemoney INT;
then execute the script..
then .. i gtg i will be right back a few more hours from school to upload a a video.
I never get any of this, its probably because you're using phoenixes gay butt client.
 
Newbie Spellweaver
Joined
Jul 13, 2010
Messages
48
Reaction score
4
its not onLy on phoenix's cLient, its on other cLients asweLL, Like the chinese version im using.
thanx for the tip Nathan
 
Newbie Spellweaver
Joined
Aug 28, 2013
Messages
18
Reaction score
1
it was hard for me to do that mcaso...
i tried to debug the AgentServer and look the logs for the _error and the log
then... i just smile and share to everyone after i solve it...
 
Back
Top