PoE-ItemInfo Script (Version 2.3+)

"
Frogfriend wrote:
"
aRTy42 wrote:
I can add an option to disable it though.


That would be super appreciated!! Sometimes I play builds that really cannot die no matter what bonus damage is added, but I still like to know if there's Temporal Chains, Hexproof, or a Reflect I can't handle.


The option is added in the TradeMacro now. My next ItemInfo release will also have it, but I'm waiting with that one for a few more days so that I can include more of the new items in the data files.
Last edited by aRTy42#1524 on Sep 1, 2018, 6:34:33 PM
How do I change the shortcut key?
Ctrl+C interfere with other scripts.
"
Rakio wrote:
How do I change the shortcut key?
Ctrl+C interfere with other scripts.


You can't, at the moment. The script reacts to the clipboard change from the game, which comes from Ctrl+C. You can use the "Pause" key to disable the script though (and that key you can also rebind).
3.5.00
================================
from aRTy, Eruyome

* Updated Uniques, Divination Cards, Maps and Gem Quality info
  * Boss information for maps are not updated yet
* Included changes from and for the TradeMacro
  * QoL features for the color blind:
    * Ctrl + c now also has the items socket string added to the tooltip, example "R-G-B B-B-G".
    * Ctrl + c on a Gem now has added its color to the tooltip.
  * Lutbot logout macro integration:
    * LutTools (Lutbot) is a collection of logout, whisper reply and basic price check features.
    * TradeMacro supports the newly released Lite-Version which only has the TCP logout features included.
    * TradeMacro only helps in managing this script by giving you the option to run it on script start and check for hotkey conflicts.
    * The Lutbot macro itself stays as a seperate installation with seperated development and maintaining.
    * This integration is accessible from a new tab "Lutbot" in the settings menu.
  * Hideout decoration stash search:
    * The already existing search/highlighting feature (Ctrl + f) for your stash search can now also help filtering your hideout stash.
    * Pressing the hotkey on a decoration item in the decoration purchase window inputs its name into the hideout stash filter field.
    * The games Ctrl + f hotkey would focus the purchase windows filter field instead, pressing it when not hovering over a decoration still does this.
    * The hotkey added to the "AdditionalMacros" tab needs the coordinates of your hideout stash filter field to click on it, you may have to edit those settings.
    * This feature can be disabled independently from the stash highlighting feature.
    * This allows quickly looking up how many of a specific decoration from the vendor you already own.
  * Hotkey Assignment:
    * Previously TradeMacro didn't detect any hotkey conflicts.
    * You will now be warned of any conflicts and asked to resolve the issues.
Last edited by aRTy42#1524 on Jan 8, 2019, 8:30:59 PM
"
aRTy42 wrote:
"
mqplideste wrote:
Stupid question but is it possible to either customize the script or add code to have a visual weight/color code for tier ranks on items.


Not with the current system, but Eruyome developed a new method to display the tooltip, which will support specific colour/font adjustments like that. It still has to be tested more and potentially improved in performance though, so I don't have a date when it will be ready.



Playing POE this league again and still wish that was a thing. Any news on this potential new version.


Is there a quick way to do it myself, like add a line in the code to color in red any T1 text so it stands out?
Something around lines 1100 and on in the POE-ItemInfo.ahk where it is calculating the Tier from the value range.
Like if value from the ModDataArray lookup is the highest then colorcode text in red.
Last edited by mqplideste#3572 on Jan 16, 2019, 5:14:06 PM
"
mqplideste wrote:
"
aRTy42 wrote:
"
mqplideste wrote:
Stupid question but is it possible to either customize the script or add code to have a visual weight/color code for tier ranks on items.


Not with the current system, but Eruyome developed a new method to display the tooltip, which will support specific colour/font adjustments like that. It still has to be tested more and potentially improved in performance though, so I don't have a date when it will be ready.



Playing POE this league again and still wish that was a thing. Any news on this potential new version.


Is there a quick way to do it myself, like add a line in the code to color in red any T1 text so it stands out?
Something around lines 1100 and on in the POE-ItemInfo.ahk where it is calculating the Tier from the value range.
Like if value from the ModDataArray lookup is the highest then colorcode text in red.


No concrete plans. I can't offer you any code because specific colouring isn't possible at the moment.

You could put in some extra characters after T1 mods, so that the line ends in "T1 P !!!" or something.

In POE-ItemInfo.ahk starting with line 1794 change:

If (IsNum(Tier) or Tier = "?")
{
   ; Just one mod and a single numeric tier
   TierAndType := "T" Tier " " AffixTypeShort(AffixType)
}

into

If (IsNum(Tier) or Tier = "?")
{
   ; Just one mod and a single numeric tier
   TierAndType := "T" Tier " " AffixTypeShort(AffixType)
   If (Tier == 1)
   {
      TierAndType .= " !!!"
   }
}

and adjust the " !!!" part to whatever you want.
Thanks, I will try that.
no script is running in POE (it used to be working)

not sure what happened but I dont see any tootlip anymore...

in ItemInfo settings, when i click preview, i see the tooltip in game
but when i press Crtl+C nothing happens...

I play in DX 12 beta / Windowed Full Screen Mode
I tried old scripts, Trademacro, ItemInfo all do nothing...
I tried to run exe or ahk, tried 1.x and 2.x AHK

can anyone help?
Last edited by HainKurt#5210 on Jan 19, 2023, 12:31:17 AM

Report Forum Post

Report Account:

Report Type

Additional Info