Jump to content

PleXy

Elite+
  • Content Count

    14
  • Joined

  • Last visited

Posts posted by PleXy


  1. 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
    	}
    }

  2. 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.


  3. 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...