[Release]Ingame Itemlevel and DPS Display using Autohotkey

Looking good on my end, thanks for this!
Can I change the bind from the default CTRL+C? I would like to put it on the middle mouse, but can't figure out your code sadly.

Also it would be insanely sweet if you could summarize affix information. Could make item valuation much easier and require less memorization of affix table. Even affixes with multiple lines is enough to throw me way off. Edit: After thinking how this script works, not sure it's possible. Just had a nice idea. The interface in this game has a learning curve.

This thread has way too much script QQ. It's legal, don't make me read 20 pages of trash to find this information.

Last edited by Poroburu on Nov 27, 2013, 12:12:20 PM
"
Can I change the bind from the default CTRL+C? I would like to put it on the middle mouse, but can't figure out your code sadly.

Also it would be insanely sweet if you could summarize affix information. Could make item valuation much easier and require less memorization of affix table. Even affixes with multiple lines is enough to throw me way off.

This thread has way too much script QQ. It's legal, don't make me read 20 pages of trash to find this information.



I said how to about 5 pages back. But incase of lazyness. Put the following line at the vary bottom two lines under "ParseClipBoardChanges()"

MButton::Send {CTRL Down}{vk43sc02E}{CTRL Up}



In doing so the middle mouse button will be converted to using ctr+c but the ctrl+c can still be used as well.
Tied of trying to figure out iLVL or DPS in game. Check this out http://www.pathofexile.com/forum/view-thread/594346
Nipper4369, much appreciated! I sort of gave up after 10 pages. I like playing with mouse only when farming.

Excellent work.
Last edited by Poroburu on Nov 27, 2013, 11:06:09 AM
"
Nipper4369, much appreciated! I sort of gave up after 10 pages. I like playing with mouse only when farming.

Excellent work.


hehe
Tied of trying to figure out iLVL or DPS in game. Check this out http://www.pathofexile.com/forum/view-thread/594346
Sorry to bother, but where would I go to find the code for what the above poster asked? Like, if I wanted to make it a side mouse button instead of the middle mouse button. Is there a way to let the function of the button continue doing it's old function or does it override that function with the hot key?
"
Tricen wrote:
Sorry to bother, but where would I go to find the code for what the above poster asked? Like, if I wanted to make it a side mouse button instead of the middle mouse button. Is there a way to let the function of the button continue doing it's old function or does it override that function with the hot key?


You asking to assign another button to the hotkey??

If so

MButton::Send {CTRL Down}{vk43sc02E}{CTRL Up}

This is the code for that. Chance the MButton being Middle Moustbutton to what ever key you need. http://www.autohotkey.com/docs/KeyList.htm has a list of keys you can use. If I seem to miss the question on what you were asking please describe in little more detail on what you are trying to do.


Example:

XButton1::Send {CTRL Down}{vk43sc02E}{CTRL Up}

XButton1 being a generic key on some mice, such as my own.


If you want to ask a little more info feel free to come contact me in game @Ipperchay or come on my ts3. The address is ts3.shackx.net just look for Scott AkA Nipper in lower channels.
Tied of trying to figure out iLVL or DPS in game. Check this out http://www.pathofexile.com/forum/view-thread/594346
Last edited by Nipper4369 on Dec 4, 2013, 12:59:28 PM
Sorry if this you've already given a solution to this.
But is it possible to merge this script with my Fast Logout/Portal script?

Spoiler

F1::LogUd()
F2::HurtigPortal()

LogUd(){
BlockInput On
SetDefaultMouseSpeed 0
sendinput {esc}
MouseClick, left, 967, 473, 1, 1
BlockInput Off
return
}

HurtigPortal(){
BlockInput On
Send {i}
Click right 1881,838
Send {i}
BlockInput Off
return
}


I've tried simply pasting it in the bottom of the file or at the top. It kinda works; The portal script as an example: It executes fine, and click where it should click. But it doesn't open the inventory 9/10 times.
Last edited by 2talt on Dec 13, 2013, 5:45:46 AM
Update:
Just did a minor update to fix some unique items from not showing dps like Voltaxic Rift. Plus added a fix for pure elemental damage type weapons like the new unique(Oro's Sacrifice).
Tied of trying to figure out iLVL or DPS in game. Check this out http://www.pathofexile.com/forum/view-thread/594346
"
2talt wrote:
Sorry if this you've already given a solution to this.
But is it possible to merge this script with my Fast Logout/Portal script?

Spoiler

F1::LogUd()
F2::HurtigPortal()

LogUd(){
BlockInput On
SetDefaultMouseSpeed 0
sendinput {esc}
MouseClick, left, 967, 473, 1, 1
BlockInput Off
return
}

HurtigPortal(){
BlockInput On
Send {i}
Click right 1881,838
Send {i}
BlockInput Off
return
}


I've tried simply pasting it in the bottom of the file or at the top. It kinda works; The portal script as an example: It executes fine, and click where it should click. But it doesn't open the inventory 9/10 times.


I my self do not suppor these type of scripts. But you don't need to have it in the same script. You can have it run on its own. But it might bedue to the way the send is. Try using SendInput and not send or try using the vk send. It tends to work better.
Tied of trying to figure out iLVL or DPS in game. Check this out http://www.pathofexile.com/forum/view-thread/594346

Report Forum Post

Report Account:

Report Type

Additional Info