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!

Bug Vote Problem and Trigger Made ZoneServer Crash

Experienced Elementalist
Joined
Aug 24, 2012
Messages
219
Reaction score
41
hello RZ long time no see

i just have problem in my serv

a few people using vote bug with level 1

i try "db trigger" solution to change level requir

but it just made my ZoneServer Crash

anyone have solution ?
 
Joined
Apr 21, 2012
Messages
765
Reaction score
83
hello RZ long time no see

i just have problem in my serv

a few people using vote bug with level 1

i try "db trigger" solution to change level requir

but it just made my ZoneServer Crash

anyone have solution ?



try this Query from Agony

Code:
USE [RF_WORLD]
GO

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

Create TRIGGER [dbo].[votelimit] 
   ON  [dbo].[tbl_general]
   AFTER UPDATE
AS

BEGIN
UPDATE dbo.tbl_general SET tmRaceBossVote = GETDATE() 
WHERE Serial 
IN 
(SELECT T2.Serial FROM dbo.tbl_base AS T1, dbo.tbl_general AS T2
WHERE T1.Serial = T2.Serial 
	AND T1.Lv < '51' 
	AND T2.tmRaceBossVote < CURRENT_TIMESTAMP - 1)


END
GO
 
Upvote 0
Experienced Elementalist
Joined
Aug 24, 2012
Messages
219
Reaction score
41
try this Query from Agony

Code:
USE [RF_WORLD]
GO

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

Create TRIGGER [dbo].[votelimit] 
   ON  [dbo].[tbl_general]
   AFTER UPDATE
AS

BEGIN
UPDATE dbo.tbl_general SET tmRaceBossVote = GETDATE() 
WHERE Serial 
IN 
(SELECT T2.Serial FROM dbo.tbl_base AS T1, dbo.tbl_general AS T2
WHERE T1.Serial = T2.Serial 
	AND T1.Lv < '51' 
	AND T2.tmRaceBossVote < CURRENT_TIMESTAMP - 1)


END
GO

im using this query

and then my zone crash after 2 minutes
 
Upvote 0
Junior Spellweaver
Joined
Feb 22, 2012
Messages
160
Reaction score
4
i use triger Vote Archon server crash if a player Accept New Guild Member @Game
 
Upvote 0
Back
Top