Autoflask & AutoScript for POE(32bit) 3.3.1b menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 57
  1. #16
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice script, would be worth looking into making this a community project to add the missing flasks as well as possibly a pickit function.
    Last edited by naut333; 07-29-2018 at 02:48 AM.

    Autoflask & AutoScript for POE(32bit) 3.3.1b
  2. Thanks Dungamer (1 members gave Thanks to naut333 for this useful post)
  3. #17
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I took the liberty of cleaning up the code considerably.

    I fixed granite and basalt flasks sharing the same logic, they will now both properly be used.

    Added bismuth flask as it was missing previously.

    Decreased multiple delays

    Cleaned up the code - because no offence but my eyes were bleeding lol... now much cleaner to look at. This resulted in eliminating about 20,000 characters which equated to about 15% of the code, which will also help with performance. Hopefully this makes it easier for other users to view it and see what additions of their own they would like to try to tackle.
    If you wish to do so, I recommend downloading notepad++ as it makes the code significantly nicer to look at. Set Language to C++.

    Autopot Revised Edition:
    AutoPot Revised.zip

    All credit goes to original authors.
    Last edited by naut333; 07-29-2018 at 12:02 AM.

  4. Thanks deomexuathe, levelmax, xuanhanhbmt, toadskin, Philss, Dungamer (6 members gave Thanks to naut333 for this useful post)
  5. #18
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    AHK pickit code

    Code:
    #IfWinActive, Path of Exile ahk_class Direct3DWindowClass
    
    f2::
    
    {
    
    Send,{Blind}{Lalt down}
    
    PixelSearch, FoundX, FoundY, 700, 300, 1230, 730, 0xEFC1EF, 10, Fast
    
    If ErrorLevel = 0
    
    click %FoundX%, %FoundY%
    
    Send,{Lalt up}
    
    Sleep, 500
    
    }
    ------- PixelSearch, FoundX, FoundY, 700, 300, 1230, 730, 0xEFC1EF, 10, Fast ------- find this line

    ------------- 700, 300, 1230, 730 -------- these 4 numbers relate rectangle which you would like to search inside of.
    (700, 300) = (x1, y1) = top left corner
    (1230, 730) = (x2, y2) = bottom right corner

    --------- 0xEFC1EF ------ this relates to the hex value for the colour you would like to click, it can be found using the WindowSpy tool included with autohotkey.

    I will work on encorporating this into the script, however I will post this here incase anyone wants to beat me to it
    Last edited by naut333; 07-29-2018 at 05:32 PM.

  6. Thanks Dungamer (1 members gave Thanks to naut333 for this useful post)
  7. #19
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    These threads seem to get littered quickly with requests to create a 64 bit version. To put it simply this cannot be done without a major amount of work, the entire basis of the script would need to be changed.

    I will show some info below to explain so this does not just seem like a cop-out.

    The code below is found within the autopot AutoHotKey script.

    Code:
    FileMD5( sFile="", cSz=4 )
    	{  ; by SKAN www.autohotkey.com/community/viewtopic.php?t=64211
    		cSz := (cSz<0||cSz>8) ? 2**22 : 2**(18+cSz), VarSetCapacity( Buffer,cSz,0 ) ; 18-Jun-2009
    		hFil := DllCall( "CreateFile", Str,sFile,UInt,0x80000000, Int,3,Int,0,Int,3,Int,0,Int,0 )
    		IfLess,hFil,1, Return,hFil
    		hMod := DllCall( "LoadLibrary", Str,"advapi32.dll" )
    		DllCall( "GetFileSizeEx", UInt,hFil, UInt,&Buffer ),    fSz := NumGet( Buffer,0,"Int64" )
    		VarSetCapacity( MD5_CTX,104,0 ),    DllCall( "advapi32\MD5Init", UInt,&MD5_CTX )
    		Loop % ( fSz//cSz + !!Mod( fSz,cSz ) )
    		DllCall( "ReadFile", UInt,hFil, UInt,&Buffer, UInt,cSz, UIntP,bytesRead, UInt,0 )
    		, DllCall( "advapi32\MD5Update", UInt,&MD5_CTX, UInt,&Buffer, UInt,bytesRead )
    		DllCall( "advapi32\MD5Final", UInt,&MD5_CTX )
    		DllCall( "CloseHandle", UInt,hFil )
    		Loop % StrLen( Hex:="123456789ABCDEF0" )
    		N := NumGet( MD5_CTX,87+A_Index,"Char"), MD5 .= SubStr(Hex,N>>4,1) . SubStr(Hex,N&15,1)
    		Return MD5, DllCall( "FreeLibrary", UInt,hMod )
    	}
    You will notice advapi32.dll appears frequently throughout this code.
    This particular section of code is used in combination with the offsets to gather information from the game, this can be seen when you hit debug and can view your health etc.

    advapi32 stands for Advanced Application Programming Interface 32-bit

    In summary, one of the major dll files used to communicate with the game is coded in 32 bit, without completely changing the method of communication with the game, it will stay 32 bit.

  8. Thanks toadskin, Dungamer (2 members gave Thanks to naut333 for this useful post)
  9. #20
    m1nc's Avatar Member
    Reputation
    3
    Join Date
    Oct 2014
    Posts
    125
    Thanks G/R
    2/2
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it safe atm? ;/ i mean did any one got ban for it ? :P

  10. Thanks Ilinsas (1 members gave Thanks to m1nc for this useful post)
  11. #21
    Forumuser1000's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    257
    Thanks G/R
    169/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Doesn't seem to make any difference at all what I do. Loading up the autopot gives me an instant crash with the message "Failed to obtain moduleBase or moduleSize for PID5152, script will now terminate".

    As per previous comments, I am using the 32bit POE & I am on the global servers.

    Could anyone advise what this error means & what I might be doing wrong?

  12. #22
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Forumuser1000 View Post
    Doesn't seem to make any difference at all what I do. Loading up the autopot gives me an instant crash with the message "Failed to obtain moduleBase or moduleSize for PID5152, script will now terminate".

    As per previous comments, I am using the 32bit POE & I am on the global servers.

    Could anyone advise what this error means & what I might be doing wrong?
    Run the exe not the script itself. That way you dont need to worry about version compatibility issues of AHK.

    If you do not feel comfortable running a foreign exe, delete the existing exe, download ahk, and use that to compile the script into an exe.

  13. Thanks Dungamer (1 members gave Thanks to naut333 for this useful post)
  14. #23
    Forumuser1000's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    257
    Thanks G/R
    169/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by naut333 View Post
    Run the exe not the script itself. That way you dont need to worry about version compatibility issues of AHK.

    If you do not feel comfortable running a foreign exe, delete the existing exe, download ahk, and use that to compile the script into an exe.
    I am running the .exe, that's the error message from the insta-crash I get form running it.

  15. #24
    rwcblazer's Avatar Member
    Reputation
    3
    Join Date
    May 2011
    Posts
    10
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This would be the first time me using Auto Flask Auto Scrip, what are some good settings to set this up, Im constantly getting logged out because of my bad settings.

  16. #25
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Forumuser1000 View Post
    I am running the .exe, that's the error message from the insta-crash I get form running it.
    Perhaps the ahk version you have installed does matter after all, go to the ahk website and reinstall the latest version using 32 bit custom install, not 64bit.

  17. Thanks Dungamer (1 members gave Thanks to naut333 for this useful post)
  18. #26
    Genocyber's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    108
    Thanks G/R
    111/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by naut333 View Post
    Perhaps the ahk version you have installed does matter after all, go to the ahk website and reinstall the latest version using 32 bit custom install, not 64bit.
    Same error here, running x86 version of ahk

  19. #27
    HoboJingles's Avatar Member
    Reputation
    1
    Join Date
    Jun 2017
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works great! Uses all of my flasks. Love the rework Naut, thank you very much.

  20. #28
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Genocyber View Post
    Same error here, running x86 version of ahk
    Not sure what is causing this error.

    Try running the script itself and see if it gives any particular errors when starting to run.

    If it does please report them here.

    If that runs without problems, then try compiling the exe yourself (right click the script and hit compile)

  21. Thanks Dungamer (1 members gave Thanks to naut333 for this useful post)
  22. #29
    DeadCellxxx's Avatar Member
    Reputation
    2
    Join Date
    Dec 2017
    Posts
    24
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well ty so much for getting this update and working its a great help works great even after updates

    is it really hard to get this to work with steam by chance?? the account i have lots of work into this league is on steam but i just started using global till things get settled.. and fig out.

    i was using hud with limited player set up and i was fine no ban but its not working atm i can live without hud but auto pot is such more fun for me so ty

  23. #30
    gaaraboy's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    25
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by naut333 View Post
    Not sure what is causing this error.

    Try running the script itself and see if it gives any particular errors when starting to run.

    If it does please report them here.

    If that runs without problems, then try compiling the exe yourself (right click the script and hit compile)
    Hey, do you think it would be possible to use utility flasks such as diamond/silver etc?

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Trading] my CS:GO beta invite for PoE beta key
    By SLOWLLY in forum General Trading Buy Sell Trade
    Replies: 1
    Last Post: 08-20-2012, 09:06 AM
  2. [Trading] trading Molten-wow Premium acc for PoE key
    By blackhorn1233 in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 08-01-2012, 02:37 AM
  3. [Trading] d3 account for poe beta key
    By ffs910 in forum Diablo 3 Buy Sell Trade
    Replies: 1
    Last Post: 07-31-2012, 12:15 AM
  4. [Trading] The Secret World Pre-Order Key for PoE Closed Beta Key
    By Duplicity in forum General MMO Buy Sell Trade
    Replies: 2
    Last Post: 04-05-2012, 08:12 AM
  5. [Trading] Firefall beta invites for PoE keys.
    By forzakenus in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 04-04-2012, 01:12 PM
All times are GMT -5. The time now is 03:12 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search