-
Is it possible to make the map icons smaller? or hide white monsters completly?
-
Member
Originally Posted by
xerance
Is it possible to make the map icons smaller? or hide white monsters completly?
Edit "fontSize" value in "Settings.ahk" file
-
Post Thanks / Like - 1 Thanks
xerance (1 members gave Thanks to YellowRodent for this useful post)
-
Contributor
Yes, edit 'Settings.ahk', search "MinimapSymbol', then change options.
'minSize' for minimal icon size, 'rarity' for monsters(> 0 means no normal monster).
-
Post Thanks / Like - 1 Thanks
xerance (1 members gave Thanks to conajer for this useful post)
-
Member
Does this still work for loading beasts on minimap with names?
And what do you mean by not running limited user - maphack doesnt work if u run limited? but if not limited - ure kinda screwed with ban eh?
-
Member
Hi, can this tool be used to set up a way to auto-use a skill like dash(in order to automate aurabot resetter on second pc)? Thanks in advance
-
Contributor
Originally Posted by
OwnedNooblan
Does this still work for loading beasts on minimap with names?
And what do you mean by not running limited user - maphack doesnt work if u run limited? but if not limited - ure kinda screwed with ban eh?
No beasts support. And maphack can't be enabled if PoE is running as limited user.
EDIT: Nice idea, I'll try to add it later if possible.
Last edited by conajer; 09-05-2022 at 04:22 PM.
-
Contributor
Originally Posted by
AHK4games
Hi, can this tool be used to set up a way to auto-use a skill like dash(in order to automate aurabot resetter on second pc)? Thanks in advance
Currently no auto-skill support, only pre-defined defense skill can be triggered when attacking.
-
Originally Posted by
conajer
And maphack can't be enabled if running as limited user..
Why? Your code seems to modify memory, which shouldn't be impacted by the user PoE is running as. You may need to run PoEApiKit as administrator though to modify another user's program's memory though.
Last edited by Sychotix; 09-05-2022 at 02:29 PM.
-
Post Thanks / Like - 1 Thanks
camapxam (1 members gave Thanks to Sychotix for this useful post)
-
Contributor
Originally Posted by
Sychotix
Why? Your code seems to modify memory, which shouldn't be impacted by the user PoE is running as. You may need to run PoEApiKit as administrator though to modify another user's program's memory though.
If PoE is running as limited user, OpenProcess() function fails to open it with 'PROCESS_VM_WRITE' flag.
But I noticed CE can do it, so there should be a workaround.
EDIT: I found the solution, it need call AdjustTokenPrivileges() to get the SeDebugPrivilege for opening another user's process.
Last edited by conajer; 09-05-2022 at 05:00 PM.
-
Post Thanks / Like - 3 Thanks
-
Active Member
Originally Posted by
conajer
If PoE is running as limited user, OpenProcess() function fails to open it with 'PROCESS_VM_WRITE' flag.
But I noticed CE can do it, so there should be a workaround.
EDIT: I found the solution, it need call AdjustTokenPrivileges() to get the SeDebugPrivilege for opening another user's process.
this sounds like an update, yes?
-
Active Member
Originally Posted by
camapxam
this sounds like an update, yes?
Hasn't been updated yet by the look of it, but hopefully they get a chance to updated it, soon.
Thanks for the hard work producing this Conajer, it's very much appreciated.
-
Active Member
MH actually works now, i don't even have to run it as admin too, great work. Some triggers would be icing on the cake
-
Member
I got this error, but can continue to run without issue. Could you take a look?
Screenshot 2022-09-06 081500.png
-
Member
Hello folks.
First of all I want to give me gratitude to conajer for this wonderful tool in such a dark times.
Wanted to share another one "extra" which I called AutoDiscounter for PoEapi.
It automatically sets -15% price for a whole opened stash tab (I hate doing this on my own)
I only tested it locally on myself, so no guaranties it will works for you 
To add it into your current PoEapi you will need some minor coding skills, or maybe conajer will include it later into one of his major release even if finds it worthy.
Here is the code AutoDiscounter - Pastebin.com
I would also like you to share some thoughts and ideas about it, hoping you'll like it.
p.s. having plans on implementing afk auto-traider, but it is a bit more challenging task
Last edited by ffaz1; 09-06-2022 at 09:56 AM.
-
Contributor
Originally Posted by
hahajiang
What's you OS? It seems like no complete IE support in your system.
If you encounter this problem every time, 'Pricer' feature should be unavailable.
I'll try to mute the warning, but can't fixed it.
EDIT: You can do it yourself by replacing the __new() function with following codes in lib/ajax.ahk:24.
Code:
__new() {
try {
ObjRawSet(this, "__doc", ComObjCreate("HTMLFile"))
this.__doc.write("
(
<!DOCTYPE html>
<html>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<head>
</head>
</html>
)")
ObjRawSet(this, "__js", this.__doc.parentWindow)
} catch {
ObjRawSet(this, "__js", {})
}
}
Last edited by conajer; 09-06-2022 at 10:24 AM.