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

Shout-Out

User Tag List

Page 12 of 14 FirstFirst ... 891011121314 LastLast
Results 166 to 180 of 203
  1. #166
    JerkJiggaler's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't seem to get the item codes to proc.Tried switching game to another language but it doesn't help.

    Get the rare quality from UNID'd item before ID'd
  2. #167
    JerkJiggaler's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahh figured it out. These damn american keyboards are backwards and tricky, got code to proc however.
    Last edited by JerkJiggaler; 07-17-2012 at 07:44 AM.

  3. #168
    Kagaamine's Avatar Private
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I made a jsfiddle of my UNID link -> ID link script (thanks to the original jsfiddle script maker for giving me a basis)

    Just paste your UNID link (from the AH screen) into the box, and copy and paste the new link to yourself. It will be a link to the ID'd version of the item.

    http://jsfiddle.net/SbhyY/38/embedded/result/

  4. #169
    Kagaamine's Avatar Private
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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)

  5. #170
    zues4's Avatar Member
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    someone posted this on the blizzard forums few days ago lol

  6. #171
    fortrod's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by murphy1 View Post
    try â ^ + a ;-)
    Don't working....


    i try that

    * = backspace key x 3, or delete key x 3 (i have try each)

    éé*[item] or é*[item) or [item]é*é[item] and [item]éé*[item]

    and i do this with this caractere

    á, i got ¡[item]

    ä, i got ¤[item]

    é, i got ©[item]

    ë, i got «[item]

    †, i got ?[item]

    æ, i got ¦[item]

    ㅇ, i got ?[item]

  7. #172
    roflcopter666's Avatar Member
    Reputation
    21
    Join Date
    Dec 2008
    Posts
    178
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The only times I have seen people get the © from é is when they were hitting backspace instead of the delete key. You say you're hitting delete, so I'm not sure what could be wrong.

    I guess you can try [item]ㅇㅇ[item] instead, but beyond that I have no idea.

  8. #173
    fortrod's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    erfff... i go try again..

  9. #174
    civic31g'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)
    Kagaamine- I cannot get your code thing to work in game. It just seems linking the exact same code I copy and pasted or says it is an invalid chat recipient when I leave all the channels. I am in the Ah when I paste it into my chat. Anything else I need to do?

  10. #175
    cloudstrife007's Avatar Active Member CoreCoins Purchaser
    Reputation
    27
    Join Date
    Jun 2012
    Posts
    243
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OP forgot to private his youtube video... FAIL

  11. #176
    roflcopter666's Avatar Member
    Reputation
    21
    Join Date
    Dec 2008
    Posts
    178
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by civic31g View Post
    Kagaamine- I cannot get your code thing to work in game. It just seems linking the exact same code I copy and pasted or says it is an invalid chat recipient when I leave all the channels. I am in the Ah when I paste it into my chat. Anything else I need to do?
    You're supposed to get an invalid chat recipient. You can still click the item.

    If the code links in-game instead of turning into an item, you might be missing the |HI part of |HItem.



    Originally Posted by majinpvegeta View Post
    OP forgot to private his youtube video... FAIL
    Wrong thread? I don't see any youtube video in the OP's post.

  12. #177
    Voppo's Avatar Banned
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm sick i think i figured the program out

  13. #178
    hatena's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by roflcopter666 View Post
    You're supposed to get an invalid chat recipient. You can still click the item.

    If the code links in-game instead of turning into an item, you might be missing the |HI part of |HItem.
    It turns into item but i cant click it. any help?

  14. #179
    mings's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now that the secret is out, why are people still looking at this?
    The UNID market is over. I am id-ing all my items now.

  15. #180
    evil2's Avatar Active Member
    Reputation
    27
    Join Date
    Feb 2009
    Posts
    172
    Thanks G/R
    31/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i cannot believe this game is from blizzard.. they f**ed up everything, absolut everything.

Page 12 of 14 FirstFirst ... 891011121314 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 03:00 AM. 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