CoPilot Plugin for PoeHelper / PoeHud / ExileApi menu

User Tag List

Page 9 of 45 FirstFirst ... 5678910111213 ... LastLast
Results 121 to 135 of 665
  1. #121
    totalschaden's Avatar Contributor
    Reputation
    98
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/85
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fastsoab View Post
    Are you planning on updateing it?

    I was trying to look for the offsets myself but could not find them, any pointers?
    No im not into that, I just keep my Plugin UpToDate.

    CoPilot Plugin for PoeHelper / PoeHud / ExileApi
  2. #122
    bototonho7's Avatar Member
    Reputation
    1
    Join Date
    Sep 2020
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not working anymore, earlier today was working fine

  3. #123
    illone's Avatar Member
    Reputation
    2
    Join Date
    Apr 2019
    Posts
    25
    Thanks G/R
    4/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not working

  4. #124
    Soiseiseki's Avatar Member
    Reputation
    10
    Join Date
    Aug 2018
    Posts
    11
    Thanks G/R
    1/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    chat window offset is broken, to quick fix:

    in file CoPilot.cs ->> line 437
    replace if (buffs.Exists(x => x.Name == "grace_period") || GameController.IngameState.IngameUi.ChatBox.Parent.Parent.Parent.GetChildAtIndex (3).IsVisible)
    to if (buffs.Exists(x => x.Name == "grace_period"))

  5. #125
    totalschaden's Avatar Contributor
    Reputation
    98
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/85
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bototonho7 View Post
    not working anymore, earlier today was working fine
    Originally Posted by illone View Post
    Not working
    Originally Posted by Soiseiseki View Post
    chat window offset is broken, to quick fix:

    in file CoPilot.cs ->> line 437
    replace if (buffs.Exists(x => x.Name == "grace_period") || GameController.IngameState.IngameUi.ChatBox.Parent.Parent.Parent.GetChildAtIndex (3).IsVisible)
    to if (buffs.Exists(x => x.Name == "grace_period"))
    Works fine on the Fork I use, if this is not working for you the ChatBox offset is most likely broken on your fork. You can ask the Person who is maintaining the fork to have a look at it. Or change code as Soiseiseki suggested.
    Keep in mind changing the code results in Copilot possibly spamming into your chat window when you write someone.
    Last edited by totalschaden; 10-07-2020 at 11:34 AM.

  6. #126
    dlr5668's Avatar Contributor
    Reputation
    279
    Join Date
    May 2012
    Posts
    543
    Thanks G/R
    129/226
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    >Keep in mind changing the code results in Copilot possibly spamming into your chat window when you write someone.

    just bind copilot keys to insert page up page down 5head
    github.com/vadash/EZVendor

  7. #127
    Nisroc21's Avatar Member
    Reputation
    2
    Join Date
    Jun 2017
    Posts
    17
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just wondering is it me or convocation not working ? i'm using later Queuete's version of poehud

  8. #128
    Tonkan's Avatar Member
    Reputation
    12
    Join Date
    Feb 2007
    Posts
    77
    Thanks G/R
    12/11
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nisroc21 View Post
    just wondering is it me or convocation not working ? i'm using later Queuete's version of poehud
    The skill offset needed updating after the latest 3.12.2 update

  9. #129
    almightyxii's Avatar Member
    Reputation
    4
    Join Date
    Apr 2014
    Posts
    37
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone have this working Queuete's fork? Not working now for several patches.

  10. #130
    snowhawk's Avatar Contributor
    Reputation
    143
    Join Date
    Aug 2008
    Posts
    234
    Thanks G/R
    41/126
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by totalschaden View Post
    Works fine on the Fork I use, if this is not working for you the ChatBox offset is most likely broken on your fork. You can ask the Person who is maintaining the fork to have a look at it. Or change code as Soiseiseki suggested.
    Keep in mind changing the code results in Copilot possibly spamming into your chat window when you write someone.
    Code:
    GameController.IngameState.IngameUi.ChatBox.Parent.Parent.Parent.GetChildAtIndex (3).IsVisible
    In the fork you are using, is "ChatBox" the panel element that contains the lines of text in the chat history (ChatBox.GetChildAtIndex(1))? Are you traversing the parent tree to get to the input text box panel (ChatBox.Parent.Parent.Parent.GetChildAtIndex(3)) to see if its visible?
    Last edited by snowhawk; 10-08-2020 at 07:58 PM.

  11. #131
    totalschaden's Avatar Contributor
    Reputation
    98
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/85
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by snowhawk View Post
    Code:
    GameController.IngameState.IngameUi.ChatBox.Parent.Parent.Parent.GetChildAtIndex (3).IsVisible
    In the fork you are using, is "ChatBox" the panel element that contains the lines of text in the chat history (ChatBox.GetChildAtIndex(1))? Are you traversing the parent tree to get to the input text box panel (ChatBox.Parent.Parent.Parent.GetChildAtIndex(3)) to see if its visible?

    Yes, ChatBox.GetChildAtIndex(0) is the first msg of chat history.
    Yes, ChatBox.Parent.Parent.Parent.GetChildAtIndex(3) is the "Input field" where you enter the text you want to send.

  12. #132
    martti96's Avatar Member
    Reputation
    2
    Join Date
    Jul 2011
    Posts
    22
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would it be possible to add a feature for automatic use of Call of steel when at certain stacks? And by stacks I mean shards of steel. I.e use call of steel when less than 8 shards or something.
    Last edited by martti96; 11-03-2020 at 01:03 PM. Reason: I'm dumb

  13. #133
    MACROS4LIFE's Avatar Active Member
    Reputation
    47
    Join Date
    Dec 2015
    Posts
    460
    Thanks G/R
    58/45
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This plugin is incredible good. I gave it a try in the last days and works perfectly fine.

    THe only thing I am missing atm is that molten shell and other guard skills could have a life and a ES limite activation.

    For example "80% life or 80% ES" and molten shell pops up. Also, all guard skills should have this option (its a defensive skill after all). Molten shell/steelskin etc
    These codes are ready in buffutil plugin, maybe just ctrl+c and ctrl+v to copilot and add %ES threshold on it.

    But good job.
    HUD it's like cocaine, once you used, you can't forget.

  14. #134
    BossManAdrostos's Avatar Member
    Reputation
    4
    Join Date
    Mar 2018
    Posts
    40
    Thanks G/R
    32/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    having trouble with mirage archer at the moment. it was working fine until just recently. tried redownloading plugin, didnt fix.

    input keys correctly configured, and mirage archer skill is on skill bar. changing range for mirage archer trigger also doing nothing. not sure what broke for me?

  15. #135
    totalschaden's Avatar Contributor
    Reputation
    98
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/85
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BossManAdrostos View Post
    having trouble with mirage archer at the moment. it was working fine until just recently. tried redownloading plugin, didnt fix.

    input keys correctly configured, and mirage archer skill is on skill bar. changing range for mirage archer trigger also doing nothing. not sure what broke for me?
    Most likely an offset broken ? Not playing atm.

Page 9 of 45 FirstFirst ... 5678910111213 ... LastLast

Similar Threads

  1. [Release] STASHIE - a stash managing plugin for PoeHud
    By Preaches in forum PoE Bots and Programs
    Replies: 554
    Last Post: 04-10-2023, 03:11 PM
  2. [Release] CRAFTIE - A crafting plugin for PoeHUD
    By Preaches in forum PoE Bots and Programs
    Replies: 18
    Last Post: 07-16-2019, 02:10 PM
  3. [Selling] [Tool] Simple Flask Manager Plugin For PoeHUD
    By GameHelper in forum PoE Buy Sell Trade
    Replies: 115
    Last Post: 04-08-2018, 10:31 PM
  4. [Selling] Labyrinth (Lab) Chests plugin for PoEHUD
    By TehCheat in forum PoE Buy Sell Trade
    Replies: 92
    Last Post: 03-20-2018, 01:38 PM
  5. [Request] Atlas Plugin for POEHUD
    By kevel1 in forum PoE Bots and Programs
    Replies: 7
    Last Post: 03-13-2018, 03:54 AM
All times are GMT -5. The time now is 07:34 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