-
Member
Originally Posted by
Gwolf18
is there a way to stash ALL items except several tiles to current stash tab? right now script stashes only few types of items.
Ok, i done it myself.
Next question - And how to stop autopickup to picking up unique items? I want to pick up everything except uniques.
Ok found it as well.
Cab you please explain how you did it cause I want to change that as well
-
Contributor
Originally Posted by
headman
Hi Conajer,
im playing PoE with the windos setting that my right click counts as left click.
This breakes the scripts for picking up items and stashing etc.
Is it possible to add a option to change everything to rightclick?
Or is it possible for me to rewrite the .ahk scripts to work with right clicks?
Thanks
Add following red codes to PoEapikit.ahk.
Code:
+-::_
-::NumpadSub
+::NumpadAdd
RButton:: LButton
LButton:: RButton
-
Post Thanks / Like - 1 Thanks
headman (1 members gave Thanks to conajer for this useful post)
-
Contributor
Originally Posted by
BlancoPower420
Cab you please explain how you did it cause I want to change that as well
You need to edit Settings.ahk to customizing the stash rules. Here is a sample, using 'index' to specify inventory cells.
Code:
global StashRules := [ {"tabName" : "Es", "baseName" : "Essence of"}
, {"tabName" : "Fossils", "baseName" : "Fossil$|Resonator$"}
, {"tabName" : "$$$", "baseType" : "Currency", "baseName": "Stacked Deck|Contract|Blueprint", "Constraints" : {"index" : [6, 60]}}
, {"tabName" : "1", "baseType" : "DivinationCard", "Constraints" : {"price" : [1, 99999] }}
, {"tabName" : "2", "baseType" : "Gem", "Constraints" : {"quality" : [5, 23]}}
, {"tabName" : "3", "baseType" : "Weapon", "Constraints" : {"rarity" : 2, "isIdentified" : false, "itemLevel" : [60, 100]}} ]
For AutoPikup, set 'strictLevel to 1 or above to ignore unique items, set 'rareItemFilter' to ".*" to pick up all rare items.
0: unique items RGB items and full rare set recipe items.
1: 6 sockets items and quality gems
2: influenced items with item level >= 82 and synthesised items
3 and above: currency items, 6 links items
Code:
, "AutoPickup" : { "enabled" : true
, "range" : 75
, "ignoreChests" : false
, "strictLevel" : 1
, "genericItemFilter" : "Sentinel$|Incubator|Quicksilver|Basalt|Quartz|Eternal (Life|Mana)"
, "rareItemFilter" : "Jewel|Amulet|Ring" }
-
Post Thanks / Like - 2 Thanks
-
Member
Just got the update, TY TY TY
-
Member
Thanks for the update.
Chests do not open automatically or with the "a" key...
Am I doing something wrong somewhere?
-
Member
Originally Posted by
xcrea
Thanks for the update.
Chests do not open automatically or with the "a" key...
Am I doing something wrong somewhere?
Code:
, "AutoPickup" : { "enabled" : true
, "range" : 75
, "ignoreChests" : false
, "strictLevel" : 1
, "genericItemFilter" : "Sentinel$|Incubator|Quicksilver|Basalt|Quartz|Eternal (Life|Mana)"
, "rareItemFilter" : "Jewel|Amulet|Ring" }
Is "ignoreChest" set to true in your PickUp Settings maybe? If yes change it to false
-
Member
Thanks for the Updates conajer. 
I can't get the TradeOverlay to work.
Is there anything I need to do besides setting TraderUICompact to true?
I am using the standalone PoE client. It is installed on C: drive and I run PoE and PoEapikit under the same admin user.
Hope someone can help me.
Last edited by MrDivandoo; 06-19-2022 at 07:22 AM.
-
Contributor
Originally Posted by
MrDivandoo
Code:
, "AutoPickup" : { "enabled" : true
, "range" : 75
, "ignoreChests" : false
, "strictLevel" : 1
, "genericItemFilter" : "Sentinel$|Incubator|Quicksilver|Basalt|Quartz|Eternal (Life|Mana)"
, "rareItemFilter" : "Jewel|Amulet|Ring" }
Is "ignoreChest" set to true in your PickUp Settings maybe? If yes change it to false
In the latest update, "NORMAL" chests are ignored by default. I will added additional option later for customizing.
-
Contributor
Originally Posted by
MrDivandoo
Thanks for the Updates conajer.
I can't get the TradeOverlay to work.
Is there anything I need to do besides setting TraderUICompact to true?
I am using the standalone PoE client. It is installed on C: drive and I run PoE and PoEapikit under the same admin user.
Hope someone can help me.
I have no idea if you are using the latest version. Did the 'Trader' work before, or just don't work in the current version?
Currently PoEapikit only support several languages: English, Korean and Russian.
For the basic debugging, add following red codes in extras/Trader.ahk:
Code:
__onMessage(wParam, lParam) {
message := StrGet(wParam)
debug(message)
if (Not message ~= "^(\$|#).+") {
this.parseMessage(message, lParam)
}
}
Restart PoEapikit, press 'F12' to open logger. If you received message, it should be shown in logger window at same time.
If you see messages in logger window, it means something wrong with the Trader.
Last edited by conajer; 06-20-2022 at 10:22 AM.
-
Member
Originally Posted by
conajer
I have no idea if you are using the latest version. Did the 'Trader' work before, or just don't work in the current version?
Currently PoEapikit only support several languages: English, Korean and Russian.
For the basic debugging, add following red codes in extras/Trader.ahk:
Code:
__onMessage(wParam, lParam) {
message := StrGet(wParam)
debug(message)
if (Not message ~= "^(\$|#).+") {
this.parseMessage(message, lParam)
}
}
Restart PoEapikit, press 'F12' to open logger. If you received message, it should be shown in logger window at same time.
If you see messages in logger window, it means something wrong with the Trader.
It shows the Trade message in the logger.
I have never used the Trade Overlay before so don't know if it has ever worked for me.
I am using the latest PoEapikit Version 1.8.2 64-Bit (AutoHotkey version 1.1.34.02)
-
Contributor
Originally Posted by
MrDivandoo
It shows the Trade message in the logger.
I have never used the Trade Overlay before so don't know if it has ever worked for me.
I am using the latest PoEapikit Version 1.8.2 64-Bit (AutoHotkey version 1.1.34.02)
Also 'Trader' only works in windowed mode. If you are using it in full screen mode, map overlay or trader are showed invisible. In this case try full screen windowed mode.
-
Member
Originally Posted by
conajer
Also 'Trader' only works in windowed mode. If you are using it in full screen mode, map overlay or trader are showed invisible. In this case try full screen windowed mode.
I am using windowed fullscreen. Everything except Trader works.
-
Contributor
PoEapikit 1.8.3 released. The latest patch of PoE causes PoEapikit work incorrectly, so close PoE then restart PoEapikit to update.
-
Post Thanks / Like - 1 Thanks
myspleen (1 members gave Thanks to conajer for this useful post)
-
Member
Originally Posted by
conajer
Add following red codes to PoEapikit.ahk.
Code:
+-::_
-::NumpadSub
+::NumpadAdd
RButton:: LButton
LButton:: RButton
Hi Conajer,
I had the time to test this now.
But sadly this only fixes the stashie macros, but don´t help for picking up items.
Then the cursor jumps to the item but is still trying to pick it up with the left mouse button.
-
Member
Everything works besides autoflask :-/ Ive set up health flask to like 70% but he aint taking my health flask. it worked like 2 weeks before