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!

GM nation bug

Junior Spellweaver
Joined
Jul 27, 2011
Messages
173
Reaction score
29
personal hello I have a problem on my server when I add the nation in my character logs not even lock the game with level 1 character

what should I do to fix this error?
 
Newbie Spellweaver
Joined
Nov 24, 2014
Messages
15
Reaction score
0
Disble GM Ip check

Code:
USE [Account]
GO
/****** Object:  StoredProcedure [dbo].[cabal_sp_gm_ip_check]    Script Date: 17.02.2013 23:41:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[cabal_sp_gm_ip_check](@UserIP CHAR(16), @Registered BIT OUTPUT)
AS
BEGIN
--DECLARE @IP bigint
--set @IP = dbo.inet_addr(@UserIP);

--if exists( select fromIP from cabal_GM_ip_table with(nolock) where fromip <= @ip and toip >= @ip)
--BEGIN
    SET @Registered = 1;
--END
--ELSE
--BEGIN
--    SET @Registered = 0;
--END
END

Credit : TriEdge

I was looking for the same a couple of days ago.
 
Back
Top