anyone know how to...Auto fill the price tag of the selected item? ^RButton
anyone know how to...Auto fill the price tag of the selected item? ^RButton
same autofill is not working for me either
Does not PoEapikit show small heist chest?
Do you have any plan to add a plugin for the expedition icon in the near future?
Overall I'm very impressed with this macro, it's extremely powerful. There are some minor tweaks I'd like to do on my end to make things perfect.
First of all, how do I tell autoPickUp to ignore all rares?
I attempted to empty the rareItemFilter field but with no success.
Essentially I want to pick up: currency, 6 socket, fragments, incubators, splinters, maps, etc. ..., and ignore: uniques, fractured items, and rares.Code:"rareItemFilter" : ""
I did try to play around with the strictness levels but unsuccessfully. I believe 1 still loots rares. 2 might still do but then my problem is that it ignores 6 sockets.
Secondly, I was wondering if maybe Clasped Hands from Breach could somehow be added to the auto open pool of objects (just like shrines and doors).
Reasoning: When mapping with breach nodes on the Atlas Tree, breaches open and close faster, they also spawn more hands. Ideally you want to clear as fast as possible as well as open all available hands.
As they are treated like regular chests right now, using the pick up key is rather risky as there is lots of loot and splinters hovering around and I want to prevent going into a loot routine. I've attempted to mitigate this a bit by lowering the loot radius but I think it would feel much better if it had the same logic as shrines, I dash onto the hand, it auto opens, I continue mobbing.
If there is a better way to reach out or to receive support, I'd be more than happy to drop a donation or subscribe to the patreon. Just let me know and many many thanks for sharing your excellent work with us![]()
price check of all items in tabs stopped working on new last version. Only works on mouse on item
Last edited by flashyura; 12-18-2022 at 08:22 AM.
working weirdly after today update.
does this work on windows 11? i used to be able to use it on my old computer but on my new one i keep getting an error 'cannot load poeapi.dll', im using the correct autohotkeys and everything.
trade is not working for me....
In which file do I consider reducing the speed of the "Trade Full Rare Sets" option?
I believe that if you leave it too fast and use it frequently, it can cause a ban.
did anyone manage to fix the bug of poeapikit closing/bugging after dying?
I believe that could be auto quit trying to save your EXP and failing. Either run the script as admin or disable the auto d/c option. I had a few crashes like this as well although I ran as admin on the most recent version. But after a few fails it started working again.
First and foremost, thank you.
Ive been sifting through the various files and code trying to find where I could possibly edit the radius of the maphack, is this a possibility?
Side note, recently started learning to program (only dabbled in C# so far), but all this is quite impressive to see/read the code!
Your probably looking for
PoEapi/Terrain.cpp at 2b47c2f1ff4f59740da5825372e2ad6598469207 . conajer/PoEapi . GitHub
PoEapi/PoETask.cpp at b2a28ac1bb9fe32eef18376927fd3163432d34f4 . conajer/PoEapi . GitHub
If you are new to programming and to C# it is probably going to be a bit over your head to start with but its nice to learn some of the more low level work if your interested in cheat development.
You could also build out your own Tool with the API using C# and the DllImport decorator
Code:using System; using System.Runtime.InteropServices; class Example { // Use DllImport to import the Win32 MessageBox function. [DllImport("user32.dll", CharSet = CharSet.Unicode)] public static extern int MessageBox(IntPtr hWnd, String text, String caption, uint type); static void Main() { // Call the MessageBox function using platform invoke. MessageBox(new IntPtr(0), "Hello World!", "Hello Dialog", 0); } }