Jump to content

PleXy

Elite+
  • Content Count

    14
  • Joined

  • Last visited

Community Reputation

0 Neutral

About PleXy

  • Rank
    Elite User
  1. Heya! Unfortunately the auras doesn't work after the latest update. It just spams them 24/7. Thanks
  2. PleXy

    Level up Gems?

    Until this feature is available in EBG, try this script in AutoHotKey. Loop { ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 764, 194, 781, 211, 0x000000, 0, Fast RGB If ErrorLevel = 0 Click, %FoundX%, %FoundY% Left, 1 Sleep, 10000 } }
  3. Great stuff man, job well done! I'll use this right away. One note: For me it didnt work with any aura on aHK5, so I changed my coordinates to 649, 597, 679, 625 to make it work.
  4. Can both of you paste your script here please?
  5. Hey, I'd like an option where you can choose to always be on dnd mode. It's possible to do manually (/dnd) but since the bot logs out quite often it would be great if the bot can do it automatically. Thanks!
  6. Nope, doesn't have anything to do with the GUI
  7. One problem I found: It seems like the coordinates can't find any aura that's in the Q slot I'm not home atm so I can't make new coordinates to make it work on this slot. Also, it could be that you don't have the same colors as I do, might be different depending on your quality settings etc... So if doesn't work even if you try on any other slot than Q, use Autohotkey window spy to get another color code. And please, if it's not working, tell me which slot and which aura you're using. Also post the script to make things clear.
  8. You probably haven't changed the "Send {w} ;" to the key you use for Vitality.Or if you're using multiple auras and u have the same "Send {w} ;" on both. Can you re-check?
  9. Thanks! No problems, glad I could help. Great to hear!!
  10. Alright, I edited the first post. Should work with all auras. Tell me if there's anything thats not working properly. Enjoy!
  11. Yeap! I'm working on that right now
  12. See the first post! Please remove this thread.
  13. Hey guys, I came up with an idea to script a "quickfix" on auras, which I believe many wants to get going. This script looks for the color of a non-activated skill, and if it's inactive, it presses the wanted button. At first, you need the program AutoHotKey, then you need to edit the script, see the instruction within the code. I hope this will be useful for you as well. I'm also attaching the script as a file. (Unpack it, Zipped because extension AHK wasn't allowed to upload) ; Copy this script file into multiple script files if you're using multiple auras. ; You can only use one aura for each script file. ; 1. First of all, remove the ; of the aura you whish to use below. ; 2. Then, set which button you use the aura on, e.g. button E. WinActivate, ahk_class Direct3DWindowClass Loop { CoordMode, Pixel, Relative ; // Below are the auras I've added to this script. Remove the ; before one of them! ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0x002749, 0, Fast RGB ;Discipline ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0xAA99FA, 0, Fast RGB ;Clarity ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0xA5BFFE, 0, Fast RGB ;Determination ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0x012144, 0, Fast RGB ;Hatred ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0xC23603, 0, Fast RGB ;Anger ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0xA502A6, 0, Fast RGB ;Wrath ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0x3E0018, 0, Fast RGB ;Purity ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0x7B1731, 0, Fast RGB ;Vitality ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0x0A331C, 0, Fast RGB ;Haste ;PixelSearch, FoundX, FoundY, 526, 595, 680, 625, 0x312E1A, 0, Fast RGB ;Grace If ErrorLevel = 0 Send {w} ; // Set which button to activate Sleep, 1000 } Enjoy! Aura-script.zip
×
×
  • Create New...