PoE Autoflask & AutoScript, Improvements and updates. menu

User Tag List

Page 3 of 182 FirstFirst 123456753103 ... LastLast
Results 31 to 45 of 2721
  1. #31
    fabcard's Avatar Member
    Reputation
    10
    Join Date
    Jun 2013
    Posts
    137
    Thanks G/R
    38/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OMG gurud, you are my hero!!!
    That GUI is looking nice...
    By the way, did you take o look on the suggestion I gave related to the flasks duration?
    Again, thank you very much, gurud

    PoE Autoflask & AutoScript, Improvements and updates.
  2. #32
    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 fabcard View Post
    OMG gurud, you are my hero!!!
    That GUI is looking nice...
    By the way, did you take o look on the suggestion I gave related to the flasks duration?
    Again, thank you very much, gurud
    I've look a bit just to determinate is not that easy, i'll look it further later.

    If i can't find the modded flask durations i can also put the pot options on the gui, at least will not be as bad as having to write to the script all the time.

    But i'll try to find the values first.
    Last edited by gurud; 12-14-2013 at 03:20 PM.

  3. #33
    Nipper's Avatar Member
    Reputation
    12
    Join Date
    Jun 2013
    Posts
    115
    Thanks G/R
    5/7
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Just have to say love the portal. Fast to. But there is a issue. If you have a gcp in your inventory it wont work. It trys to use the gcp and not scroll.

    Noticed in another post of yours. Just removing it form the first line lets it work again.
    Last edited by Nipper; 12-14-2013 at 07:01 PM.

  4. #34
    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 Nipper View Post
    Just have to say love the portal. Fast to. But there is a issue. If you have a gcp in your inventory it wont work. It trys to use the gcp and not scroll.
    It's trying to find any currency actually in your inventory,

    For now just leave Portal Scrolls in the first line of your inventory and it will work.

    I'm still trying to find another method more reliable, without losing in speed.
    Last edited by gurud; 12-14-2013 at 08:00 PM.

  5. #35
    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)
    Update 12/15/2013:

    Added a GUI.




    Any bugs please report here

  6. #36
    maper's Avatar Elite User __readgsqword(0x188); CoreCoins Purchaser
    Reputation
    496
    Join Date
    Nov 2013
    Posts
    356
    Thanks G/R
    26/353
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Very nice.

  7. #37
    Nipper's Avatar Member
    Reputation
    12
    Join Date
    Jun 2013
    Posts
    115
    Thanks G/R
    5/7
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I am not a fan of your trade send. So here use mine. I made it my self. Just toss me a little credit.



    Code:
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    SetKeyDelay, 10, 10
    global TradeStart = 0
    global TradeIsitOK := "yes"
    TotalChannels = 10
    
    Delete::
    
    global TradeIsitOK := "yes"
    SendStart := TradeStart+1
    SendEnd := TradeStart+TotalChannels
    
    ChatTradeSend(SendStart,SendEnd)
    
    return
    
    +Delete::
    TradeStart = 0
    global TradeIsitOK := "yes"
    SendStart := TradeStart+1
    SendEnd := TradeStart+TotalChannels
    
    ChatTradeSend(SendStart,SendEnd)
    
    return
    
    
    End::
    TradeIsitOK := "Off"
    Return
    
    
    #IfWinActive, Path of Exile
        
    
    ChatTradeSend(Start,Stop){
    
    	Loop {
    
    if TradeIsitOK = yes
    {
    send {enter}
    Sleep 100
    send /trade %Start%
    global TradeStart = Start
    Sleep 100
    send {enter}
    Sleep 100
    send {enter}
    Sleep 100
    send {up}
    Sleep 100
    send {up}
    Sleep 100
    send {enter}
    Sleep 100
    }
    Start++
        if (Start-1 = Stop)
            break
            
        if TradeIsitOK = Off
            break
    }
    }

    How to use.

    Just like yours type in the trade chat with item links/message ect. Send it. Then hit Delete to start. It will send to the first 10 channels 1-10. Then hit delete again it will send to the next 10 11-20 and each time you hit delete after it stops it will send to the next 10.

    To reset back to channel 1 hold shift and hit delete to start it. It will start the numbers back at channel 1.

    If for what ever reason you need to stop it mid spam like you screwed up the message or spamming in wrong spot. Hit the end key a few times but once should be enough. It will stop. It will also resume from where you stopped it if you don't start from channel 1 again.

  8. #38
    Nipper's Avatar Member
    Reputation
    12
    Join Date
    Jun 2013
    Posts
    115
    Thanks G/R
    5/7
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Notice something with your new one. You need to have a way to total disable the auto quit/logout/portal. Setting it to 0 makes it log you out so no real way to disable this all the way.

  9. #39
    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 Nipper View Post
    Notice something with your new one. You need to have a way to total disable the auto quit/logout/portal. Setting it to 0 makes it log you out so no real way to disable this all the way.
    Setting it to 0 won't log you out...

    You need to set Life Percent to Quit and Energy shield percent to quit, to 0.

    Also i think my trade script is fine as most ppl who wanna buy stuff only go to channel 1-10, might be wrong.

    but later on i might add an option in the gui, to write to with channels you want to send the message.

    Thanks for the imput.
    Last edited by gurud; 12-15-2013 at 10:22 PM.

  10. #40
    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 zioflippo View Post
    im sry im a new comer here. can tell me how to use this?
    http://www.ownedcore.com/forums/mmo/...-autoquit.html ([Release][Autohotkey script] PoE Autoflasks & autoquit.)

    This is the original thread of this script.

    There are a few explanations there on how o set it up, then come back here and use this script, instead of that one (that one is outdated)

  11. #41
    apwkid's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    30
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I cant seem to make this work with instant flasks. it treats them like they have several seconds cooldown.

    there is no way to handle this in the gui and i cant figure out how to change it in the script ...

  12. #42
    fabcard's Avatar Member
    Reputation
    10
    Join Date
    Jun 2013
    Posts
    137
    Thanks G/R
    38/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by apwkid View Post
    I cant seem to make this work with instant flasks. it treats them like they have several seconds cooldown.

    there is no way to handle this in the gui and i cant figure out how to change it in the script ...
    That's because for now the script reads the flasks duration as if they were normal/white kinds. I already asked gurud to change that - of course if he can do it.
    At this time you can manually set each flask with the real duration depending on what kind you have - rare/blue. To do that add the "OverrideFlaskDuration: XXX" as it says on script comments.

    @gurud: Nice work on the GUI, friend.
    I noticed that you removed the specific character settings values - that normal/hardcore lines, so now the script acts as generic. I'm using the old version of this script because I have 3 "profiles" for my 3 characters. I don't know if you can add a drop down character names list on the GUI so we can configure each settings individually. But don't worry if you are busy, I think the request for right duration on flasks time is more important anyways
    Last edited by fabcard; 12-16-2013 at 12:38 AM.

  13. #43
    fabcard's Avatar Member
    Reputation
    10
    Join Date
    Jun 2013
    Posts
    137
    Thanks G/R
    38/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh, I did't know you are Brazilian, gurud... Porque nao disse antes?
    Let me know if you need any help on scripts. I'm noob at coding but I could help somehow

  14. #44
    datz's Avatar Active Member
    Reputation
    22
    Join Date
    Aug 2013
    Posts
    532
    Thanks G/R
    166/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    idk why but run the script try to join on my char and keeps insta quitting.. idk how to change that

  15. #45
    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 apwkid View Post
    I cant seem to make this work with instant flasks. it treats them like they have several seconds cooldown.

    there is no way to handle this in the gui and i cant figure out how to change it in the script ...
    Working on a solution.

    Originally Posted by fabcard View Post
    @gurud: Nice work on the GUI, friend.
    I noticed that you removed the specific character settings values - that normal/hardcore lines, so now the script acts as generic. I'm using the old version of this script because I have 3 "profiles" for my 3 characters. I don't know if you can add a drop down character names list on the GUI so we can configure each settings individually. But don't worry if you are busy, I think the request for right duration on flasks time is more important anyways
    That should be easy to do, i'll certainly add that option.(easy as in "i know how to do that" but will take some time)

    Originally Posted by datz View Post
    idk why but run the script try to join on my char and keeps insta quitting.. idk how to change that
    Are you using the default config? Try clicking on Reset to default, then click on find. And you are not using the steam version are you?
    Last edited by gurud; 12-16-2013 at 07:42 AM.

Page 3 of 182 FirstFirst 123456753103 ... LastLast

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. Replies: 479
    Last Post: 08-17-2009, 10:33 PM
  3. [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
  4. Enchant Scam Improved and maybe unbannable
    By BlackFog in forum WoW Scam Prevention
    Replies: 13
    Last Post: 01-25-2008, 02:37 PM
All times are GMT -5. The time now is 12:31 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search