Maybe some people with good skills in SQL already know this, but for those not, I'll share a simple but helpful SQL query.
- Red: The item you want to find on the character's equipment in reversed hex code.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
- 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.


Reply With Quote


