Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Who can share their _AddLoginHistory

Newbie Spellweaver
Joined
Dec 6, 2011
Messages
53
Reaction score
0
Hello,

Im missing the stored procedure from _AddLoginHistory can anyone share it with me?
 
Junior Spellweaver
Joined
Apr 4, 2013
Messages
169
Reaction score
57
this ?
USE [SR_ACCOUNTDB]GO
/****** Object: StoredProcedure [dbo].[_AddLoginHistory] Script Date: 24.07.2017 12:16:44 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
CREATE PROCEDURE [dbo].[_AddLoginHistory]
@nShardID INT,
@nUserCount INT,
@dLogDate DATETIME
AS
BEGIN
INSERT INTO _ShardCurrentUser (nShardID, nUserCount, dLogDate) VALUES (@nShardID, @nUserCount, @dLogDate)
END
GO
 
Newbie Spellweaver
Joined
Dec 6, 2011
Messages
53
Reaction score
0
Request to remove.

Thx Paradise
 
Last edited:
Back
Top