PoE Item Info Script (Version 2.11)

Well thank you, indeed Windowed mode was the solution (I didn't read that anywhere... my bad).
thanks a lot man,,, keep it coming
IGN ; DENTAGRAM
thanks to http://poe.xyz.is/
https://cldly.com/pathofexile/procument/acquisition/poexyz
Found a tier mismatch ('tier 0') with minroll % increased crit chance for spells (of Menace):
Spoiler

Should be tier 6/6 (or 5/5 with ilvl restrictions).

Spoiler
Rarity: Rare
Eagle Spell
Imbued Wand
--------
Wand
Physical Damage: 20-38
Elemental Damage: 10-22 (augmented)
Critical Strike Chance: 8.00%
Attacks per Second: 1.50
--------
Requirements:
Level: 59
Int: 188
--------
Sockets: B-B
--------
Item Level: 67
--------
17% increased Spell Damage
--------
+1 to Level of Socketed Lightning Gems
10% increased Cold Damage
Adds 10-22 Cold Damage
10% increased Critical Strike Chance for Spells
15% increased Global Critical Strike Multiplier

Release: https://github.com/Bahnzo/POE-ItemInfo/releases/tag/2.0.7


2.0.7
=================================
Fixed issue with CritStrikeChance for spells
reported by grinvader
IGN: Bahnzo <--- that should find me.
PoE Item Info Script: https://www.pathofexile.com/forum/view-thread/1463814
I just want to give a huge THANK YOU to Bahnzo and everyone who has contributed to this script. It is SUCH a helpful tool! Your work is VERY appreciated!

I hope one day GGG will realize how valuable this info is and actually incorporate it into the game itself. Until then, carry on!
Last edited by Brumbek on Feb 12, 2016, 10:09:19 PM
Here is a solution for anyone who doesn't like "fire-on-every-clipboard-change" script behavior.
Save the below AHK code to new file with ahk extension, e.g.: MyPoE.ahk

AHK code

; Removes the "fire-on-every-clipboard-change" mode of POE-ItemInfo AHK script
; Should be placed in a same folder with POE-ItemInfo.ahk
; Run it instead of POE-ItemInfo.ahk

ClipBrdChangedLabel = ClipBrdChanged

FileRead, POEItemInfo, POE-ItemInfo.ahk
StringReplace, POEItemInfo, POEItemInfo, OnClipBoardChange:, %ClipBrdChangedLabel%:, UseErrorLevel
if ErrorLevel = 1
{
FileDelete, POE-ItemInfo.ahk
FileAppend, %POEItemInfo%, POE-ItemInfo.ahk
POEItemInfo =
Sleep, 500
Reload
}

#include POE-ItemInfo.ahk

#IfWinActive Path of Exile ahk_class Direct3DWindowClass
{
; default hotkey is: Ctrl + Right Mouse Button
^RButton::
Send ^c
Sleep, 50
Gosub, %ClipBrdChangedLabel%
return
}


Place it in a same folder with POE-ItemInfo AHK script.
Run it instead of POE-ItemInfo.ahk (it will include slightly modified POE-ItemInfo.ahk in itself).
Don't forget to save this file when updating to new POE-ItemInfo version.
You can assign your own hotkey by replacing ^RButton (Ctrl + Right Mouse Button) with any other key combo allowed by AHK,
for example: ^x will run it with Ctrl + x
Now script will show tooltip with Item Info only when assigned hotkey is pressed and not on every clipboard change that can be caused by some other script that wants to process Item's Data too.
Probably you have to update your AHK to more recent version.
Last edited by vicrv on Mar 27, 2016, 10:41:35 AM
Hi,

just started using this. Awesome stuff, thanks a whole lot.

but I have a problem - some of "my" macros don't work.

I have these:
Spoiler
{
^RButton::Send ^c ;cntl-right mouse button send's cntl-c
^WheelUp::Send {Left} ;cntl-mouse wheel up toggles stash tabs left
^WheelDown::Send {Right} ;cntl-mouse wheel down toggles stash tabs right.
; F1::^c ;changes the control-c to F1 key
F5::Send {Enter}/remaining{Enter} ;mobs remaining
F3::Send {Enter}/exit{Enter} ;exits to char selection
F9::Send {Enter}/hideout{Enter} ;goto hideout
F10::Send {Enter}/global 666{Enter} ;join a channel

}


Working:
actual ctrl-c (what the script is for in the first place) for the tooltip does work
stash tab left/right does work

not working:
F3, F5, F9, F10
ctrl + rightclick for the tooltip does not work either

so where is the problem? what am I doing wrong?
I can't see anything wrong with those (they are the macros I put at the end of the program for anyone wanting to use them) and they should be working.

What all the macros that do not work have in common, is they all send keyboard commands. Something is causing the script to not be able to send keystrokes. Really can't say for sure why that would be....do you have a weird keyboard (or maybe a gaming keyboard) or anything similar?

Of course, make sure your AutoHotKey is updated and stuff like that. Also, please make sure you read the stuff in the first post and follow the link to the original post. It still has some pertinent info that most people new to the script should probably read if they have issues. (like the game has to be run in windowed mode).
IGN: Bahnzo <--- that should find me.
PoE Item Info Script: https://www.pathofexile.com/forum/view-thread/1463814
Yes I have a gaming Keyboard (Logitech G910). But before I used that script here, I used my own script which I build up over time by "stealing" from other people's scripts.

they looked like this:

Spoiler
^f::
SendInput, {Enter}
sleep, 20
SendInput, {/}itemlevel
SendInput, {Enter}
return


and these worked for some reason.

but I've also put these in that form in that script here, and they did not work. so they work when I use them independently, but the moment I put them into that script here and try to use them, they stop working.

BUT.
I had a simple Idea right now. welp. I thought it might not be the reason, but apparently it was.

I put the comment behind the command in an extra line. soooo, I changed them all from
Spoiler
F5::Send {Enter}/remaining{Enter} ;mobs remaining

to
Spoiler
F5::Send {Enter}/remaining{Enter}
;mobs remaining


and now they work. I even changed them back to my ctrl-<key> setup, because I think that is better than the F-Keys. they now still work.

Funny enought, the ctrl-mouseup/down for the stash still works when the comment is in the same line. I don't get it why, but well, it works now. Plus, it still does not explain why my old commands (the multiline commands) did not work at first as well. but who cares. :D now all is fine. :)

maybe change your "template" version also to have the command and the comment in seperate lines. just in case. :D
Last edited by xebtria on Feb 21, 2016, 3:19:28 AM
Hold On!

Making an extra post so it does not get lost.

Being a software tester and thus testing software for a living, I was not satisfied, because I remember that my old scripts did not work in that section either at first. so I tried something else.

it is not the comment in multi line. I changed something else before as well.

This:
Spoiler
#IfWinActive Path of Exile ahk_class Direct3DWindowClass ahk_exe PathOfExile.exe

=> does not work

This:
Spoiler
#IfWinActive Path of Exile
;ahk_class Direct3DWindowClass ahk_exe PathOfExile.exe

=> does work

sooo, I tried something else.

Spoiler
#IfWinActive Path of Exile ahk_class Direct3DWindowClass ahk_exe PathOfExileSteam.exe

=> Works.

so there's the error. ppl must change the PathOfExile.exe in that line to PathOfExileSteam.exe, if they use PoE via steam. It also explains why the item info part of the script worked. YET it still does not explain why the ctrl+mouseup/down for the stash tabs worked.

But I'd narrow it down to this.
maybe change that line in your base version to
Spoiler
#IfWinActive Path of Exile ahk_class Direct3DWindowClass ahk_exe PathOfExile.exe ;change the exe to "PathOfExileSteam.exe" if you are running PoE via steam.

Report Forum Post

Report Account:

Report Type

Additional Info