How to BAN IPs and accounts ?

Results 1 to 10 of 10
  1. #1
    Member mmoobb is offline
    MemberRank
    Jul 2008 Join Date
    93Posts

    How to BAN IPs and accounts ?

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


  2. #2
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: How to BAN IPs and accounts ?

    I should have watched my mouth and not said/talked shit to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.

  3. #3
    Member mmoobb is offline
    MemberRank
    Jul 2008 Join Date
    93Posts

    Re: How to BAN IPs and accounts ?

    ok cyper ... i will wait your BUZZ on mess because i can't find it -.-" ...

    i thought that there is a query for this ...

  4. #4
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: How to BAN IPs and accounts ?

    I should have watched my mouth and not said/talked shit to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.

  5. #5
    Member mmoobb is offline
    MemberRank
    Jul 2008 Join Date
    93Posts

    Re: How to BAN IPs and accounts ?

    Ok . We found out how to ban accounts ... but how we can ban IPs? ...

  6. #6
    Member Sk8TeR is offline
    MemberRank
    Jan 2008 Join Date
    62Posts

    Re: How to BAN IPs and accounts ?

    For ban account

    with account db select
    on query analizer

    update cabal_auth_table
    set Authtype = 2
    where id = 'Account'

  7. #7
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: How to BAN IPs and accounts ?

    I should have watched my mouth and not said/talked shit to DeadlyData telling him things like your are not welcome here because then I become the one who is truly not welcome here.

  8. #8
    Member mmoobb is offline
    MemberRank
    Jul 2008 Join Date
    93Posts

    Re: How to BAN IPs and accounts ?

    Thanks for answers ... now another question >.<

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

  9. #9
    The Elder | Voinic mirceagab is offline
    MemberRank
    Aug 2008 Join Date
    Cluj-Napoca, RoLocation
    221Posts

    Re: How to BAN IPs and accounts ?

    I have the same problem

  10. #10
    Akaruz - The Legend [hidden] is offline
    MemberRank
    Jun 2006 Join Date
    ClassifiedLocation
    1,120Posts

    Re: How to BAN IPs and accounts ?

    Quote Originally Posted by mmoobb View Post
    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)



Advertisement