cynicz 7 Report post Posted February 1, 2014 I need a pretty simple buying from vendor script. if anyone is interested please add my skype jhall.2011 Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted February 2, 2014 Post what you need, maybe some1 have a similar script and want to share. Quote Share this post Link to post Share on other sites
darky13 4 Report post Posted February 2, 2014 like this one ? press F4 to start spamming ctrl+LM , and F4 again to stop it #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.; #Warn ; Enable warnings to assist with detecting common errors.SendMode Input ; Recommended for new scripts due to its superior speed and reliability.SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.#MaxThreadsPerHotkey 2F4::PressKey := ! PressKey ;Toggle PressKey True/FalseLoop{ If ! PressKey Break ;If PressKey is False, stop pressing key Send ^{Click} Sleep 100 ;Delay between keypresses}Return#MaxThreadsPerHotkey 1 Quote Share this post Link to post Share on other sites
serj 1 Report post Posted May 25, 2014 Hi , thx for script work's well . i'm looking help, to have the same easy script but to use fuse on gear ... Quote Share this post Link to post Share on other sites
serj 1 Report post Posted June 5, 2014 any idea ? Having a script who can try to fuse stuff without having clik manualy Quote Share this post Link to post Share on other sites
bonebox 36 Report post Posted June 6, 2014 any idea ? Having a script who can try to fuse stuff without having clik manualy Yeah I wrote one a while back serj I'll find and upload it somewhere and pm ya Quote Share this post Link to post Share on other sites
bonebox 36 Report post Posted June 6, 2014 (edited) In fact might as well stick it here; quick and dirty but does the job. This is based on an 800x600 POE window. Put your item in the top left of your inventory and whatever orb you want to spam 20 times in the top cell of column 3. You can also put another orb in the cell below that which it will apply afterwards, so if for example you want to apply scrap/whetstones before jews/fuses. Ctrl d to just do the 20, ctrl s to do that + the second. Obviously this is just for 6 linking/socketing it'll sail right past a 5 but game stops you applying if you have 6 (I got hold of my balls and tried a fuse on a 6l all good phew ) ^d:: IfWinExist, Path of ExileWinActivate#IfWinActive, Path of Exile Loop, 20{Click, 520, 370, RightClick, 470, 370, Left} Return ^s:: IfWinExist, Path of ExileWinActivate#IfWinActive, Path of Exile Loop, 20{Click, 520, 370, RightClick, 470, 370, Left} Click, 520, 400, RightClick, 470, 400, Left Return Edited June 6, 2014 by bonebox Quote Share this post Link to post Share on other sites
serj 1 Report post Posted June 9, 2014 (edited) Thx a lot, I will try it fast and make a return /edit.. Not working Try to clik on item , but do nothing after Edited June 9, 2014 by serj Quote Share this post Link to post Share on other sites
kokosoida 21 Report post Posted June 9, 2014 In fact might as well stick it here; quick and dirty but does the job. This is based on an 800x600 POE window. Put your item in the top left of your inventory and whatever orb you want to spam 20 times in the top cell of column 3. You can also put another orb in the cell below that which it will apply afterwards, so if for example you want to apply scrap/whetstones before jews/fuses. Ctrl d to just do the 20, ctrl s to do that + the second. Obviously this is just for 6 linking/socketing it'll sail right past a 5 but game stops you applying if you have 6 (I got hold of my balls and tried a fuse on a 6l all good phew ) ^d:: IfWinExist, Path of Exile WinActivate #IfWinActive, Path of Exile Loop, 20 { Click, 520, 370, Right Click, 470, 370, Left } Return ^s:: IfWinExist, Path of Exile WinActivate #IfWinActive, Path of Exile Loop, 20 { Click, 520, 370, Right Click, 470, 370, Left } Click, 520, 400, Right Click, 470, 400, Left Return You need to add some delays Quote Share this post Link to post Share on other sites
bonebox 36 Report post Posted June 9, 2014 You need to add some delays Not on mine but yeah actually if you've not got a speedy connection you prob will. Remember you need to allow for the effects to register server side. Quote Share this post Link to post Share on other sites
kokosoida 21 Report post Posted June 9, 2014 Remember you need to allow for the effects to register server side. What do you mean? How can I do it? Quote Share this post Link to post Share on other sites
bonebox 36 Report post Posted June 9, 2014 (edited) What do you mean? How can I do it? lol add delays in the loops like you said Trial and error to get min values that work for you e.g. Loop, 20 { Sleep 200 Click, 520, 370, Right Sleep 200 Click, 470, 370, Left } Edited June 9, 2014 by bonebox Quote Share this post Link to post Share on other sites
kokosoida 21 Report post Posted June 9, 2014 (edited) lol add delays in the loops like you said Trial and error to get min values that work for you e.g. Loop, 20 { Sleep 200 Click, 520, 370, Right Sleep 200 Click, 470, 370, Left } Ah I see. I've thought there is some option in POE client for "effects to register server side" Edit: For me "Sleep 100" is enough. Edited June 9, 2014 by kokosoida Quote Share this post Link to post Share on other sites