Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
Sign in to follow this  
PoEr

A temporary fix for gem leveling

Recommended Posts

hi, first of all your script works great and its awesome.

when running in vm when the performance statistics F1 are enabled,

the image what the script is looking for is altered by a line from the statistics, so the first 3 gems arent leveling.

can you pls add this the image?

Share this post


Link to post
Share on other sites

First - thank you very much for this AHK script.

It worksflowlessly!

I am botting on HC league so I removed the resurect button accept.

IDK why would you want party accept button? What if people notice that you insta accept always?

 

I edited the sleep time from 200 to 2000. 2000 is 2 seconds, right? while 200 is 0.2 seconds.

 

The lost time of unleveled gem for 2 seconds wont be that big of a deal, while it would reduce the usage of resources 10 times, right?

 

Could you make it to search in smaller area?

I notice that the img is like 5x5 pixels, while the area that it searches for is like 30.

Did you do ito n the go or it might change possition depending on something?

 

Thx again for the script, works amazing!

That AHK thing is a big application, amazing possibilities.

Share this post


Link to post
Share on other sites

this seems broken now? is it broken for anyone else? i really miss the auto party function of this

The graphic for the accept button changed.  I had to take a new screenshot and cut out a new image of the accept button.

Share this post


Link to post
Share on other sites

I get lots of right clicks on gems. Script tries to level gem when bot is performing attacks (with right click) and therefore instead of left click we get right click, which leads to horrible consequences. This happens VERY often. No solution?

Share this post


Link to post
Share on other sites


#NoEnv
SetBatchLines, -1
SetMouseDelay, -1
CoordMode, Pixel, Relative

POEProgram := "pathofexile.exe"
POEProcess := "Path of Exile"

IfWinExist, %POEProcess%s
{
WinGet, WinID, List, %POEProcess%
Loop, %WinID%
{
WinGet, ProcModuleName, ProcessName, % "ahk_id" WinID%A_Index%
If(ProcModuleName!=POEProgram)
continue
If (WinID%A_Index%=WinActive("A"))
ThisID:=WinActive("A")

WinGet, CurrPID, PID, % "ahk_id" WinID%A_Index%
hwnd:=WinID%A_Index%
}

loop
{
ImageSearch, GemUpX, GemUpY, 756, 186, 790, 456, *75 GemLevelUp.bmp
If ErrorLevel = 0
{
WinGetPos, poePosX, poePosY, , , % "ahk_id " hwnd
SendMessage, 0xB774,,,, Exiled Bot (Elite)
Sleep, 125
BlockInput, On
DllCall("SetCursorPos", int, poePosX+GemUpX+4, int, poePosY+GemUpY+4)
Sleep, 425
SendInput {LButton}
BlockInput, Off
Sleep, 125
GemlevelsUpgraded++
SendMessage, 0xB775,,,, Exiled Bot (Elite)
}
}
}

return
return


 

This should work without accidently rightclicking your skillgems... Just exchange the "GemLevelUp.bmp" to your own picture.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...