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!

[Need Help] Zone Server Error

Newbie Spellweaver
Joined
Nov 28, 2019
Messages
7
Reaction score
0
I was try to repair my problem about Certain Point player always decrease when login with this query
USE [RF_WORLD_NOVUS]
GO
/** Object: Trigger [LastConnTime] Script Date: 05/01/2010 00:13:05 **/
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

CREATE TRIGGER [LastConnTime] ON [dbo].[tbl_base]
FOR UPDATE
AS
SET NOCOUNT ON;

IF UPDATE (LastConnTime)
BEGIN
update
[dbo].[tbl_base]
set LastConnTime = LastConnTime + 1200000000 where LastConnTime < 1200000000

END
But after that my zone server error and cant running with respond at pic.

Can someone help me how to reslove that problem.

Thanks
 

Attachments

You must be registered for see attachments list
Back
Top