[Release] Path of Exile Item Info Script - Affix Breakdown and More (Version 1.8.6)
" hopefully your exams worked :) ty for the awesome work so far!! (and the upcoming ;) ) greets! |
![]() |
What is wrong? Looks like I have a wrong font?
This started after I booted my computer, Windows 8.1 ![]() Zuletzt bearbeitet von Lowlife555#5737 um 05.08.2015, 04:31:03
|
![]() |
" Sort of (it's actually a remap), but you'll need to add it yourself. If you want to change to anything else other than F2, you'll need to know the control characters that Autohotkey uses, for this see http://ahkscript.org/docs/misc/Remap.htm for a detailed explanation. There's a section at the bottom of the script (POE-ItemInfo.ahk) for your own macros; under this, if you want to remap CTRL-C to F2, add the following lines:-
Spoiler
#IfWinActive Path of Exile
{ F2::^c } Zuletzt bearbeitet von Aurora101#7941 um 05.08.2015, 18:41:25
|
![]() |
Hi all, please correct me if I am wrong.
Firstly, I download ancient AHK. Secondly, I download the data files from: https://github.com/andreberg/PoE-Item-Info/issues/3 Thirdly, go to this post to fix the bug: https://www.pathofexile.com/forum/view-thread/790438/page/64#p10807110 Or, I just simply download this file. This file is up to date and all bug fixed? https://dl.dropboxusercontent.com/u/105519679/PoE-Item-Info-Maraketh-and-Pre-v2-Uniques-Update.7z Thanks in advance. -------------------------------------------------------------------------------------------------------- Edit: Finally I can run the script. But I encounter some problems. Hope someone can give me a hand, thanks. 1) Please refer to the 1st screenshot: ![]() Adds 20-40 Physical Damage 18-42 "2-68" T4 P ... 27% increased Attack Speed 26-27 "6-27" T1 S +10 Accuracy Rating 5-15 "5-400" T9 S I don't know the meaning of the second number "2-68", "6-27", "5-400" stand for? 2) Please refer to the 2nd screenshot: ![]() I found problem in Add XX-XX elemental damage, why there is n/a? Adds 10-15 Fire Damage n/a 1-72 T0 P Adds 5-136 Lightning Damage n/a 1-115 T0 P 3) Finally, I want to have a big screen to show the affix, how to make it? Really really thanks. Zuletzt bearbeitet von dukilupp#1735 um 06.08.2015, 11:59:13
|
![]() |
Any one could give me a hand? Thanks a lot.
|
![]() |
Nice script! Im using it regularly and I found an error : Most values for +% ele damage on Amulets and Rings are not displayed correctly at its Tier lvl! That also applies for phys damage and life on Rings and Amulets.
There are some more cases where the Max tier isnt showed properly but in any other case it's a great script! Here is an example :
Spoiler
IfInString, A_LoopField, increased Fire Damage { NumSuffixes += 1 ValueRange := LookupAffixData("data\IncrFireDamage.txt", ItemLevel, CurrValue, "", CurrTier) AppendAffixInfo(MakeAffixDetailLine(A_LoopField, "Suffix", ValueRange, CurrTier), A_Index) Continue } The script isnt checking the ItemSubType for Rings and Amulets. It should look more like this :
Spoiler
IfInString, A_LoopField, increased Fire Damage { If (ItemSubType == "Ring" or ItemSubType == "Amulet") { ValueRange := LookupAffixData("data\IncFireDamage_AmuletsAndRings.txt", ItemLevel, CurrValue, "", CurrTier) } Else { NumSuffixes += 1 ValueRange := LookupAffixData("data\IncrFireDamage.txt", ItemLevel, CurrValue, "", CurrTier) } AppendAffixInfo(MakeAffixDetailLine(A_LoopField, "Suffix", ValueRange, CurrTier), A_Index) Continue } If anyone else get bothered by that mistake, just edit the script (starting around ln. 2474), add another If case for checking the Item for its type and add a .txt into the data folder. Should fix it but havent tested it yet. Zuletzt bearbeitet von Fleshrocket#5492 um 06.08.2015, 21:53:17
|
![]() |
" Thanks, I will try it. |
![]() |
" Here are your answers : 1 : The numbers are the value of the max Tier, first digit is the lower range, second the higher range. 2 : The script isn't fetching the current items tier ranges correctly, the code has to be checked for the error and i don't have a solution for you 3 : Go to your Poe item info Folder. Find a File named "config.ini" and rightclick it. Select "open with ..." and choose your texteditor (e.g. Notepad) Now hit CTRL+H and search for CompactDoubleRanges=1 and replace it with CompactDoubleRanges=0. Next value you have to find is ValueRangeFieldWidth=8, change it to ValueRangeFieldWidth=16 (Im not sure if it was 8, changed it and the documentary on this config doesnt show the default value!!!) Same goes for MirrorLineFieldWidth=18, change it to MirrorLineFieldWidth=48 Now close your Poe item Info script and start it again to load the new values. Save the changes. This should fix the truncated effect on your screen while showing a long version of the Tier ranges. Zuletzt bearbeitet von Fleshrocket#5492 um 06.08.2015, 23:56:57
|
![]() |
" Thank you so much! |
![]() |
I saw the upgrade was still a bit out of date, so I took it on myself to go through poedb.tw/us and import the changes I noticed.
That said some of the text names can be confusing and there are definitely still some things missing that don't match up I also skipped all of the stun ones (not hybrid just the normal stun ones like StunRecovery_Armour, etc) since I doubt anyone will care about them. I may have to sweep over it again to see what I changed and double check it, but any changes I added in I did so by importing and formatting text from poedb.tw/us so they should be accurate. The whole thing would probably be easier if there were a program to scrape and reformat from something like poedb.tw/us or data mining itself, would probably be useful for keeping it up to date. https://drive.google.com/file/d/0B8SdQ28LEu0EcUlwZThNT1FXSW8/view?usp=sharing |
![]() |