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!

How to BAN IPs and accounts ?

Newbie Spellweaver
Joined
Jul 15, 2008
Messages
92
Reaction score
35
In last days we got some problems with some crazy players ... we tryed different methods to ban IPs and / or Accounts but without success ...

Can any1 tell us how we can ban? ... because i never saw any1 asking this around ...
 
The Cat in the Hat
Legend
Joined
Oct 26, 2005
Messages
4,482
Reaction score
684
I should have watched my mouth and not said/talked poop to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.
 
Upvote 0
Newbie Spellweaver
Joined
Jul 15, 2008
Messages
92
Reaction score
35
ok cyper ... i will wait your BUZZ on mess because i can't find it -.-" ...

i thought that there is a query for this ...
 
Upvote 0
The Cat in the Hat
Legend
Joined
Oct 26, 2005
Messages
4,482
Reaction score
684
I should have watched my mouth and not said/talked poop to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.
 
Upvote 0
Newbie Spellweaver
Joined
Jul 15, 2008
Messages
92
Reaction score
35
Ok . We found out how to ban accounts ... but how we can ban IPs? ...
 
Upvote 0
Newbie Spellweaver
Joined
Jan 26, 2008
Messages
46
Reaction score
0
For ban account

with account db select
on query analizer

update cabal_auth_table
set Authtype = 2
where id = 'Account'
 
Upvote 0
The Cat in the Hat
Legend
Joined
Oct 26, 2005
Messages
4,482
Reaction score
684
I should have watched my mouth and not said/talked poop to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.
 
Upvote 0
Newbie Spellweaver
Joined
Jul 15, 2008
Messages
92
Reaction score
35
Thanks for answers ... now another question >.<

How i can know the UserNum or account if i know the Character Name and CharIdx ?
 
Upvote 0
Joined
Jun 6, 2006
Messages
617
Reaction score
4
Thanks for answers ... now another question >.<

How i can know the UserNum or account if i know the Character Name and CharIdx ?

Query Analyzer :

determine character id number based on character name

use gamedb;
select characteridx, name from cabal_character_table where name = 'CHARACTER NAME'

determine account based on character id number

use account;
select usernum, id from cabal_auth_table where usernum = (CHARACTER ID NUMBER/8)

then ban the violator

use account;
update cabal_auth_table
set authtype = '2'
where usernum = (USER NUMBER HERE)
 
Upvote 0
Back
Top