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 ...
 
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