Get the rare quality from UNID'd item before ID'd menu

User Tag List

Page 13 of 14 FirstFirst ... 91011121314 LastLast
Results 181 to 195 of 203
  1. #181
    projex's Avatar Master Sergeant
    Reputation
    5
    Join Date
    Jun 2012
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tested works. Hopefully they'll patch it.

    Get the rare quality from UNID'd item before ID'd
  2. #182
    fakedude's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  3. #183
    blizzsource's Avatar Member
    Reputation
    8
    Join Date
    Jan 2007
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fakedude View Post
    Its probably trojan'd the one from this site is safe

  4. #184
    fodonicos's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can i know the DPS from weapons ?

  5. #185
    Vorvor's Avatar Banned
    Reputation
    15
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice, thanks for sharing

  6. #186
    summy00's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kagaamine View Post
    I was asked for some clarification on my code so I thought I'd just post a short explanation on what it does below. There might be some mistakes, however combined with the source it should be understandable. It should help anyone trying to make tools to unid stuff.

    Below is an UNID item link

    Code:
    |HItem:2,1565456761:-146123031:1273837477,-2012337763,1951515674,-334812892:-1:0:130756:9:8:8:523:523:0:0:6:0:-648496672:|h[가시 투구]|h
    There are 18 fields separated by colons.

    The difference between the ID version of this link and the UNID version (above) is field 3(0-indexed) has a reversed comma separated list field 9 has a different flag, and the last numeric field has a different hash. To transform an UNID link to an ID link you do the following:

    Take the affix list and reverse it
    Code:
    |HItem:2,1565456761:-146123031:1273837477,-2012337763,1951515674,-334812892:-1:0:130756:9:8:8:523:523:0:0:6:0:-648496672:|h[가시 투구]|h
    becomes
    |HItem:2,1565456761:-146123031:-334812892,1951515674,-2012337763,1273837477:-1:0:130756:9:8:8:523:523:0:0:6:0:-648496672:|h[가시 투구]|h

    set the least significant bit of field 9
    Code:
    |HItem:2,1565456761:-146123031:]-334812892,1951515674,-2012337763,1273837477:-1:0:130756:9:8:8:523:523:0:0:6:0:-648496672:|h[가시 투구]|h
    becomes
    |HItem:2,1565456761:-146123031:]-334812892,1951515674,-2012337763,1273837477:-1:0:130756:9:8:9:523:523:0:0:6:0:-648496672:|h[가시 투구]|h
    and the slightly tricky part of it, you have to recalculate the hash of the new string.
    The input to the hash function is simply all the numerics in the item link before the hash, so you take the hash of
    Code:
    2,1565456761:-146123031:-334812892,1951515674,-2012337763,1273837477:-1:0:130756:9:8:9:523:523:0:0:6:0
    which is 1941137377 and you insert it in place of the old hash

    so
    Code:
    |HItem:2,1565456761:-146123031:]-334812892,1951515674,-2012337763,1273837477:-1:0:130756:9:8:9:523:523:0:0:6:0:-648496672:|h[가시 투구]|h
    becomes
    |HItem:2,1565456761:-146123031:]-334812892,1951515674,-2012337763,1273837477:-1:0:130756:9:8:9:523:523:0:0:6:0:1941137377:|h[가시 투구]|h

    The above is represented by the Python code:
    Code:
    def IDLink(s):
    parts = s.split(":")
    affixes = parts[3].split(',')
    affixes.reverse()
    parts[3] = ','.join(affixes)
    parts[9] = str(int(parts[9]) | 0x1)
    hash_input = ':'.join(parts[1:-2]) + ':'
    link_hash = c_int32(hashString(hash_input)).value
    parts[-2] = str(link_hash)
    id = ':'.join(parts)
    return id 
    
    parts[9] = str(int(parts[9]) | 0x1)
    hash_input = ':'.join(parts[1:-2]) + ':'
    link_hash = c_int32(hashString(hash_input)).value
    parts[-2] = str(link_hash)
    It seems that the final hash value determines the actual attributes value of each affix, can we decrypt it?

  7. #187
    summy00's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I find if one item has fixed 6 affix(vit, dex, str, int, ias, crit hit chance for example), the order of this 6 attributes code vary the exact value of attributes because of hash function, and each attribute has only 6 fixed value of this attributes group(in 6 different position).

    But I can't decrypt the hash value right now...any further suggestion?
    Last edited by summy00; 07-26-2012 at 07:14 PM.

  8. #188
    sendrock's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what's the purpose ? You can show unid item stats, but after that, what did you do ? You can change the stats ? How can you sell unid item, i don't understand

  9. #189
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,563
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    people were selling bulks of unid rares, now with this people can use this to check if the rares are good or not and set them aside and put all the bad unids in the bulk to sell

  10. #190
    Anihilis's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    FYI you can you any 2-bit chr such as Æ alt=9874

    i first use Affix List - Pastebin.com using find to match the numbers to the attributes

    then use Affixes - Diablo 3 Lexicon for the attributes

    if someone already said this sorry if not have fun. you can very closely guess number of properties and all attributes

  11. #191
    PiLoKo's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by krims0nknite View Post
    As an UNIDED item buyer, roughly 20M per day, this makes me sad

    Will no longer be buying...


    Good find though!


    PS: I've crafted a 6 property item with 6 properties + 3 sockets.
    It had Str/Int/Vit/Resistance/Armor/Gold Pickup + 3 sockets
    Some affixes have int/vit and is considered a single affix, your item still has 6 affixes even if it seems to have 7

  12. #192
    Wavom's Avatar Banned
    Reputation
    11
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice, thanks for sharing

  13. #193
    nergoza's Avatar Member
    Reputation
    7
    Join Date
    Aug 2012
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I still don't get it....what to look for in the UNID or ID?
    what's the benefit of this?

    Thanks

  14. #194
    Undertakerr666's Avatar Member
    Reputation
    1
    Join Date
    May 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nergoza View Post
    I still don't get it....what to look for in the UNID or ID?
    what's the benefit of this?

    Thanks
    It was used to see behind the UNID "mask" and if that item is bad sell it unidentified, but right now don't know if anyone is still buying them.

  15. #195
    Varox's Avatar Active Member
    Reputation
    18
    Join Date
    Sep 2010
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this still possible?

Page 13 of 14 FirstFirst ... 91011121314 LastLast

Similar Threads

  1. [Selling] Last Chance for UNMERGED Account - Get the Rare Stuffs on Your Bnet/Other Characters
    By Dorelk81 in forum WoW-EU Account Buy Sell Trade
    Replies: 3
    Last Post: 11-15-2014, 11:58 PM
  2. [Selling] Last Chance for UNMERGED Account - Get the Rare Stuffs on Your Bnet/ Other Characters
    By Dorelk81 in forum WoW-US Account Buy Sell Trade
    Replies: 2
    Last Post: 11-14-2014, 11:06 AM
  3. [Guide] Patch 5.2 - How to get the new Mount from Raremobs
    By mrnice in forum World of Warcraft Guides
    Replies: 9
    Last Post: 05-17-2013, 04:24 PM
  4. Get the WHEE! buff from Darkmoon Carousel without spending ticket
    By royane1990 in forum World of Warcraft Exploits
    Replies: 4
    Last Post: 12-19-2012, 03:35 AM
  5. [How-To] HOW TO GET THE GOBLIN TRIKE IN 4.0.3a BEFORE CATA
    By xicoia in forum World of Warcraft Guides
    Replies: 13
    Last Post: 12-02-2010, 06:39 AM
All times are GMT -5. The time now is 08:38 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search