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!

Gmtool login block...

Newbie Spellweaver
Joined
Feb 19, 2006
Messages
43
Reaction score
0
I have serious problem with Gmtool on my server. I wanna block it that noone could login into game using it.

I cleared gmtable and accessablegmtoolipaddress in sql, both tables are empty in every dbase.

I tried to use different dbdemons, and different ini's for that, even with beta=0, i can still login into game with gmtool.

Maybe its fault of configs, or other thing i may miss... I paste dbdemon ini:

Code:
[nation_set]
nation_name=USA
BETA_SERVER=1
[server_info]
path=D:\Ser\DrServer\DBdemon
own_server_ip_for_server = 84.40.....
own_server_port_for_server = 4001
own_server_ip_for_user = 84.40.....
own_server_port_for_user = 9002
primary_proxy_server_ip = 84.40.....
primary_proxy_server_port = 3001
secondary_proxy_server_ip = 84.40.....
secondary_proxy_server_port = 3002

I hope anyone could help me with that...
 
Experienced Elementalist
Joined
Apr 28, 2005
Messages
224
Reaction score
7
Run this query on the ChrlogDB its a better control for the GM access tool. First field put IP second field use 1 to enable.



if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AccessAbleGMTOOL]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[AccessAbleGMTOOL]
GO

CREATE TABLE [dbo].[AccessAbleGMTOOL] (
[ip] [char] (40) COLLATE Korean_Wansung_CI_AS NOT NULL ,
[id] [char] (10) COLLATE Korean_Wansung_CI_AS NOT NULL
) ON [PRIMARY]
GO

That should work...
 
Last edited:
Newbie Spellweaver
Joined
Feb 28, 2006
Messages
25
Reaction score
0
says completly succesfully but still i get disconnected from gmtool
 
Newbie Spellweaver
Joined
Feb 19, 2006
Messages
43
Reaction score
0
My team solved this problem already on client/server side (not SQL side, but this also matters ofcourse). I'll upload it and post a link to DBDemon & dragonraja client that works fine and not allow unregistered gm clients to log in. BBL:)

And here it is :



hope this helps.
 
Back
Top