AutoHotKey Weapon DPS Calculator

Finally, I've my ultimate solution for the Weapon DPS calculator, that's to do it with AutoHotKey.

you can download the script here,
http://www.mediafire.com/view/a8n4p848i679za9/PoE-Wpn-Calv2.ahk

I have it set to "F7" and you need to run PoE on Windowed Fullscreen to make ToolTips work. When you're in the game, hover you mouse over the weapon and press "F7", the ToolTips will appear at your mouse pointer. It will show for 3sec or if you check other weapons.

It's fairly useful if you're a trade-bot and want to check every items on the trade channel.

It takes me a lot of work to transfer the javascript code to AHK as I'm fairly new to AHK. Feel free to correct or improve my code.


Edit: The link have been updated. New version have itemlevel and sockets added.
Last edited by stefan_12345#3840 on Dec 13, 2013, 12:26:35 AM
That's really cool man, I'll have to give it a shot.
IGN: Standard: Feugue, Domination: KaomsDisciple
Doesn't work for me, running in a desktop. Just nothing happens. Apparently I do something wrong.

Try this thread - next time do a search.

The one in the linked thread is MUCH better.

http://www.pathofexile.com/forum/view-thread/594346
Crafting doesn't exist in POE. Gambling does...and the house always wins.

Velocireptile - I LOL'ed. Which made me fart. I wish the office were empty right now :(

Hardlicker - I had to push the dog out of the way so I could get to the sexy quilt.
"
CookieVortex wrote:
Doesn't work for me, running in a desktop. Just nothing happens. Apparently I do something wrong.



Are you sure you have AutoHotKey installed?


"
Try this thread - next time do a search.

The one in the linked thread is MUCH better.

http://www.pathofexile.com/forum/view-thread/594346


Dammit. I did do a search and found nothing. I'll take a look.

But 1 thing I'm worry about the script. It's an external "itemList.txt" which mean the script will surely read the local file. I'm very sceptic about that, and wouldn't run that without thorough checking.

I can add itemlevel and will post it out soon.
There is nothing external in the script - lol

download it and run it with autohotkey. 1 script. Simple. No offense but you are remaking the whell. That is ok if you are trying to learn autohotkey but the script above has been tweaked and is VERY good.
Crafting doesn't exist in POE. Gambling does...and the house always wins.

Velocireptile - I LOL'ed. Which made me fart. I wish the office were empty right now :(

Hardlicker - I had to push the dog out of the way so I could get to the sexy quilt.
"
ToxicRatt wrote:
There is nothing external in the script - lol

download it and run it with autohotkey. 1 script. Simple. No offense but you are remaking the whell. That is ok if you are trying to learn autohotkey but the script above has been tweaked and is VERY good.


@line 82:
ItemListArray = 0
Loop, Read, %A_WorkingDir%\ItemList.txt ; This loop retrieves each line from the file, one at a time.
{
ItemListArray += 1 ; Keep track of how many items are in the array.
StringSplit, NameLevel, A_LoopReadLine, |,
Array%ItemListArray%1 := NameLevel1 ; Store this line in the next array element.
Array%ItemListArray%2 := NameLevel2
}
}


I'm not saying it's not safe, just when I detect there're "read" in the script, I need to sceptic and check everything.
Last edited by stefan_12345#3840 on Dec 12, 2013, 10:33:16 PM
Then read the rest...you can turn that off *sigh*
Crafting doesn't exist in POE. Gambling does...and the house always wins.

Velocireptile - I LOL'ed. Which made me fart. I wish the office were empty right now :(

Hardlicker - I had to push the dog out of the way so I could get to the sexy quilt.
"
ToxicRatt wrote:
Then read the rest...you can turn that off *sigh*


I know you don't mean that, but you make things fishy. If you can turn that off, why it was there in the first place?

Report Forum Post

Report Account:

Report Type

Additional Info