STASHIE - a stash managing plugin for PoeHud menu

User Tag List

Page 25 of 37 FirstFirst ... 212223242526272829 ... LastLast
Results 361 to 375 of 555
  1. #361
    Anderson11's Avatar Contributor
    Reputation
    86
    Join Date
    Mar 2017
    Posts
    62
    Thanks G/R
    27/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fixed for the current league: Releases . nymann/Stashie . GitHub

    STASHIE - a stash managing plugin for PoeHud
  2. Thanks boterang (1 members gave Thanks to Anderson11 for this useful post)
  3. #362
    marekjemiolak's Avatar Active Member
    Reputation
    23
    Join Date
    Feb 2017
    Posts
    134
    Thanks G/R
    6/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now we can turn super efficient mode guys, awesome work THANK YOU !
    Sometimes for some reason my character decide to run out of stash range when I hit stashie button but 'block user input' seems to solve this problem.

    /edit
    Unfortunately 'block user input' thingy does not fix the problem.
    Screenshot - 6448e16e6d34a96705f68c25941ed47f - Gyazo
    Last edited by marekjemiolak; 03-17-2019 at 05:21 AM.

  4. #363
    member_zero's Avatar Member
    Reputation
    1
    Join Date
    Mar 2018
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What must i do with Stashie.dll and Stashie.pdb?

  5. #364
    Anderson11's Avatar Contributor
    Reputation
    86
    Join Date
    Mar 2017
    Posts
    62
    Thanks G/R
    27/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by member_zero View Post
    What must i do with Stashie.dll and Stashie.pdb?
    Paste it into PoEHUD/plugins/Stashie folder. If you don't have one, create it.

  6. #365
    mycontributiontothisscam's Avatar Member
    Reputation
    9
    Join Date
    Jan 2019
    Posts
    13
    Thanks G/R
    2/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Anderson11 View Post
    Fixed for the current league: Releases . nymann/Stashie . GitHub
    I noticed that you uncommented out some debug code in StashieCore.cs (around line 397) to the effect that it draw dark red rectangles when the stash menu is visible - was this intended and, if so, how does one disable it within the client?
    Thanks.

  7. #366
    theMickey's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stashie is giving me errors as soon as it has to use the tab dropdown to navigate between tabs. Error is something like:"Error in GoToTab <tabname>: Index out of range ...". Is this a known bug/error or is it just me? Thanks a lot in advance!

  8. #367
    marekjemiolak's Avatar Active Member
    Reputation
    23
    Join Date
    Feb 2017
    Posts
    134
    Thanks G/R
    6/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stashie is buggy atm, sometimes it doesnt switch tabs at all, sometimes it stops on quad tabs, sometimes my character just go away for no reason from stash.

  9. #368
    theMickey's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not really sure this is Stashie's fault, because I get the exact same error with other plugins which use the tab dropdown list to switch tabs. So maybe this is a general PoEHUD bug? I got Stashie to work once today, and - without changing anything -- the next time it stopped working again with the error I mentioned above.

  10. #369
    PreFlasH's Avatar Member
    Reputation
    2
    Join Date
    Dec 2018
    Posts
    72
    Thanks G/R
    54/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As I noted in my example, the plugin works crookedly for me only when I assign to put some thing in a regular tab, there are no problems with premium tabs.

  11. #370
    Illium's Avatar Active Member
    Reputation
    19
    Join Date
    Jan 2018
    Posts
    43
    Thanks G/R
    14/17
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi.

    After enabling plugin, my stash tab list looks like this. But plugin work. How can i fix it?
    Снимок экрана (2).png

  12. #371
    mycontributiontothisscam's Avatar Member
    Reputation
    9
    Join Date
    Jan 2019
    Posts
    13
    Thanks G/R
    2/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Illium View Post
    Hi.

    After enabling plugin, my stash tab list looks like this. But plugin work. How can i fix it?
    Снимок экрана (2).png
    As I kind of alluded to in an earlier post, some debug code was left inadvertently left in one of the source files of the last change by the author (presumably) - StashieCore.cs lines 393-408.

    //Debug
    var dropdownMenu = _ingameState.ServerData.StashPanel.ViewAllStashPanel;
    if (dropdownMenu.IsVisible)
    {
    for (var index = 0; index < dropdownMenu.Children.Count; index++)
    {
    var dropdown = dropdownMenu.Children[index];
    for (var i = 0; i < dropdown.Children.Count; i++)
    {
    var child = dropdown.Children[i];
    Graphics.DrawBox(child.GetClientRect(), Color.DarkRed);
    var pos2 = new Vector2(child.GetClientRect().Center.X, child.GetClientRect().Top);
    Graphics.DrawText($"[{index}][{i}]", 20, pos2, Color.White, FontDrawFlags.Center);
    }
    }
    }


    I merely commented them out and rebuilt the dll (and pdb optionally) for my local build...I'd upload them but I don't think I'm allowed.

    If you're able to build dlls, it's a very simple change that corrects the issue.

    Edit: I take that back, I was able to upload a rar of the files (but not the dll or pdb directly).
    Attached Files Attached Files
    Last edited by mycontributiontothisscam; 03-27-2019 at 11:20 PM. Reason: Added rar instead of dll and pdb.

  13. Thanks soulreaper259, Illium, Kronix, Dant121 (4 members gave Thanks to mycontributiontothisscam for this useful post)
  14. #372
    m03bius's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    18
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mycontributiontothisscam View Post
    As I kind of alluded to in an earlier post, some debug code was left inadvertently left in one of the source files of the last change by the author (presumably) - StashieCore.cs lines 393-408.

    //Debug
    var dropdownMenu = _ingameState.ServerData.StashPanel.ViewAllStashPanel;
    if (dropdownMenu.IsVisible)
    {
    for (var index = 0; index < dropdownMenu.Children.Count; index++)
    {
    var dropdown = dropdownMenu.Children[index];
    for (var i = 0; i < dropdown.Children.Count; i++)
    {
    var child = dropdown.Children[i];
    Graphics.DrawBox(child.GetClientRect(), Color.DarkRed);
    var pos2 = new Vector2(child.GetClientRect().Center.X, child.GetClientRect().Top);
    Graphics.DrawText($"[{index}][{i}]", 20, pos2, Color.White, FontDrawFlags.Center);
    }
    }
    }


    I merely commented them out and rebuilt the dll (and pdb optionally) for my local build...I'd upload them but I don't think I'm allowed.

    If you're able to build dlls, it's a very simple change that corrects the issue.

    Edit: I take that back, I was able to upload a rar of the files (but not the dll or pdb directly).

    Thanks got it to work thanks to your upload, how did you recompile stashie tho ? I get a ton of errors and didn't find any smart config to make it go away

  15. #373
    mycontributiontothisscam's Avatar Member
    Reputation
    9
    Join Date
    Jan 2019
    Posts
    13
    Thanks G/R
    2/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by m03bius View Post
    Thanks got it to work thanks to your upload, how did you recompile stashie tho ? I get a ton of errors and didn't find any smart config to make it go away
    Partial answer is "not much"...but you may be having trouble with a recent change (about 4 hours ago) with PoeHud.

    I have PoeHud checked out at (about 11 hours ago):
    git checkout -f cb4019c052b622bfcee8f1bf19d2f1ae919fc502
    rebuild ExileHUD
    rebuild Stashie

  16. #374
    Baki667's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    50
    Thanks G/R
    11/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this does not work anymore since the patch mycontributiontothisscam mentioned?

  17. #375
    Cthulhoo's Avatar Member
    Reputation
    3
    Join Date
    Sep 2013
    Posts
    82
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does not switch tabs (there are premium tabs) =\

Page 25 of 37 FirstFirst ... 212223242526272829 ... LastLast

Similar Threads

  1. Malu05's Terrain Management UDF (For ingame Terrain Editing)
    By UnknOwned in forum WoW Memory Editing
    Replies: 37
    Last Post: 03-10-2014, 10:38 PM
  2. [Plugin][Honorbuddy] Project Sn0wbuddy - A Sn0wball plugin for Honorbuddy.
    By Thunderofnl in forum WoW Bot Maps And Profiles
    Replies: 6
    Last Post: 05-16-2012, 04:27 PM
  3. [Bot] Archaeology Plugin For Honorbuddy
    By Aicd in forum World of Warcraft Bots and Programs
    Replies: 82
    Last Post: 01-10-2011, 04:48 PM
  4. Pattern verifier plugin for IDA
    By ostapus in forum WoW Memory Editing
    Replies: 7
    Last Post: 11-11-2009, 05:55 PM
  5. [Plugin whit tut] A little plugin for Photoshop i just found.[Big pic]
    By Lord-kapser in forum Art & Graphic Design
    Replies: 3
    Last Post: 12-03-2007, 04:15 PM
All times are GMT -5. The time now is 10:05 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