[Release] Path of Exile Item Info Script - Affix Breakdown and More (Version 1.8.6)

Might be the font that's limiting it as well.
You could try changing the actual font within CreateFont().

Your probably using an older version? Which is why the font may not be working right. Mine is the latest and works fine with setting custom font sizes.

Your code (somewhere) should look similar to this
Spoiler
; Create font for later use
FixedFont := CreateFont()

; Creates a font for later use
CreateFont()
{
Global FontSize
Options :=
If (!(FontSize = ""))
{
Options = s%FontSize%
}
Gui Font, %Options%, Courier New
Gui Font, %Options%, Consolas
Gui Add, Text, HwndHidden,
SendMessage, 0x31,,,, ahk_id %Hidden%
return ErrorLevel
}
"The absence of evidence is not the evidence of absence."
Hi,

Just want to check whether I can localize the Item-Info-Script into Chinese for Taiwan version's PoE?
I have tried to PM Hazydoc but no response from him, and I'm not sure who can be talked to.
So please let me know if I can do it and release, however I'll note where it comes from.
Thanks.
@Tiān_zhī_dào
You might as well do it and just give credit. Don't know if Hazy is maintaining it.
---------

Good News Everyone!

IMO, I fixed a problem with base level of items not showing for unidentified items, jewelry, or anything less than rare items.

This means that it should show base level of items in most cases.
Some items have a base level of 1, in which case it might not show. There should be no item level requirement to equip it.

Here is an updated ItemList.txt file. (Includes Jewelry):
https://www.dropbox.com/s/53ulfntfm3n8onv/ItemList.txt?dl=0

In your main file POE-ItemInfo.ahk, Find this line:
Spoiler
If (ShowItemLevel == 1 and Not IsMap)

Replace the code with this:
Spoiler
If (ShowItemLevel == 1 and Not IsMap)
{
TT := TT . "`n"
TT := TT . ItemLevelWord . " " . StrPad(ItemLevel, 3, Side="left")
If (Not IsFlask)
{
;;fixed!
If(RarityLevel < 3)
{
BaseLevel := CheckBaseLevel(ItemName)
}
Else
{
BaseLevel := CheckBaseLevel(ItemTypeName)
}

;;BaseLevel := CheckBaseLevel(ItemTypeName) ;;original
If (BaseLevel)
{
TT := TT . "`n" . "Base Level: " . StrPad(BaseLevel, 3, Side="left")
}
}
}

Or Just download and replace it here:
https://www.dropbox.com/s/n4fwxzu2zipdaak/POE-ItemInfo.ahk?dl=0
Remember to fix your options.
"The absence of evidence is not the evidence of absence."
Last edited by Hixxie on Dec 2, 2014, 8:48:23 PM
I understand the S and P letters near affixes signify 'suffix' and 'prefix', but what does CP stand for?

Also, I noticed the script is showing old stats for Chin Sol.
First page

"
hazydoc wrote:

Affixes on a Rare



CS = Composite Suffix, CP = Composite Prefix, P = Prefix, S = Suffix



Yeah I haven't noticed the updated nerfs/buffs to items, even those quite a while a go like Sadima's Touch IIQ. I went in and fixed most of those for myself and added new uniques from 1.2.
Last edited by Asperior on Dec 4, 2014, 5:17:52 PM
Rarity: Rare
Dragon Gnarl
Quartz Sceptre
--------
One Handed Mace
Quality: +11% (augmented)
Physical Damage: 17-24 (augmented)
Critical Strike Chance: 6.80%
Attacks per Second: 1.20
--------
Requirements:
Level: 15
Str: 25
Int: 35
--------
Sockets: R
--------
Itemlevel: 19
--------
20% increased Elemental Damage
--------
15% increased Spell Damage
Adds 1-2 Physical Damage
7% increased Cast Speed
12% increased Critical Strike Chance for Spells
+18 to maximum Mana
+3 Life gained on Kill
If you guys read the previous page you would find I updated the unique list.

I'm going to try and fix a more daunting task of fixing magic(blue) items showing wrong tier of prefix/suffix later. Although no promises.
"The absence of evidence is not the evidence of absence."
Having an issue. When I try and run im getting this error message. http://gyazo.com/c2438a2172cc20dcbdcbacbc77c22a32

I have downloaded the most recent version.

It still opens AHK icon in tray. And it partially works ingame. (Tells me unique items are not supported) Doesn't show potential rolls within tiers for yellows ect.


Did I do something wrong? I can't seem to get anything but this error...
"
Radetwo wrote:


Did I do something wrong? I can't seem to get anything but this error...


Getting the same thing.

Report Forum Post

Report Account:

Report Type

Additional Info