PoE Autoflask & AutoScript, Improvements and updates. menu

User Tag List

Page 41 of 182 FirstFirst ... 37383940414243444591141 ... LastLast
Results 601 to 615 of 2721
  1. #601
    Kirtus's Avatar Member
    Reputation
    2
    Join Date
    Mar 2014
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a way to make mana flasks work.. like the saturated ones, it seemed to always pot my seething manas ...
    Last edited by Kirtus; 09-25-2014 at 09:35 AM.

    PoE Autoflask & AutoScript, Improvements and updates.
  2. #602
    ReadyToKill's Avatar Banned
    Reputation
    13
    Join Date
    Sep 2012
    Posts
    395
    Thanks G/R
    11/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tried adding that code immor linked and ran into some annoying issues, it would work creating new instances when i would zone from place to place, however it seemed to be basically active and held down the ctrl the whole time, so even when i tried to use my stash to inventory etc, it would move items on 1 click and wouldn't let me drag or move items to a certain location. Furthermore, it was actively being held down when i went to the desktop, so when i was trying to view the browser and would try to scroll a page up/down, etc it would either zoom in or out. This would still happen when i paused or even existed ahk only a reboot seemed to do the trick. Would it be possible to only make this feature active for the waypoint window? or did i just paste it in wrong?

  3. #603
    immor's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ReadyToKill View Post
    i tried adding that code immor linked and ran into some annoying issues, it would work creating new instances when i would zone from place to place, however it seemed to be basically active and held down the ctrl the whole time, so even when i tried to use my stash to inventory etc, it would move items on 1 click and wouldn't let me drag or move items to a certain location. Furthermore, it was actively being held down when i went to the desktop, so when i was trying to view the browser and would try to scroll a page up/down, etc it would either zoom in or out. Would it be possible to only make this feature active for the waypoint window? or did i just paste it in wrong?
    Actually, this should not even be possible. It "should" only hold your CTRL key down if the waypoint-selection panel is active (option 1 i've implemented) or if the area-transition panel (second option) is active

    Code:
    if (PlayerStats.PanelWaypoint=65537)
    {
    	GetKeyState, stateRCTRL, RCtrl
    	if stateRCTRL = U
    	{
    		SendInput, {RCtrl Down}
    		OnetimeNotification := true
    		if (trayNotifications)
    		{
    			TrayTip, Waypoint panel detected!, CTRL key: DOWN, 1
    		}
    	}
    }
    Code:
    if (MouseOnAreaTransitionStatus="Metadata/MiscellaneousObjects/AreaTransition")
    {
    	PlayerStats.MouseOnAreaTransitionStatus:=True
    }
    else
    {
    	PlayerStats.MouseOnAreaTransitionStatus:=False
    }
    Code:
    if(PlayerStats.MouseOnAreaTransitionStatus)
    {
    	GetKeyState, stateRCTRL, RCtrl
    	if stateRCTRL = U
    	{
    		SendInput, {RCtrl Down}
    		OnetimeNotification := true
    		if (trayNotifications)
    		{
    			TrayTip, Area-Transition (Sarn Encampment > City of Sarn) detected!, CTRL key: DOWN, 1
    		}
    	}
    }
    I am running my code since some days too and i am able to click on items when inv/stash is open without transfering these into my stash... Dunno what's happening for you

    Originally Posted by ReadyToKill View Post
    This would still happen when i paused or even existed ahk only a reboot seemed to do the trick.
    Now this is really interesting since:

    Code:
    IfWinActive Path of Exile ahk_class Direct3DWindowClass
    If this happens next time exit the ahk and try pressing your right CTRL key and see this fixes it,

    Also, did you copied only the new parts or the full script? Maybe you missed to copy some parts? Try copying the full script.
    Last edited by immor; 09-27-2014 at 01:11 PM.

  4. #604
    ReadyToKill's Avatar Banned
    Reputation
    13
    Join Date
    Sep 2012
    Posts
    395
    Thanks G/R
    11/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I copy & pasted the code you pasted the first time, so not the whole script, i didn't do the whole script, cause i use a config-ed script version from guruds as well . I will copy and paste the code you just entered above and test it out again.


    hmm, i just tried copying in the 3 seperate codes you pasted into the script, but couldn't get it to work, can you repaste the whole code as 1 post and i will test it again. Thx.
    Last edited by ReadyToKill; 09-27-2014 at 01:49 PM.

  5. #605
    immor's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ReadyToKill View Post
    I copy & pasted the code you pasted the first time, so not the whole script, i didn't do the whole script, cause i use a config-ed script version from guruds as well . I will copy and paste the code you just entered above and test it out again.


    hmm, i just tried copying in the 3 seperate codes you pasted into the script, but couldn't get it to work, can you repaste the whole code as 1 post and i will test it again. Thx.
    i already pasted the link to the full script in the above post

    Originally Posted by immor View Post
    Also, did you copied only the new parts or the full script? Maybe you missed to copy some parts? Try copying the full script.

  6. #606
    SpaceGuy119's Avatar Member
    Reputation
    12
    Join Date
    Aug 2014
    Posts
    354
    Thanks G/R
    8/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Is there a way to "refresh" the script after I make changes, without having to close and reopen the script. When I make changes like "Apply Quicksilver Flasks", it doesn't do it unless I restart the script.

    Would just be easier, if there is a way, thanks.

  7. #607
    Kirtus's Avatar Member
    Reputation
    2
    Join Date
    Mar 2014
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone help me? everything works except the mana pots, not a big deal but I imagine theres a easy fix?

  8. #608
    ReadyToKill's Avatar Banned
    Reputation
    13
    Join Date
    Sep 2012
    Posts
    395
    Thanks G/R
    11/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx immor, the full script seems to be working fine, i just notice one thing, nothing major though, whenever i have that wp screen up etc, you are no longer able to chat, unless u close that window or go to a diff one etc.

  9. #609
    immor's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ah ok, didnt thought of that situation i will implement some workaround

  10. #610
    Jaerin's Avatar Former Staff
    Reputation
    641
    Join Date
    Sep 2008
    Posts
    1,289
    Thanks G/R
    29/126
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please don't spam this thread with a bunch of extra crap that has nothing to do with this type of script.

    If you want to create your own branch and thread feel free, but please stop hijacking this thread with unofficial versions especially when the main dev is still working on it.

  11. #611
    gurud's Avatar Contributor CoreCoins Purchaser
    Reputation
    129
    Join Date
    Oct 2013
    Posts
    223
    Thanks G/R
    2/31
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kirtus View Post
    Can someone help me? everything works except the mana pots, not a big deal but I imagine theres a easy fix?
    working on it.

    Originally Posted by Jaerin View Post
    Please don't spam this thread with a bunch of extra crap that has nothing to do with this type of script.

    If you want to create your own branch and thread feel free, but please stop hijacking this thread with unofficial versions especially when the main dev is still working on it.
    I don't mind, i'll probably add those to the main script if people are interested in it.
    Last edited by gurud; 09-28-2014 at 06:36 PM.

  12. #612
    immor's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2008
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jaerin View Post
    Please don't spam this thread with a bunch of extra crap that has nothing to do with this type of script.

    If you want to create your own branch and thread feel free, but please stop hijacking this thread with unofficial versions especially when the main dev is still working on it.
    Sorry i did not know i was hijacking this thread... lol this is ridiculous... anyways i've deleted the github and wont disturb in here anymore.

  13. #613
    Jaerin's Avatar Former Staff
    Reputation
    641
    Join Date
    Sep 2008
    Posts
    1,289
    Thanks G/R
    29/126
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by immor View Post
    Sorry i did not know i was hijacking this thread... lol this is ridiculous... anyways i've deleted the github and wont disturb in here anymore.
    Sensitive much? I didn't say delete your shit and pack your bags, I just asked you to start your own branch if you want because the development was adding features that seem off in a completely different direction than where the original script is going.

    My job is to keep things like this clear of extra stuff that doesn't contribute to the thread topic. If Gurud doesn't care then do what you wish.

  14. #614
    Kirtus's Avatar Member
    Reputation
    2
    Join Date
    Mar 2014
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gurud View Post
    working on it.


    Thanks so much Gurud, from previous testing it seemed to work with my Seething mana pot, but not my Saturated, it will occasionally proc correctly though..

  15. #615
    Str0be's Avatar Member
    Reputation
    2
    Join Date
    Feb 2007
    Posts
    93
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Was just curious if the new curse/corrupting blood is being worked on. Right now I have everything set to default (afaik) but even though corrupted blood is set to 10, the moment I hit a mob with CB, it presses the pot, the instant I get the debuff. The curse pot however will completely drain the pot on the first curse, aka it taps my pot as fast as it can as if it were an instant flask I'm guessing.

Similar Threads

  1. How to download and update addons when curse is down, with wowmatrix
    By Stans Dad in forum World of Warcraft Guides
    Replies: 27
    Last Post: 06-22-2011, 06:56 PM
  2. [Show off] look at my new and updated sig.
    By shadowste in forum Art & Graphic Design
    Replies: 7
    Last Post: 03-31-2008, 12:56 PM
All times are GMT -5. The time now is 03:36 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