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
rodin

Auto-pot for Quicksilver Flasks

Recommended Posts

why is that? its a script for the quicksilver flask (faster running), has nothing to do with char type or aura :mrgreen:

 

In the step, it asks us to use an image searcher to find an aura so the program knows that we are in town instead of in a field. That's why he's talking about hatred everywhere in his original post.

Share this post


Link to post
Share on other sites

script already checks if the char is inside a town or not!

 

Everything what been told in this thread, i've been done, but nothing helps, script keeps spamming flasks in town. Library, same colors as @benis.

 

Color is

_outOfTown = 0x2A3D63  

Share this post


Link to post
Share on other sites

Sorry for delayed answer.


; User Config
_name_poe_win = Path of Exile ; Name of the window when you run game exe
_qsDuration = 7 ; enter your Quicksilver Flask duration !in seconds!
_firstQuicksilver = 3 ; inGame Hotkey for your first Quicksilver Flask
_secondQuicksilver = 4 ; inGame Hotkey for your second Quicksilver Flask
_thirdQuicksilver = 5 ; inGame Hotkey for your third Quicksilver Flask
_outOfTown = 0x2A3D63 ; In order to get your correct Pixelcolor please press F5
; !!! before pressing F5 make sure your character is currently not in any town! (you must be able to use a skill) !!!
 
; some needed calculations
_qsDurationTrue := (_qsDuration * 1000) + 250
 
; introduction
TrayTip, QS-Script loaded!, Options:`n> F8: Get the needed Pixelcolor!`n> F9: Start the Script (if already configured correctly)! , 2, 2
Pause On
 
; Main loop for activating the Quicksilver Flask
loop
{
 
IfWinActive, %_name_poe_win%
{
PixelSearch, Px, Py, 655, 582, 655, 582, %_outOfTown%, 0, Fast
If Errorlevel = 1
Sleep 100
Else
{
PixelSearch, Px, Py, 5, 25, 210, 60, 0xEFFF10, 0, Fast
If Errorlevel = 0
Sleep 100
Else
{
Send {%_firstQuicksilver%}
Sleep %_qsDurationTrue%
PixelSearch, Px, Py, 655, 582, 655, 582, %_outOfTown%, 0, Fast
If Errorlevel = 0
{
Send {%_secondQuicksilver%}
Sleep %_qsDurationTrue%
PixelSearch, Px, Py, 655, 582, 655, 582, %_outOfTown%, 0, Fast
If Errorlevel = 0
{
Send {%_thirdQuicksilver%}
Sleep %_qsDurationTrue%
 
}
}
else
{
sleep 100
}
}
}
    }
}
 
; get the needed pixel color for checking if in town or not
F8::
WinActivate, %_name_poe_win%
PixelGetColor, color, 655, 582
_outOfTown = %color%
TrayTip, Individual Pixelcolor found!, Define ''_outOfTown'' by using this color:`n`n                >>               %color%               <<`n`nBut for this time you can simply press F9 to start the script... , 10, 1
return
 
; Simple Pause/Unpause Function
F9::
if A_IsPaused
{
Pause off
TrayTip, QS-Script unpaused!, 1, 2
}
else
{
TrayTip, QS-Script paused!, Press F9 to resume... , 1, 2
Pause On
}
return
 
; Exitfunction
F10::
TrayTip, , terminating QS-Script! , 2.5
sleep 3000
ExitApp
return 

 

Share this post


Link to post
Share on other sites

And it's windowed, yes.

 

mhmm what pixelcolor do you get in town and what color when in the City of Sarn?

 

Same color for town & library -

0x2A3D63
Edited by 7heend

Share this post


Link to post
Share on other sites

Currently I am reworking the Quicksilver script from scratch. The past has taught me that different systems exhibit different pixelcolor locations.Thats why i am looking for someone who would like to help me testing the new script a bit. That is why I am looking for someone to help me a little while to test the script. I hope therefore to be able to eliminate these problems in advance.

 

If anyone is interested drop me a PM!

 

Sorry to intrude in your topic Immo, but i've added quicksilver support to my script and i think it's pretty good right now.

 

You can set up to use When 20+ Charges or 40+ Charges.

 

It reads from memory if you have a quicksilver equipped, and to what slot.

 

It uses first the flask who has more Charges.

 

And you can set up to only use when Moving(Only Moving and not Attacking using skills etc) and for how many seconds to wait on movement to use.

 

For Example Only Use QuickSilver when Available(20 Charges) and Moving for more than 1.5 seconds! 

(so if you moved for 1 second and then attacked a mob, the timer would reset)

 

Again, sorry to Intrude.

 

https://exiled-bot.net/community/index.php/topic/1889-release-poe-multiscript-105-autoflask-autoquit/

Edited by Gurud

Share this post


Link to post
Share on other sites

It is possible to use 3 flasks not only 2, how change then the script?

 I'm also very interested to know how to increase the number of quiksilver flasks, because 2 is not enough to maintain high speed during all run.

Share this post


Link to post
Share on other sites

Not working for me.

I did all the steps mentioned but this is what happens.
Uses 1st charge, 1st charge ends.
Uses 2nd charge, 2nd charge ends.
Fps Drops from 60 to 30 and up-down again on a loop.
This is where the script does nothing else.
PS: Im using steam but i doubt this is the reason.

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...

×
×
  • Create New...