Jump to content

username1001101

Beta Tester
  • Content Count

    365
  • Joined

  • Last visited

Everything posted by username1001101

  1. username1001101

    [Auras] Arctic Armor

    AA is not an aura
  2. username1001101

    freezing pulse problem with the combat config

    experiencing the same problem. Wanted to setup ice spear to pull mobs and then on close range use FP.. but it just keeps using FP.
  3. username1001101

    Combat Windows too big

    yeah, new gui fixed it thx
  4. username1001101

    Which VM software?

    Actually, I did get it to run on latest vbox but it was horribly slow...
  5. username1001101

    Bandit Respec coming :)

    I just read: http://www.pathofexile.com/forum/view-thread/562985
  6. username1001101

    Cast On Damage Taken

    Just curious on the gem: when it casts those things does it use mana?
  7. username1001101

    Suggestions

    Just set the quality for gems to 1 or higher.
  8. username1001101

    Combat Windows too big

    yet it doesn't work in the combat screen.
  9. username1001101

    VMware?

    just minimize the vm to the system task tray.
  10. username1001101

    Path of exile to be runned on steam?

    (wrong thread)
  11. username1001101

    Combat Windows too big

    yet it does run it fine and now, you can't scroll...
  12. username1001101

    Combat Windows too big

    Hi there On my old 12" notebook the combat window is too big... I can't see/select the save button.
  13. I just made another improvement however I can't test it right now. Basically I want to randomize the timeout tp time. NOTICE: Portal Gem is set to middle mouse button. ; Define below what keys represent your lower skill bar (from left to right, 5 keys) ; Comment out keys that don't have an aura or an aura you don't wish to use by adding a ; in front of the line ; Set the key with the portal gem is set to the middle button ;aHK1 = q aHK2 = w aHK3 = e aHK4 = r aHK5 = t ; Set the timeout values in milliseconds after which a portal will be casted automatically. The effective casting time is randomized portalTimeoutMin = 240000 portalTimeoutMax = 360000 ; Set to 'y' if you want to cast a portal and use it when a zone entrance comes into range zoneEntrance = y ; ; BELOW BE DRAGONS ; getCurTimeout(portalTimeoutMin, portalTimeoutMax) { global portalTimeoutMin Random, portalTimeout, %portalTimeoutMin%, %portalTimeoutMax% return %portalTimeout% } ; Load Direct3DWindow class WinActivate, ahk_class Direct3DWindow Class ; Function to check if a variable exists varExist(ByRef v) { ; Requires 1.0.46+ return &v = &n ? 0 : v = "" ? 2 : 1 } #Persistent portalTimeout := getCurTimeout(portalTimeoutMin, portalTimeoutMax) SetTimer, castAuras, 100 SetTimer, usePortal, %portalTimeout% return usePortal: ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { Send {F12} Sleep 500 MouseClick, Middle,, Sleep 4000 Mousemove 400, 300 Sleep 100 Click Sleep 5000 Send {F12} Sleep 10000 } return castAuras: ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { if varExist("aHK1") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 526, 599, 549, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK1%} ; } } if varExist("aHK2") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 556, 599, 580, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK2%} ; } } if varExist("aHK3") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 587, 599, 611, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK3%} ; } } if varExist("aHK4") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 618, 599, 641, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK4%} ; } } if varExist("aHK5") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 649, 599, 672, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK5%} ; } } if (zoneEntrance = "y") { Imagesearch,,, 650, 20, 800, 180, *50 *TransBlack portal.png If Errorlevel = 0 { SetTimer, usePortal, Off Send {F12} Sleep 500 MouseClick, Middle,, Sleep 4000 Mousemove 400, 300 Sleep 100 Click Sleep 5000 Send {F12} ; after going through the portal, make a 30 second timeout so bot can do stashing and stuff... adjust number to your desired result Sleep 30000 portalTimeout := getCurTimeout(portalTimeoutMin, portalTimeoutMax) SetTimer, usePortal, %portalTimeout% } } }
  14. well, never knew what it was for... in the original autoflasker script on ownedcore they just say to use the 32bit version
  15. install autohotkey as 32bit/unicode..... this is important when you run a 64bit os.... use "custom" to install and select there accordingly.
  16. Just made another update to the script. Should be working now... I hope.
  17. since they only do one action upon according keypress they're legit.... oos and itemlevel is useful.... remaining not anymore since there's no clear-all challenge anymore
  18. username1001101

    Shift-Attack

    other skills probably also profit from it... thx for the consideration
  19. username1001101

    Shift-Attack

    I just noticed that on skills like lightning strike the attack distance doesn't work... well, it works but if you don't keep Shift pressed then the bot will run up to the mob and then actually do its attack. There should be some kind of option to use Shift when mobs are in attack range.
  20. See here: viewtopic.php?f=29&t=795&p=5264#p5264
  21. username1001101

    New section "User's script for POE and/or Exiled Bot"

    I just thought it's a lot easier to (re-)find useful scripts and stuff if they're in a common place and not cluttered all over
  22. The PoE forum has this little useful AHK script posted: ; Path Of Exile Sync Script 1.0 #IfWinActive Path of Exile SendMode Input { F3:: Send {enter} Sleep 20 Send {Alt} /oos {enter} Sleep 20 Return F2:: Send {enter} Sleep 20 Send {Alt} /itemlevel {enter} Sleep 20 Return F4:: Send {enter} Sleep 20 Send {Alt} /remaining {enter} Sleep 20 Return } http://www.pathofexile.com/forum/view-t ... 5#p4280279
  23. So, I finally did make quite a few changes. Now you have a global timer that you can set after which the portal is cast and the toon goes through it. Be sure to make a high enough value because it's not safe to try to cast a portal inside bunch of mobs that hit on you. Also since you cast portals to go back to town, the auras won't be activated. So I used the previous aura script to cast auras with it. They don't need to be cast by the bot right now. It does image search on the auras. You can easily configure what auras you want to cast and on which key they lay. NOTICE: If you use Eldritch Battery or something to boost your mana (with determination aura for example) then put that on the first aura key that you want to use. Also, I cut down the previous portal image to a 2x2 px image that is then being looked on in the minimap. I tested it in City of Sarn and The Forest and Mud Flats and it found the entrance properly. If it finds the entrance, it'll cast a portal and transport back to town. So this part is useful for Zones where you start at one point and move your way accross to another one where the entrance is at the opposite end. In the docks for example it isn't useful and you'll be better off setting zoneEntrance to 'n'. That way it won't cast a portal when a zone entrance appears. Then just limit the run time to something you desire and let the bot explore. Anyway, here's the current code: ; Define below what keys represent your lower skill bar (from left to right, 5 keys) ; Comment out keys that don't have an aura or an aura you don't wish to use by adding a ; in front of the line ; Set the key with the portal gem is set to the middle button ;aHK1 = q aHK2 = w aHK3 = e aHK4 = r aHK5 = t ; Set the timeout in milliseconds after which a portal will be casted automatically portalTimeout = 240000 ; Set to 'y' if you want to cast a portal and use it when a zone entrance comes into range zoneEntrance = y ; ; BELOW BE DRAGONS ; ; Load Direct3DWindow class WinActivate, ahk_class Direct3DWindow Class ; Function to check if a variable exists varExist(ByRef v) { ; Requires 1.0.46+ return &v = &n ? 0 : v = "" ? 2 : 1 } #Persistent SetTimer, castAuras, 100 SetTimer, usePortal, %portalTimeout% return usePortal: ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { Send {F12} Sleep 500 MouseClick, Middle,, Sleep 4000 Mousemove 400, 300 Sleep 100 Click Sleep 5000 Send {F12} Sleep 10000 } return castAuras: ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { if varExist("aHK1") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 526, 599, 549, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK1%} ; } } if varExist("aHK2") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 556, 599, 580, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK2%} ; } } if varExist("aHK3") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 587, 599, 611, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK3%} ; } } if varExist("aHK4") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 618, 599, 641, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK4%} ; } } if varExist("aHK5") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 649, 599, 672, 622, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK5%} ; } } if (zoneEntrance = "y") { Imagesearch,,, 650, 20, 800, 180, *50 *TransBlack portal.png If Errorlevel = 0 { SetTimer, usePortal, Off Send {F12} Sleep 500 MouseClick, Middle,, Sleep 4000 Mousemove 400, 300 Sleep 100 Click Sleep 5000 Send {F12} ; after going through the portal, make a 30 second timeout so bot can do stashing and stuff... adjust number to your desired result Sleep 30000 SetTimer, usePortal, %portalTimeout% } } } return Don't forget to download the attached portal.png image and put it into the same folder as your ahk script.
  24. actually, one of the older aura scripts (changes by me) could be of use: 1) deactivate auras in exiledbot 2) let autohotkey handle auras by implementing this in the portal script viewtopic.php?f=4&t=224&start=20#p1018 That way auras stay up and won't have to be re-enabled once they are enabled...
×
×
  • Create New...