Find out who is cheater

Results 1 to 10 of 10
  1. #1
    Novice Von Satan is offline
    MemberRank
    Mar 2009 Join Date
    1Posts

    Find out who is cheater

    Maybe some people with good skills in SQL already know this, but for those not, I'll share a simple but helpful SQL query.

    Code:
    select C.characteridx from cabal_equipment_table E with(nolock) inner join cabal_character_table C with(nolock) on E.characteridx = C.characteridx where master.sys.fn_varbintohexstr(E.data) like '%00003503%' and C.reputation < 320000
    - Red: The item you want to find on the character's equipment in reversed hex code.
    - Blue: The reputation points filter.

    This query searchs in the table cabal_equipment_table for a particular item code using the reputation's filter.
    For example, you can easily find those who are equipped with a bracelet or earring of honor grade 7 and his real honor grade is not enough for wearing that item.

    WARNING! by executing this query you can cause a very high cpu load.

    I hope this help and sorry for my bad english.


  2. #2
    Imperium Knight phiber is offline
    MemberRank
    Oct 2008 Join Date
    elitekingdoms.comLocation
    264Posts

    Re: Find out who is cheater

    its a nice trick, i like people who think smart solutions, or in this case smart ways to fight again cheaters.

    maibe, a triger for update, who make a insert on another table when some one have an item and this item have less honor than required, its an option.

    ;)

  3. #3
    Elite Member O_o oleg35 is offline
    MemberRank
    Jan 2007 Join Date
    nvm i'm RussianLocation
    403Posts

    Re: Find out who is cheater

    Server: Msg 208, Level 16, State 1, Line 1
    Invalid object name 'master.sys.fn_varbintohexstr'.

  4. #4
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: Find out who is cheater

    Run the query in the gamedb not the master db as master contains no cabal info.

  5. #5
    Elite Member O_o oleg35 is offline
    MemberRank
    Jan 2007 Join Date
    nvm i'm RussianLocation
    403Posts

    Re: Find out who is cheater

    Quote Originally Posted by chumpywumpy View Post
    Run the query in the gamedb not the master db as master contains no cabal info.
    On master database error
    Server: Msg 208, Level 16, State 1, Line 1
    Invalid object name 'cabal_equipment_table'.
    Server: Msg 208, Level 16, State 1, Line 1
    Invalid object name 'cabal_character_table'.
    On gamedb error
    Server: Msg 208, Level 16, State 1, Line 1
    Invalid object name 'master.sys.fn_varbintohexstr'.
    So i all posted right !

  6. #6
    Account Upgraded | Title Enabled! maxgo1 is offline
    MemberRank
    Aug 2008 Join Date
    EST , PaldiskiLocation
    311Posts

    Re: Find out who is cheater

    GAMEDB maybe not full

  7. #7
    The Dinosaur chumpywumpy is offline
    MemberRank
    Jun 2008 Join Date
    /f451/Location
    5,127Posts

    Re: Find out who is cheater

    Ah, i see.

    master.sys.fn_varbintohexstr

    That is not valid for sql 2000. Change to:

    master.dbo.fn_varbintohexstr

  8. #8
    Banned Yamachi is offline
    BannedRank
    Oct 2006 Join Date
    Jolly EnglandLocation
    3,517Posts

    Re: Find out who is cheater

    I was actually thinking of setting up a cron job to do something extremely similar to this. A better thing to do would be to also filter by level and online status. After the cron job has obtained a list of people using the bracelet/earring hack, it could then set their attack/mag.attack/defense to 1. Now, if someone's willing to decrypt packets, we could send a message to the server announcing the hackers publicly, then issue a kickout and block command if they refuse to stop. Just an idea :P

  9. #9
    Go go go! Cath22 is offline
    MemberRank
    Aug 2008 Join Date
    Cabal-ArenaLocation
    713Posts

    Re: Find out who is cheater

    Quote Originally Posted by Yamachi View Post
    I was actually thinking of setting up a cron job to do something extremely similar to this. A better thing to do would be to also filter by level and online status. After the cron job has obtained a list of people using the bracelet/earring hack, it could then set their attack/mag.attack/defense to 1. Now, if someone's willing to decrypt packets, we could send a message to the server announcing the hackers publicly, then issue a kickout and block command if they refuse to stop. Just an idea :P
    any updates on this mr. yamachi

  10. #10
    Banned Yamachi is offline
    BannedRank
    Oct 2006 Join Date
    Jolly EnglandLocation
    3,517Posts

    Re: Find out who is cheater

    Quote Originally Posted by Cath22 View Post
    any updates on this mr. yamachi
    Someone is currently helping me decrypt a few packets. I'm not sure when I'll have anything to release, as I'm quite busy with RL atm ( + I'm a lazy shit :P ).



Advertisement