-
PoE Crafting Helper
I got annoyed rolling past stuff I wanted so I tried to make my first tool in C#
Source - GitHub - DetectiveSquirrel/PoECrafter: PoECraft Helper
Release - Releases * DetectiveSquirrel/PoECrafter * GitHub
Do say if there are bugs, this is only tested on my machine with a stable 46 ping.
If you have a issue with it picking up the item over and over again enable Settings>Shift Click Fix
If you have an issue with it selecting the wrong window OR you are running more than 1 POE find the correct path of exile process in Process Override selector
Note: hitting the refresh button will reset it to automatic selection and refreshes your list of processes

P.S. It's against ToS
Last edited by Sithylis; 05-27-2017 at 11:28 AM.
-
Post Thanks / Like - 7 Thanks
-
Member
Wow, that's really interesting, any thoughts of alt-crafting being added?
I currently use AHK for socketing / linking
And 9/10 of the time people use vorici calculating for chromatic coloring
-
Originally Posted by
pthnmj
Wow, that's really interesting, any thoughts of alt-crafting being added?
I currently use AHK for socketing / linking
And 9/10 of the time people use vorici calculating for chromatic coloring

actual stat crafting is not on the to do list sorry.
And yes i plan on adding bench crafting too once i need it
atm its just an alternative way to not miss your damn stuff when not using the bench
-
wow, that's really cool!!!.
Also, I am actually working on alt/socket-crafting tool myself.
will release it ( with source code ) soon.
If I did not reply to you, it mean the question you are asking is stupid.
-
Post Thanks / Like - 2 Thanks
tsm-evo,
Mike2012 (2 members gave Thanks to GameHelper for this useful post)
-
Originally Posted by
zaafar
wow, that's really cool!!!.
Also, I am actually working on alt/socket-crafting tool myself.
will release it ( with source code ) soon.

want! cant wait for that.
-
Member
Originally Posted by
Sithylis
I got annoyed rolling past stuff I wanted so I tried to make my first tool in C#
Very Nice work MrSith!
Another PoE gem in my toolkit!
-
Post Thanks / Like - 1 Thanks
Sithylis (1 members gave Thanks to SlayerMandrake for this useful post)
-
Active Member
Very useful tool. Thank You very much.
-
Member
Can't wait for benching .... Just found a base I need, and god this is killing my hand crafting bench-style X)
-
Member
everytime trying to use says offline
-
Member
Originally Posted by
Shiznitttt
everytime trying to use says offline
same for me any fix?
would love it to use
-
Originally Posted by
pthnmj
Can't wait for benching .... Just found a base I need, and god this is killing my hand crafting bench-style X)
wont be adding benching, someone is already making a better crafting tool.
-
Originally Posted by
Shiznitttt
everytime trying to use says offline
Originally Posted by
PWFTrojaner
same for me any fix?
would love it to use
I search for these poe exe names so im guessing anything that isnt standalone is incorrect.
Code:
// Focus Path of Exile Window
public static bool FocusPoE()
{
Process[] objProcesses;
// Steam
objProcesses = Process.GetProcessesByName("PathOfExileSteam");
if (objProcesses.Length > 0)
{
IntPtr hWnd = IntPtr.Zero;
hWnd = objProcesses[0].MainWindowHandle;
ShowWindowAsync(new HandleRef(null, hWnd), SW_RESTORE);
SetForegroundWindow(objProcesses[0].MainWindowHandle);
return true;
}
objProcesses = Process.GetProcessesByName("PathOfExile_x64Steam");
if (objProcesses.Length > 0)
{
IntPtr hWnd = IntPtr.Zero;
hWnd = objProcesses[0].MainWindowHandle;
ShowWindowAsync(new HandleRef(null, hWnd), SW_RESTORE);
SetForegroundWindow(objProcesses[0].MainWindowHandle);
return true;
}
// Standalone
objProcesses = Process.GetProcessesByName("pathofexile_x32");
if (objProcesses.Length > 0)
{
IntPtr hWnd = IntPtr.Zero;
hWnd = objProcesses[0].MainWindowHandle;
ShowWindowAsync(new HandleRef(null, hWnd), SW_RESTORE);
SetForegroundWindow(objProcesses[0].MainWindowHandle);
return true;
}
objProcesses = Process.GetProcessesByName("pathofexile_x64");
if (objProcesses.Length > 0)
{
IntPtr hWnd = IntPtr.Zero;
hWnd = objProcesses[0].MainWindowHandle;
ShowWindowAsync(new HandleRef(null, hWnd), SW_RESTORE);
SetForegroundWindow(objProcesses[0].MainWindowHandle);
return true;
}
return false;
}
Would you please find your poe exe name and ill see if i can fix it
-
Member
Looks really awesome but cant get it to run.
If iam using the standalone 32 Version it says PoE dont run and nothink happen.
If iam using the standalone 64 Version the tool do some wired stuff click around but dont pick the orbs.
Would be cool if you can state which Version to use and which grafik settings also fullscreen/window mode to pick if it is relevant.
Thanks in advance for your help and awesome tool. Keep up the great work
-
Originally Posted by
PWFTrojaner
Looks really awesome but cant get it to run.
If iam using the standalone 32 Version it says PoE dont run and nothink happen.
If iam using the standalone 64 Version the tool do some wired stuff click around but dont pick the orbs.
Would be cool if you can state which Version to use and which grafik settings also fullscreen/window mode to pick if it is relevant.
Thanks in advance for your help and awesome tool. Keep up the great work
should probably hit 'about'
-
Active Member
For me, the tool doesn't keep pressing shit or something, making it pick the item then placing it over and over again, any solution ?
-
Post Thanks / Like - 1 Thanks
tsm-evo (1 members gave Thanks to SpyroPT for this useful post)