PoEapikit for Ultimatum League (3.14) menu

User Tag List

Page 6 of 11 FirstFirst ... 2345678910 ... LastLast
Results 76 to 90 of 164
  1. #76
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nsitabasi90 View Post
    thanks, for some reason after setting this, my autoflasks only works on the hp flask, and doesnt activate any of my utiility flasks when i click the attack skill button which i set to RButton.
    and on the global defendskillbuff it worked before but now also dont work.

    any idea why? i even redownloaded the originnal setting.

    here are the setting
    Code:
    ; Flasks
    global LifeThreshold := 90
    global ManaThreshold := 30
    global ChargesPerUseLimit := 30
    global MonsterThreshold := 4
    global AlwaysRunning := true
    Number of nearby monsters depends on KillCounter plugin, you can set MonsterThreshold to 0.

    PoEapikit for Ultimatum League (3.14)
  2. #77
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by magma256 View Post
    how to close auto level up gems when type auto pick key?
    Originally Posted by RebrandSoft View Post
    So in this case can I make it to pick up only the currencies? Also, can I make the level-up gems on a custom button?
    In PoEapikit.ahk:

    Code:
    s::
        ptask.levelupGems()
    return
    
    
    AutoPickup:
        ; ptask.levelupGems()
        if (ptask.InMap && Not ptask.hasBuff("flask_utility_sprint"))
            SendInput, {5}
        ptask.beginPickup()
    return
    For example, red codes defined a new hotkey 's' for leveling up gems.

    In Settings.ahk:
    Code:
                            , "AutoPickup"    : { "enabled" : true, "range" : 50
                                                , "ignoreChests"      : false
                                                , "strictLevel"       : 3
                                                , "genericItemFilter" : "Incubator|Quicksilver|Basalt|Quartz|(Divine|Eternal) Life"
                                                , "rareItemFilter"    : "Jewel|Amulet|Ring|Belt" }
    Set 'strictLevel' to 3 will only pickup currency, maps, quest items.

  3. #78
    ancekuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there anyway to set the autopick up for currency only? I don't want to pick up random rares

  4. #79
    RebrandSoft's Avatar Member
    Reputation
    8
    Join Date
    Mar 2020
    Posts
    79
    Thanks G/R
    14/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ancekuk View Post
    Is there anyway to set the autopick up for currency only? I don't want to pick up random rares
    , "AutoPickup" : { "enabled" : true, "range" : 50
    , "ignoreChests" : false
    , "strictLevel" : 3
    , "genericItemFilter" : "Incubator|Quicksilver|Basalt|Quartz|(Divine|Eternal) Life"
    , "rareItemFilter" : "Jewel|Amulet|Ring|Belt" }

    Change strictLevel from 0 to 3 in settings.ahk

  5. #80
    n0br3's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    4
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RebrandSoft View Post
    , "AutoPickup" : { "enabled" : true, "range" : 50
    , "ignoreChests" : false
    , "strictLevel" : 3
    , "genericItemFilter" : "Incubator|Quicksilver|Basalt|Quartz|(Divine|Eternal) Life"
    , "rareItemFilter" : "Jewel|Amulet|Ring|Belt" }

    Change strictLevel from 0 to 3 in settings.ahk
    Nice work man! I cant seem to find the #MaxHotKeysPerInterval on "help" file. As im looting so many currency on the map, i keep getting spammed by this pop up. Is there a way to disable it? ty!

  6. #81
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n0br3 View Post
    Nice work man! I cant seem to find the #MaxHotKeysPerInterval on "help" file. As im looting so many currency on the map, i keep getting spammed by this pop up. Is there a way to disable it? ty!
    Generally you received the message about 'MaxHotKeysPerInterval' when you triggered too many hotkeys. Could you tell me which hotkeys were holding when this message appeared.

  7. #82
    n0br3's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    4
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by conajer View Post
    Generally you received the message about 'MaxHotKeysPerInterval' when you triggered too many hotkeys. Could you tell me which hotkeys were holding when this message appeared.
    i was pressing the "a" key for looting. i realised i needed to press it once! no errors now. Is there a way to change the hotkeys? im having trouble with other scripts that uses the same key combo. ty

  8. #83
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n0br3 View Post
    i was pressing the "a" key for looting. i realised i needed to press it once! no errors now. Is there a way to change the hotkeys? im having trouble with other scripts that uses the same key combo. ty
    In Settings.ahk:

    Code:
    global AutoPickupKey := "a"

  9. Thanks n0br3 (1 members gave Thanks to conajer for this useful post)
  10. #84
    n0br3's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    4
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by conajer View Post
    In Settings.ahk:

    Code:
    global AutoPickupKey := "a"
    i mean the global hotkeys, like ctrl+r. as i use ctrl+r to portal skill.

  11. #85
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n0br3 View Post
    i mean the global hotkeys, like ctrl+r. as i use ctrl+r to portal skill.
    Code:
    #IfWinActive
    
    ^r::
    Reload() {
        Reload
    }
    
    ^q::
    ExitApp() {
        ExitApp
    }
    You can change the hotkey or just delete it.

  12. Thanks n0br3 (1 members gave Thanks to conajer for this useful post)
  13. #86
    n0br3's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    4
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by conajer View Post
    Code:
    #IfWinActive
    
    ^r::
    Reload() {
        Reload
    }
    
    ^q::
    ExitApp() {
        ExitApp
    }
    You can change the hotkey or just delete it.
    Is there any chance to get banned only using the autopickup? how does it work? it only reads data from client or it modifies too?

  14. #87
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n0br3 View Post
    Is there any chance to get banned only using the autopickup? how does it work? it only reads data from client or it modifies too?
    Any scan tools could be banned if GGG want, running PoE as a limited user could lower the risk.
    Only the feature 'Maphack' modified the client data, so it won't work if running PoE as a limited user.

  15. #88
    ancekuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'd like to report that Auto Flare does not work, at all.

  16. #89
    conajer's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2020
    Posts
    272
    Thanks G/R
    1/146
    Trade Feedback
    0 (0%)
    Mentioned
    12 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ancekuk View Post
    I'd like to report that Auto Flare does not work, at all.
    Yeah, I still don't know how to get the stack of the 'Darkness' debuff.
    Thanks any way.

  17. #90
    JospehZaky's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tried to message u on private but it you have your inbox full
    anyways :
    PoEapikit for Ultimatum League


    after changing the settings to the stash name that have the cards aka 9 in my case Kinda not getting the cards out but if u got them out yourself it will process to navali, is it a bug or i have something broken in my end .

    bandicam 2021-05-20 05-22-00-100

Page 6 of 11 FirstFirst ... 2345678910 ... LastLast

Similar Threads

  1. [Release] PoEapikit for Ritual League (3.13)
    By conajer in forum PoE Bots and Programs
    Replies: 120
    Last Post: 03-14-2022, 02:14 AM
  2. [Trading] EU HS beta for euw League of Legends Stuff (account, rp, skins...) Skype inside
    By PizzaNinja in forum Hearthstone Buy Sell Trade
    Replies: 0
    Last Post: 10-23-2013, 01:38 PM
  3. A vouch for a League of Legends boosting site.
    By Broness in forum League of Legends
    Replies: 3
    Last Post: 03-25-2013, 12:05 AM
  4. Looking for a League of Legends bot
    By dinnerrollofdoom in forum MMO Exploits|Hacks
    Replies: 1
    Last Post: 11-21-2012, 03:20 AM
  5. [Selling] Boosting Low ELO Accounts for CHEAP! [ League of Legends]
    By itzjakelolz in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 05-06-2012, 10:51 PM
All times are GMT -5. The time now is 12:57 PM. 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