POE Stash Sorter menu

User Tag List

Page 17 of 18 FirstFirst ... 131415161718 LastLast
Results 241 to 255 of 260
  1. #241
    idsmoker's Avatar Member
    Reputation
    2
    Join Date
    Jul 2012
    Posts
    23
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by amakkara View Post
    What do you mean US servers? As far as I know, EU and US players play on the same servers.
    Thanks for that!

    The "temp" version that I quoted, added a server dropdown that only listed the EuServer and Garena servers, so I assumed it wouldn't be able to log into the US servers. Yet another lesson in assuming, since actually trying to login, after seeing your message, shows it is able to log into my account and show my stash tabs for both standard and the current temporary league (Breach)!

    Unfortunately, when I try to "Start Sorting", it fails to detect that PoE is running. Doesn't matter which of the 4 executables (steam/direct and x32/x64) I'm running, the sorter errors out with a "Path of Exile isn't running" message. I'm guessing the sorter is using a signature for the PoE executable that changed with one of the PoE updates that have dropped since the author of the temp sorter rolled their version.

    POE Stash Sorter
  2. Thanks Parog (1 members gave Thanks to idsmoker for this useful post)
  3. #242
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,169
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used to use this way back when but didn't have the C# knowledge then to help.

    I fixed the PoE detection to see if it would still work and it does. I'd like to add more features to it like the 4x sized stash tab but don't have any (Let me know if you'd like to contribute one and I can modify it to handle it)

    I'd like to make a small dynamic loot filter based for chaos recipe farming. It has most of the things I need already, I just need to learn the classes that are in it a bit more to put the behavior in. Basically something that would watch for pieces you need for chaos recipe and add it to the top of your item filter to highlight them.

    I also want to add sorting for items with a dimension bigger than 1x1. I need some help understanding the algorithm for this though.

    Also, if someone else wants to add a UI for the chaos recipe thing, I would love some help with that as well.
    What's a Parog?
    Looking for competitive Valorant team!

  4. Thanks tsm-evo, zaffrex (2 members gave Thanks to Parog for this useful post)
  5. #243
    Sithylis's Avatar Elite User Authenticator enabled
    Reputation
    330
    Join Date
    Jul 2016
    Posts
    561
    Thanks G/R
    124/275
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Parog View Post
    I used to use this way back when but didn't have the C# knowledge then to help.

    I fixed the PoE detection to see if it would still work and it does. I'd like to add more features to it like the 4x sized stash tab but don't have any (Let me know if you'd like to contribute one and I can modify it to handle it)

    I'd like to make a small dynamic loot filter based for chaos recipe farming. It has most of the things I need already, I just need to learn the classes that are in it a bit more to put the behavior in. Basically something that would watch for pieces you need for chaos recipe and add it to the top of your item filter to highlight them.

    I also want to add sorting for items with a dimension bigger than 1x1. I need some help understanding the algorithm for this though.

    Also, if someone else wants to add a UI for the chaos recipe thing, I would love some help with that as well.
    I would advise adding if no image -> download image -> save image -> load image to memory to reduce the downloads every time you reopen the program

  6. Thanks Parog (1 members gave Thanks to Sithylis for this useful post)
  7. #244
    arbifoolish's Avatar Member
    Reputation
    1
    Join Date
    Jan 2017
    Posts
    18
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If someone could make this work for DX11/64bit I would be forever grateful!
    At the moment Im switching over to DX9/32bit when I want to sort big tab

  8. #245
    Sithylis's Avatar Elite User Authenticator enabled
    Reputation
    330
    Join Date
    Jul 2016
    Posts
    561
    Thanks G/R
    124/275
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by arbifoolish View Post
    If someone could make this work for DX11/64bit I would be forever grateful!
    At the moment Im switching over to DX9/32bit when I want to sort big tab
    try this, ive only change the speed on moving items and what exe it looks for http://puu.sh/tvx8c/0e66f2c5a9.rar
    Last edited by Sithylis; 01-22-2017 at 04:55 AM. Reason: 32/64 bit version

  9. #246
    arbifoolish's Avatar Member
    Reputation
    1
    Join Date
    Jan 2017
    Posts
    18
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sithylis View Post
    try this, ive only change the speed on moving items and what exe it looks for http://puu.sh/tvx8c/0e66f2c5a9.rar
    Thanks for the upload but the file seems to be broken or the website that you are uploading to does not work.

  10. #247
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,169
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those of you who want to run it on 64 bit/DX11 normal or steam client and don't want to run a compiled EXE from a relatively new account, this is the function that needs to be changed in PoeStashSorterModels project. (The solution has 2 projects, make sure you open "POEStashSorter.sln" and have visual studio 2012 or later installed.) -- Not the cleanest code, but I'm not here to refactor what already works.


    Code:
            public static bool OpenPathOfExile()
            {
                const int swRestore = 9;
                var arrProcesses = Process.GetProcessesByName("PathOfExile");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExileSteam");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
    
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExile_x64");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExile_x64Steam");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                throw new Exception("Path Of Exile isn't running");
            }

    What's a Parog?
    Looking for competitive Valorant team!

  11. Thanks toadskin (1 members gave Thanks to Parog for this useful post)
  12. #248
    arbifoolish's Avatar Member
    Reputation
    1
    Join Date
    Jan 2017
    Posts
    18
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I did the changes as you wrote but I am still getting the same error. Is it because Im using a 4K display? Im running everything on admin.

  13. #249
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,169
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by arbifoolish View Post
    I did the changes as you wrote but I am still getting the same error. Is it because Im using a 4K display? Im running everything on admin.
    Don't need to run anything as admin. Did your recompile it after the changes and used the binary from the compile ( not the one you usually run ) ?

    All this does is check if there's a process named one of those 4 names. Check manually if it's there. If it is, then you did something wrong.
    What's a Parog?
    Looking for competitive Valorant team!

  14. #250
    arbifoolish's Avatar Member
    Reputation
    1
    Join Date
    Jan 2017
    Posts
    18
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get tons of error when I compile so I have to press "run last successful build.

    Same problem happens when I login after that tough.

    Imgur: The most awesome images on the Internet

  15. #251
    AsylioN's Avatar Active Member
    Reputation
    49
    Join Date
    Jun 2016
    Posts
    58
    Thanks G/R
    6/42
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Parog View Post
    Code:
            public static bool OpenPathOfExile()
            {
                const int swRestore = 9;
                var arrProcesses = Process.GetProcessesByName("PathOfExile");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExileSteam");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
    
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExile_x64");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExile_x64Steam");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                throw new Exception("Path Of Exile isn't running");
            }
    Code:
    var processNames = new List<string> { "PathOfExile", "PathOfExileSteam", "PathOfExile_x64", "PathOfExile_x64Steam" };
    var poeProc = Process.GetProcesses().FirstOrDefault(p => processNames.Contains(p.ProcessName));
    if (poeProc != null)
    {
    	currentProcess = poeProc;
    	var hWnd = currentProcess.MainWindowHandle;
    	if (IsIconic(hWnd))
    		ShowWindowAsync(hWnd, swRestore);
    	SetForegroundWindow(hWnd);
    	return true;
    }
    throw new Exception("Path Of Exile isn't running");
    Btw., you're on reddit: https://www.reddit.com/r/pathofexile...e_auto_market/

  16. Thanks Parog (1 members gave Thanks to AsylioN for this useful post)
  17. #252
    arbifoolish's Avatar Member
    Reputation
    1
    Join Date
    Jan 2017
    Posts
    18
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If someone could compile a working x64 .rar for me, I would be very grateful!

  18. #253
    Jonsbe's Avatar Active Member
    Reputation
    15
    Join Date
    Mar 2008
    Posts
    61
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Havent been able to do it neither. Gives exception on start. Parog? :/

  19. #254
    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)
    Anyone know of a tool like this or a updated version of this?

  20. #255
    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)
    This works to get past the error about POE not running however, when running, POE sorter minimizes and the mouse does not move at all.

    When I bring POE StashSorter to the front again suddenly the mouse jumps to the POE screen and moves around but does not actually click on anything until it is done with the Sorting algorithm.

    No items actually get moved.

    I am running PathOfExile_x64 on windows 10

    Any ideas?

    Originally Posted by Parog View Post
    For those of you who want to run it on 64 bit/DX11 normal or steam client and don't want to run a compiled EXE from a relatively new account, this is the function that needs to be changed in PoeStashSorterModels project. (The solution has 2 projects, make sure you open "POEStashSorter.sln" and have visual studio 2012 or later installed.) -- Not the cleanest code, but I'm not here to refactor what already works.


    Code:
            public static bool OpenPathOfExile()
            {
                const int swRestore = 9;
                var arrProcesses = Process.GetProcessesByName("PathOfExile");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExileSteam");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
    
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExile_x64");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                arrProcesses = Process.GetProcessesByName("PathOfExile_x64Steam");
                if (arrProcesses.Length > 0)
                {
                    currentProcess = arrProcesses[0];
                    var hWnd = arrProcesses[0].MainWindowHandle;
                    if (IsIconic(hWnd))
                        ShowWindowAsync(hWnd, swRestore);
                    SetForegroundWindow(hWnd);
                    return true;
                }
                throw new Exception("Path Of Exile isn't running");
            }


Page 17 of 18 FirstFirst ... 131415161718 LastLast

Similar Threads

  1. [Buying] Buy PoE Account - Stash / MTX Cosmetics
    By Valdurian in forum PoE Buy Sell Trade
    Replies: 0
    Last Post: 02-14-2016, 10:28 AM
  2. [Selling] 3y old POE Account - premium stash tabs, characters - original owner + email control
    By miyamotomusash1 in forum PoE Buy Sell Trade
    Replies: 0
    Last Post: 09-04-2015, 08:30 AM
  3. [Selling] Poe Standard account, 5 exile, 8 level masters, 100 ex in stash...
    By ins3Ar in forum PoE Buy Sell Trade
    Replies: 1
    Last Post: 06-18-2015, 10:27 AM
  4. [Selling] PoE Standard exalted orbs - $1 each!! 1000+ on my stash
    By Demonyte in forum PoE Buy Sell Trade
    Replies: 6
    Last Post: 10-13-2014, 05:35 PM
  5. Replies: 8
    Last Post: 05-22-2013, 09:34 PM
All times are GMT -5. The time now is 10:12 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