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!

Your Not Authorize to be Candidate for Archon

Junior Spellweaver
Joined
Mar 27, 2012
Messages
172
Reaction score
0
How can i fix this? sir and mam
can i change the requirement to be authorize to candidate to be a Archon?

thank you
More Power
 
Junior Spellweaver
Joined
Apr 5, 2009
Messages
101
Reaction score
3
i think is your requeriment to get archon is high...
Try run this query...
PHP:
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 < '65' 
AND T2.tmRaceBossVote < CURRENT_TIMESTAMP - 1)


END
GO

if not work use zone server by mrians21 (He zoneserver can configure requeriments to be archon in INI files)
http://forum.ragezone.com/f479/zoneserver-2232-config-989730/
 
Upvote 0
Back
Top