CoPilot Plugin for PoeHelper / PoeHud / ExileApi menu

User Tag List

Page 37 of 45 FirstFirst ... 333435363738394041 ... LastLast
Results 541 to 555 of 670
  1. #541
    fearsome67's Avatar Contributor
    Reputation
    83
    Join Date
    Mar 2018
    Posts
    70
    Thanks G/R
    16/78
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by roska View Post
    automatic blessing aint working for me. can it be that it doesnt support vaal gems?
    Tested on Vaal Grace. Everything is working fine, as it supposed to: main aura linked with Divine Blessing (Grace) is used within it's trigger (hp, es, range to mobs). Vaal Grace is not intended to be triggered in any circumstances.
    Check your CoPilot - Aura Blessing options, or provide more step-by-step information.
    Last edited by fearsome67; 04-12-2023 at 07:12 AM.

    CoPilot Plugin for PoeHelper / PoeHud / ExileApi
  2. #542
    JxDm's Avatar Member
    Reputation
    1
    Join Date
    Apr 2023
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by totalschaden View Post
    Havent looked into the Follower since I added it, but there is a pasting problem with the input field, i recommend you set the leader name in the config file directly and never touch the input field again
    Sorry for the stupid followup question, C# is basically the one language I've never touched so I'm a bit of an idiot. Do you mean I should modify this segment?

    private Entity GetFollowingTarget()
    {
    try
    {
    return CoPilot.Instance.GameController.Entities.First(x => x?.Type == EntityType.Player &&
    string.Equals(x.GetComponent<Player>()?.PlayerName?.ToLower(), CoPilot.Instance.Settings.autoPilotLeader.Value.ToLower()));
    That seems to be the line that is being called to reference a following target, so I assume it would instead need to reference a hardcoded player entity?

  3. #543
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JxDm View Post
    Sorry for the stupid followup question, C# is basically the one language I've never touched so I'm a bit of an idiot. Do you mean I should modify this segment?



    That seems to be the line that is being called to reference a following target, so I assume it would instead need to reference a hardcoded player entity?
    You could do that, writing it in the settings file should be fine though.
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  4. #544
    JxDm's Avatar Member
    Reputation
    1
    Join Date
    Apr 2023
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by totalschaden View Post
    You could do that, writing it in the settings file should be fine though.
    Sorry to be a real idiot here, but when you say the settings file, do you mean changing this line in CoPilotSettings?

    public TextNode autoPilotLeader = new TextNode("IntendedLeaderNameHere");
    Because unfortunately that doesn't seem to do anything. But, I imagine I'm doing something wrong just basically prefilling the TextNode. Thanks for your time man, I really appreciate it.

  5. #545
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JxDm View Post
    Sorry to be a real idiot here, but when you say the settings file, do you mean changing this line in CoPilotSettings?



    Because unfortunately that doesn't seem to do anything. But, I imagine I'm doing something wrong just basically prefilling the TextNode. Thanks for your time man, I really appreciate it.
    YourHudFolder\config\global\CoPilot_settings.json

    look for"autoPilotLeader": {
    "Value": ""
    },

    replace and put leaderName in the " "

    "autoPilotLeader": {
    "Value": "LeaderNameGoesHere"
    },
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  6. #546
    JxDm's Avatar Member
    Reputation
    1
    Join Date
    Apr 2023
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by totalschaden View Post
    YourHudFolder\config\global\CoPilot_settings.json

    look for"autoPilotLeader": {
    "Value": ""
    },

    replace and put leaderName in the " "

    "autoPilotLeader": {
    "Value": "LeaderNameGoesHere"
    },
    I tried that, it worked for one zone, and then mysteriously stopped working entirely. I even tried a full redownload/reinstall of both PoEHelper and CoPilot and couldn't get it working again. It just keeps saying Leader is null in the overlay at this point. Running launcher as admin or not doesn't seem to impact it, and I'm not noticing any compilation errors in the logs. I don't suppose you might have any additional recommendations from here?

    Thanks again for your help.

  7. #547
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JxDm View Post
    I tried that, it worked for one zone, and then mysteriously stopped working entirely. I even tried a full redownload/reinstall of both PoEHelper and CoPilot and couldn't get it working again. It just keeps saying Leader is null in the overlay at this point. Running launcher as admin or not doesn't seem to impact it, and I'm not noticing any compilation errors in the logs. I don't suppose you might have any additional recommendations from here?

    Thanks again for your help.
    I made some Improvements and it seems to work flawless here so far, only the TP Button is not working which is related to HUD atm. Will push once i can test Tp Button
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  8. #548
    JxDm's Avatar Member
    Reputation
    1
    Join Date
    Apr 2023
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by totalschaden View Post
    I made some Improvements and it seems to work flawless here so far, only the TP Button is not working which is related to HUD atm. Will push once i can test Tp Button
    You're a champion, thanks man, I really appreciate all your help.

  9. #549
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JxDm View Post
    You're a champion, thanks man, I really appreciate all your help.
    Pushed new Code, it will use TP more often too, but the PartyElements seem currently broken(including TP button), maybe a dev will update soon.
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  10. #550
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Pushed Cleanup & Improvements for Blessing. No longer need to select Blessing in Settings, will reapply before it runs out.
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  11. #551
    Nezuko's Avatar Member
    Reputation
    1
    Join Date
    Feb 2022
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can't seem to get AutoPilot to work "Leader: Null" changed leaders name in game in CoPilot_settings.json. Tried case sensitivity lower case and upper, also tried running as administrator, and even tried using account name for "Leader Name"

  12. #552
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nezuko View Post
    Can't seem to get AutoPilot to work "Leader: Null" changed leaders name in game in CoPilot_settings.json. Tried case sensitivity lower case and upper, also tried running as administrator, and even tried using account name for "Leader Name"
    latest version worked flawless for me, just use the input field that should work now
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  13. #553
    Nezuko's Avatar Member
    Reputation
    1
    Join Date
    Feb 2022
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Input field still throws "Leader Null" i tried case sensitive and non case sensitive. Can't seem to get it to pick up leader name.


    Also im using PoeHelper 3.21 "Hotfix" if that helps
    Last edited by Nezuko; 04-15-2023 at 05:56 AM.

  14. #554
    totalschaden's Avatar Contributor
    Reputation
    104
    Join Date
    May 2008
    Posts
    210
    Thanks G/R
    0/86
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nezuko View Post
    Input field still throws "Leader Null" i tried case sensitive and non case sensitive. Can't seem to get it to pick up leader name.


    Also im using PoeHelper 3.21 "Hotfix" if that helps
    Not sure what u mean with Hotfix, im using latest Discord version, havent tried on the public one
    Amazon Wishlist - Gimmi Snacks
    https://www.amazon.de/hz/wishlist/ls/MZ543BDBC6PJ

  15. #555
    pwndbymeh's Avatar Active Member
    Reputation
    44
    Join Date
    May 2010
    Posts
    194
    Thanks G/R
    20/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @totalschaden
    first of all, thank you for the updates!
    quick question, any chance of getting the auto curse to work for other curses aside from punishment?

Page 37 of 45 FirstFirst ... 333435363738394041 ... 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: 114
    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 03:09 AM. 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