QuickLooks - Path Of Exile Companion menu

User Tag List

Page 1 of 6 12345 ... LastLast
Results 1 to 15 of 76
  1. #1
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    QuickLooks - Path Of Exile Companion


    QuickLooks - PoE Companion

    The script relies soley on pixel searching and user set mouse coordinates, it does not gather any data from the game client whatsoever.

    I will be highly surprised if they can detect this, or if they would even care to attempt to do so.

    This can never be patched therefore will not have any downtime with new game patches etc.

    Works with all versions and resolutions.

    Features

    Pick up any items on the ground that you choose. AutoLoot & Manual Included

    Detect if you are running and use quicksilver flask with adjustable duration timer

    Detect if you are attacking and use utility flasks with adjustable duration timer

    Instant teleport to town

    ID Item On Cursor

    Read Me

    *** QuickLooks must be run as administrator ***

    *** I suggest enabling "Confine Mouse To Window" located in PoE UI settings if using autoloot. ***

    Quicklooks relies on searching your screen for a particular pixel color, upon detection it will attempt to click that color, in our case being an item on the ground.

    You will want to change your lootfilter so all items you are interested in picking up show up as the same colour.

    You will want that colour to be something that will not conflict with anything in game.

    This can be hard to accomplish, but sorry I will not give away my color choices, and for your safety I suggest you do not either.

    HotKeys:

    Ctrl+Shift+A - Hotkey Menu - Complete All Sections To Complete Setup

    ** After completing setup restart the script to ensure the read values are updated. **

    QuickLooks Download

    QuickLooks 5.0.zip



    Updated April 17, 2020

    Last edited by naut333; 04-19-2020 at 02:22 PM.

    QuickLooks - Path Of Exile Companion
  2. Thanks Genocyber, deomexuathe, toadskin, judge001, Gutsuu, alternate0, wolfman1190, Raiwulf (8 members gave Thanks to naut333 for this useful post)
  3. #2
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Source Code

    Code:
    ;-------------------------------------------- QuickLooks - Poe Pickit ------------------------------------------
    
    #include  <Misc.au3>
    #include  <MsgBoxConstants.au3>
    #include  <TrayConstants.au3>
    #include  <WinAPIFiles.au3>
    #include  <Timers.au3>
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Options Section
    
    AutoItSetOption ("TrayMenuMode", 0);      	     ; Show Checkmarks In Tray
    AutoItSetOption ("TrayAutoPause", 0);     	     ; Do Not Auto Pause When Tray Icon Is Clicked
    AutoItSetOption ("TrayIconDebug", 1);     	     ; Show Debug Info In Tray
    AutoItSetOption ("WinTextMatchMode", 2);  	     ; Quick Mode
    AutoItSetOption ("WinTitleMatchMode", 3);   	 ; Exact Title Match
    AutoItSetOption ("MouseClickDelay", 50);    	 ; Number of ms to pause between each mouse click - default 10ms
    AutoItSetOption ("MouseClickDownDelay", 1); 	 ; Number of ms to hold down mouse button after clicking - default 10ms
    AutoItSetOption ("SendKeyDelay", 1);      	     ; Number of ms to pause between each key press - default 5ms
    AutoItSetOption ("SendKeyDownDelay", 1); 	     ; Number of ms to hold down each key after pressing - default 5ms
    AutoItSetOption ("PixelCoordMode", 0);   	     ; Coordinates of a found pixel. [ 0 = window ] [ 1 = screen ] [ 2 = client ]
    AutoItSetOption ("MouseCoordMode", 0);   	     ; Coordinates used for mouse clicks. [ 0 = window ] [ 1 = screen ] [ 2 = client ]
    AutoItSetOption("MustDeclareVars", 1);  	     ;0=no, 1=require pre-declaration
    
    TraySetIcon("Images\QuickLooksIcon.ico")
    TraySetState($TRAY_ICONSTATE_SHOW)
    TraySetToolTip("QuickLooks By Naut")
    
    TrayTip("QuickLooks", "Written By Naut", 10)
    
    ; End Options Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Window Section
    
    Local $handle = WinGetHandle ( "Path of Exile" )
    
    Local $window = WinGetPos ( $handle )
    Local $xresolution = ($window[2])
    Local $yresolution = ($window[3])
    
    ; End Window Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Variables Section
    
    Global $Pause
    Global $Autoloot
    
    Global $MouseLeftClickTimer
    Local $MouseLeftClickCheck = 0
    
    Global $MouseRightClickTimerA
    Local $MouseRightClickCheckA = 0
    
    Global $MouseRightClickTimerB
    Local $MouseRightClickCheckB = 0
    
    Global $MouseRightClickTimerC
    Local $MouseRightClickCheckC = 0
    
    Global $MouseRightClickTimerD
    Local $MouseRightClickCheckD = 0
    
    Global $QuickSilverFlask = IniRead ( "QuickLooks.ini", "Flasks", "QuickSilverFlask", 5 )
    Global $QuickSilverDuration = IniRead ( "QuickLooks.ini", "Flasks", "QuickSilverDuration", 4800 )
    Global $QuickSilverTimerA
    Global $QuickSilverTimerB
    Global $QuickSilverTimerDiffA
    Global $QuickSilverTimerDiffB
    Local $QuickSilverCheckA = 0
    Local $QuickSilverCheckB = 0
    
    Global $FlaskOne = IniRead ( "QuickLooks.ini", "Flasks", "FlaskOne", 1 )
    Global $FlaskOneDuration = IniRead ( "QuickLooks.ini", "Flasks", "FlaskOneDuration", 4800 )
    Global $FlaskOneTimerA
    Global $FlaskOneTimerB
    Global $FlaskOneTimerDiffA
    Global $FlaskOneTimerDiffB
    Local $FlaskOneCheckA = 0
    Local $FlaskOneCheckB = 0
    
    Global $FlaskTwo = IniRead ( "QuickLooks.ini", "Flasks", "FlaskTwo", 2 )
    Global $FlaskTwoDuration = IniRead ( "QuickLooks.ini", "Flasks", "FlaskOneDuration", 4800 )
    Global $FlaskTwoTimerA
    Global $FlaskTwoTimerB
    Global $FlaskTwoTimerDiffA
    Global $FlaskTwoTimerDiffB
    Local $FlaskTwoCheckA = 0
    Local $FlaskTwoCheckB = 0
    
    Global $FlaskThree = IniRead ( "QuickLooks.ini", "Flasks", "FlaskThree", 3 )
    Global $FlaskThreeDuration = IniRead ( "QuickLooks.ini", "Flasks", "FlaskOneDuration", 4800 )
    Global $FlaskThreeTimerA
    Global $FlaskThreeTimerB
    Global $FlaskThreeTimerDiffA
    Global $FlaskThreeTimerDiffB
    Local $FlaskThreeCheckA = 0
    Local $FlaskThreeCheckB = 0
    
    Global $FlaskFour = IniRead ( "QuickLooks.ini", "Flasks", "FlaskFour", 4 )
    Global $FlaskFourDuration = IniRead ( "QuickLooks.ini", "Flasks", "FlaskOneDuration", 4800 )
    Global $FlaskFourTimerA
    Global $FlaskFourTimerB
    Global $FlaskFourTimerDiffA
    Global $FlaskFourTimerDiffB
    Local $FlaskFourCheckA = 0
    Local $FlaskFourCheckB = 0
    
    Global $ColorPath = IniRead ( "QuickLooks.ini", "ColorPath", "HexColorCode", 0xABCDEF )
    Global $Frequency = IniRead ( "QuickLooks.ini", "ClickSpeed", "Frequency", 50 )
    
    ;Global $ClickCounter
    ;$ClickCounter = 0
    ;$ClickCounter += 1
    
    ; End Variables Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Hotkeys Section
    
    HotKeySet("+^{END}", "Terminate")
    HotKeySet("+^{a}", "HotkeyList")
    HotKeySet("+^{PAUSE}", "Pause")
    HotKeySet("+^{ENTER}", "ChatPause")
    HotKeySet("+^{SPACE}", "Autoloot")
    HotKeySet("+^{F5}", "FindWisdomScroll")
    HotKeySet("{F6}", "IdentifyItem")
    HotKeySet("+^{F7}", "FindPortalScroll")
    HotKeySet("+^{F8}", "FindPortalPosition")
    HotKeySet("+^{F9}", "SetColor")
    HotKeySet("+^{`}", "FlaskSetup")
    HotKeySet("+^{1}", "FlaskOneKey")
    HotKeySet("+!{1}", "FlaskOneDur")
    HotKeySet("+^{2}", "FlaskTwoKey")
    HotKeySet("+!{2}", "FlaskTwoDur")
    HotKeySet("+^{3}", "FlaskThreeKey")
    HotKeySet("+!{3}", "FlaskThreeDur")
    HotKeySet("+^{4}", "FlaskFourKey")
    HotKeySet("+^{4}", "QuickSilverKey")
    HotKeySet("+!{5}", "FlaskFourDur")
    HotKeySet("+!{5}", "QuickSilverDur")
    
    ; End Hotkeys Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Script Section
    
    SendKeepActive ( $handle )
    
    While WinExists ( $handle )
    	
    	If WinActive ( $handle ) Then
    	
    		;;;;;; Mouse Left Click Length Check-----------------------------------------------------------------
    	
    		If _IsPressed ( "01" ) And $MouseLeftClickCheck = 0 Then
    			$MouseLeftClickTimer = TimerInit()
    			$MouseLeftClickCheck = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "01" ) And TimerDiff($MouseLeftClickTimer) >= 1 And $MouseLeftClickCheck = 1 Then
    			$MouseLeftClickTimer = TimerInit()
    			$MouseLeftClickCheck = 0
    		EndIf
    		
    		;;;;;; Quicksilver Flask Rotation--------------------------------------------------------------------
    			
    		If _IsPressed ( "01" ) And $QuickSilverCheckA = 0 Then
    			$QuickSilverTimerA = TimerInit()
    			$QuickSilverCheckA = 1
    		EndIf
    		
    		$QuickSilverTimerDiffA = TimerDiff($QuickSilverTimerA)
    		
    		If _IsPressed ( "01" ) And $QuickSilverTimerDiffA > 500 Then
    			If $QuickSilverCheckB = 0 Then
    				If TimerDiff($MouseLeftClickTimer) >= 10 And $MouseLeftClickCheck = 1 Then
    					Send($QuickSilverFlask)
    					sleep($Frequency)
    					$QuickSilverTimerB = TimerInit()
    					sleep($Frequency)
    					$QuickSilverCheckB = 1
    					$MouseLeftClickCheck = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$QuickSilverTimerDiffB = TimerDiff($QuickSilverTimerB)
    			
    		If $QuickSilverCheckB = 1 And $QuickSilverTimerDiffB >= $QuickSilverDuration Then
    			$QuickSilverCheckB = 0
    			$QuickSilverCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check A-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckA = 0 Then
    			$MouseRightClickTimerA = TimerInit()
    			$MouseRightClickCheckA = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerA) >= 1 And $MouseRightClickCheckA = 1 Then
    			$MouseRightClickTimerA = TimerInit()
    			$MouseRightClickCheckA = 0
    		EndIf
    		
    		;;;;;; Flask 1 Rotation--------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskOneCheckA = 0 Then
    			$FlaskOneTimerA = TimerInit()
    			$FlaskOneCheckA = 1
    		EndIf
    		
    		$FlaskOneTimerDiffA = TimerDiff($FlaskOneTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskOneTimerDiffA > 500 Then
    			If $FlaskOneCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerA) >= 10 And $MouseRightClickCheckA = 1 Then
    					Send($FlaskOne)
    					sleep($Frequency)
    					$FlaskOneTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskOneCheckB = 1
    					$MouseRightClickCheckA = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskOneTimerDiffB = TimerDiff($FlaskOneTimerB)
    			
    		If $FlaskOneCheckB = 1 And $FlaskOneTimerDiffB >= $FlaskOneDuration Then
    			$FlaskOneCheckB = 0
    			$FlaskOneCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check B-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckB = 0 Then
    			$MouseRightClickTimerB = TimerInit()
    			$MouseRightClickCheckB = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerB) >= 1 And $MouseRightClickCheckB = 1 Then
    			$MouseRightClickTimerB = TimerInit()
    			$MouseRightClickCheckB = 0
    		EndIf		
    		;;;;;; Flask 2 Rotation----------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskTwoCheckA = 0 Then
    			$FlaskTwoTimerA = TimerInit()
    			$FlaskTwoCheckA = 1
    		EndIf
    		
    		$FlaskTwoTimerDiffA = TimerDiff($FlaskTwoTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskTwoTimerDiffA > 500 Then
    			If $FlaskTwoCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerB) >= 10 And $MouseRightClickCheckB = 1 Then
    					Send($FlaskTwo)
    					sleep($Frequency)
    					$FlaskTwoTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskTwoCheckB = 1
    					$MouseRightClickCheckB = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskTwoTimerDiffB = TimerDiff($FlaskTwoTimerB)
    			
    		If $FlaskTwoCheckB = 1 And $FlaskTwoTimerDiffB >= $FlaskTwoDuration Then
    			$FlaskTwoCheckB = 0
    			$FlaskTwoCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check C-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckC = 0 Then
    			$MouseRightClickTimerC = TimerInit()
    			$MouseRightClickCheckC = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerC) >= 1 And $MouseRightClickCheckC = 1 Then
    			$MouseRightClickTimerC = TimerInit()
    			$MouseRightClickCheckC = 0
    		EndIf	
    		
    		;;;;;; Flask 3 Rotation-----------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskThreeCheckA = 0 Then
    			$FlaskThreeTimerA = TimerInit()
    			$FlaskThreeCheckA = 1
    		EndIf
    		
    		$FlaskThreeTimerDiffA = TimerDiff($FlaskThreeTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskThreeTimerDiffA > 500 Then
    			If $FlaskThreeCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerC) >= 10 And $MouseRightClickCheckC = 1 Then
    					Send($FlaskThree)
    					sleep($Frequency)
    					$FlaskThreeTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskThreeCheckB = 1
    					$MouseRightClickCheckC = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskThreeTimerDiffB = TimerDiff($FlaskThreeTimerB)
    			
    		If $FlaskThreeCheckB = 1 And $FlaskThreeTimerDiffB >= $FlaskThreeDuration Then
    			$FlaskThreeCheckB = 0
    			$FlaskThreeCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check D-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckD = 0 Then
    			$MouseRightClickTimerD = TimerInit()
    			$MouseRightClickCheckD = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerD) >= 1 And $MouseRightClickCheckD = 1 Then
    			$MouseRightClickTimerD = TimerInit()
    			$MouseRightClickCheckD = 0
    		EndIf	
    		
    		;;;;;; Flask 4 Rotation----------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskFourCheckA = 0 Then
    			$FlaskFourTimerA = TimerInit()
    			$FlaskFourCheckA = 1
    		EndIf
    		
    		$FlaskFourTimerDiffA = TimerDiff($FlaskFourTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskFourTimerDiffA > 500 Then
    			If $FlaskFourCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerD) >= 10 And $MouseRightClickCheckD = 1 Then
    					Send($FlaskFour)
    					sleep($Frequency)
    					$FlaskFourTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskFourCheckB = 1
    					$MouseRightClickCheckD = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskFourTimerDiffB = TimerDiff($FlaskFourTimerB)
    			
    		If $FlaskFourCheckB = 1 And $FlaskFourTimerDiffB >= $FlaskFourDuration Then
    			$FlaskFourCheckB = 0
    			$FlaskFourCheckA = 0
    		EndIf
    		
    		;;;;;; End Flask Rotation---------------------------------------------------------------------------
    		
    		If _IsPressed ( "12" ) and _IsPressed ( "20" ) Then
    			Call("Loot")
    		EndIf
    		
    		If _IsPressed ( "12" ) and _IsPressed ( "54" ) Then
    			Call("TownPortal")
    		EndIf
    	
    	EndIf
    	
    WEnd
    
    ; End Script Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Core Functions Section
     
    Func Terminate()
    	TrayTip("QuickLooks", "Terminating Script", 10)
        Exit
    EndFunc
    
    Func HotkeyList()
    	MsgBox ( 0, "QuickLooks Hotkeys", "Shift+Ctrl+End - Terminate Script" & @LF & " " & @LF & "Shift+Ctrl+~ - Flask Setup" & @LF & " " & @LF & "Shift+Ctrl+Spacebar - Enable/Disable AutoLoot" & @LF & " " & @LF & "Alt+Spacebar - Loot Visible Items" & @LF & " " & @LF & "Shift+Ctrl+Enter - Enable/Disable Chat Pause" & @LF & " " & @LF & "Shift+Ctrl+Pause - Enable/Disable Pause Script " & @LF & " " & @LF & "Shift+Ctrl+F5 - Set Wisdom Scroll Location (In Inventory) " & @LF & " " & @LF & "F6 - Identify Item On Cursor " & @LF & " " & @LF & "Shift+Ctrl+F7 - Set Portal Scroll Location (In Inventory) " & @LF & " " & @LF & "Shift+Ctrl+F8 - Set Town Portal Location (Open Town Portal, Close Inventory, Hover Over Town Portal Then Use Hotkey) "& @LF & " " & @LF & "Alt+T - Create & Enter Town Portal " & @LF & " " & @LF & "Shift+Ctrl+F9 - Set Hex Color Of Items To Pick Up ( Drop Item On Ground, Cursor On Color You Want To Pick Up Then Use Hotkey) " )
    EndFunc
    
    Func Pause()
    	If NOT $Pause Then
    		TrayTip("QuickLooks", "Script Paused.", 10)
    	EndIf	
        $Pause = NOT $Pause
        While $Pause
            sleep(100)
        WEnd
    	TrayTip("QuickLooks", "Script Unpaused.", 10)
    EndFunc
    
    Func ChatPause()
    	If NOT $Pause Then
    		TrayTip("QuickLooks", "Script Paused.", 10)
    	EndIf
    	WinActivate ( $handle )
    	Send("{ENTER}")	
        $Pause = NOT $Pause
        While $Pause
            sleep(100)
        WEnd
    	TrayTip("QuickLooks", "Script Unpaused.", 10)
    EndFunc
    
    Func SetColor()
    	Local $xcolor = MouseGetPos ( 0 )
    	Local $ycolor = MouseGetPos ( 1 )
    	Local $mycolor = PixelGetColor ( $xcolor , $ycolor )
    	Local $myhex = Hex($mycolor, 6)
    	IniWrite ( "QuickLooks.ini", "ColorPath", "HexColorCode", "0x" & $myhex & "")
    	TrayTip("QuickLooks", "Hex Color Code: 0x" & $myhex & ". Value changed in QuickLooks.ini. ", 10)
    EndFunc 
    
    ; End Core Functions Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Start Loot Functions Section
    
    Func Loot()
    	If WinActive ( $handle ) Then
    		Local $bCoord = PixelSearch(0, 0, $xresolution, $yresolution, $ColorPath, 1, 1, $handle)
    		If not    @Error Then
    			If _IsPressed ( "02" ) Then
    				Else
    				If _IsPressed ( "01" ) Then
    					Else
    					MouseClick($MOUSE_CLICK_LEFT, ($bCoord[0] + 50), ($bCoord[1] + 10), 1, 0 )
    					sleep($Frequency*4)
    				EndIf
    			EndIf
    		EndIf
    	EndIf	
    EndFunc
    
    Func Autoloot()
    	If NOT $Autoloot Then
    		TrayTip("QuickLooks", "Autoloot Enabled", 10)
    	EndIf
        $Autoloot = NOT $Autoloot
        While $Autoloot
    		
    		If WinActive ( $handle ) Then
    		
            Call("Loot")
    	
    		;;;;;; Mouse Left Click Length Check-----------------------------------------------------------------
    	
    		If _IsPressed ( "01" ) And $MouseLeftClickCheck = 0 Then
    			$MouseLeftClickTimer = TimerInit()
    			$MouseLeftClickCheck = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "01" ) And TimerDiff($MouseLeftClickTimer) >= 1 And $MouseLeftClickCheck = 1 Then
    			$MouseLeftClickTimer = TimerInit()
    			$MouseLeftClickCheck = 0
    		EndIf
    		
    		;;;;;; Quicksilver Flask Rotation--------------------------------------------------------------------
    			
    		If _IsPressed ( "01" ) And $QuickSilverCheckA = 0 Then
    			$QuickSilverTimerA = TimerInit()
    			$QuickSilverCheckA = 1
    		EndIf
    		
    		$QuickSilverTimerDiffA = TimerDiff($QuickSilverTimerA)
    		
    		If _IsPressed ( "01" ) And $QuickSilverTimerDiffA > 500 Then
    			If $QuickSilverCheckB = 0 Then
    				If TimerDiff($MouseLeftClickTimer) >= 10 And $MouseLeftClickCheck = 1 Then
    					Send($QuickSilverFlask)
    					sleep($Frequency)
    					$QuickSilverTimerB = TimerInit()
    					sleep($Frequency)
    					$QuickSilverCheckB = 1
    					$MouseLeftClickCheck = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$QuickSilverTimerDiffB = TimerDiff($QuickSilverTimerB)
    			
    		If $QuickSilverCheckB = 1 And $QuickSilverTimerDiffB >= $QuickSilverDuration Then
    			$QuickSilverCheckB = 0
    			$QuickSilverCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check A-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckA = 0 Then
    			$MouseRightClickTimerA = TimerInit()
    			$MouseRightClickCheckA = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerA) >= 1 And $MouseRightClickCheckA = 1 Then
    			$MouseRightClickTimerA = TimerInit()
    			$MouseRightClickCheckA = 0
    		EndIf
    		
    		;;;;;; Flask 1 Rotation--------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskOneCheckA = 0 Then
    			$FlaskOneTimerA = TimerInit()
    			$FlaskOneCheckA = 1
    		EndIf
    		
    		$FlaskOneTimerDiffA = TimerDiff($FlaskOneTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskOneTimerDiffA > 500 Then
    			If $FlaskOneCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerA) >= 10 And $MouseRightClickCheckA = 1 Then
    					Send($FlaskOne)
    					sleep($Frequency)
    					$FlaskOneTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskOneCheckB = 1
    					$MouseRightClickCheckA = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskOneTimerDiffB = TimerDiff($FlaskOneTimerB)
    			
    		If $FlaskOneCheckB = 1 And $FlaskOneTimerDiffB >= $FlaskOneDuration Then
    			$FlaskOneCheckB = 0
    			$FlaskOneCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check B-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckB = 0 Then
    			$MouseRightClickTimerB = TimerInit()
    			$MouseRightClickCheckB = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerB) >= 1 And $MouseRightClickCheckB = 1 Then
    			$MouseRightClickTimerB = TimerInit()
    			$MouseRightClickCheckB = 0
    		EndIf		
    		;;;;;; Flask 2 Rotation----------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskTwoCheckA = 0 Then
    			$FlaskTwoTimerA = TimerInit()
    			$FlaskTwoCheckA = 1
    		EndIf
    		
    		$FlaskTwoTimerDiffA = TimerDiff($FlaskTwoTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskTwoTimerDiffA > 500 Then
    			If $FlaskTwoCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerB) >= 10 And $MouseRightClickCheckB = 1 Then
    					Send($FlaskTwo)
    					sleep($Frequency)
    					$FlaskTwoTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskTwoCheckB = 1
    					$MouseRightClickCheckB = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskTwoTimerDiffB = TimerDiff($FlaskTwoTimerB)
    			
    		If $FlaskTwoCheckB = 1 And $FlaskTwoTimerDiffB >= $FlaskTwoDuration Then
    			$FlaskTwoCheckB = 0
    			$FlaskTwoCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check C-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckC = 0 Then
    			$MouseRightClickTimerC = TimerInit()
    			$MouseRightClickCheckC = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerC) >= 1 And $MouseRightClickCheckC = 1 Then
    			$MouseRightClickTimerC = TimerInit()
    			$MouseRightClickCheckC = 0
    		EndIf	
    		
    		;;;;;; Flask 3 Rotation-----------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskThreeCheckA = 0 Then
    			$FlaskThreeTimerA = TimerInit()
    			$FlaskThreeCheckA = 1
    		EndIf
    		
    		$FlaskThreeTimerDiffA = TimerDiff($FlaskThreeTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskThreeTimerDiffA > 500 Then
    			If $FlaskThreeCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerC) >= 10 And $MouseRightClickCheckC = 1 Then
    					Send($FlaskThree)
    					sleep($Frequency)
    					$FlaskThreeTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskThreeCheckB = 1
    					$MouseRightClickCheckC = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskThreeTimerDiffB = TimerDiff($FlaskThreeTimerB)
    			
    		If $FlaskThreeCheckB = 1 And $FlaskThreeTimerDiffB >= $FlaskThreeDuration Then
    			$FlaskThreeCheckB = 0
    			$FlaskThreeCheckA = 0
    		EndIf
    		
    		;;;;;; Mouse Right Click Length Check D-------------------------------------------------------------
    
    		If _IsPressed ( "02" ) And $MouseRightClickCheckD = 0 Then
    			$MouseRightClickTimerD = TimerInit()
    			$MouseRightClickCheckD = 1
    		EndIf	
    			
    		If NOT _IsPressed ( "02" ) And TimerDiff($MouseRightClickTimerD) >= 1 And $MouseRightClickCheckD = 1 Then
    			$MouseRightClickTimerD = TimerInit()
    			$MouseRightClickCheckD = 0
    		EndIf	
    		
    		;;;;;; Flask 4 Rotation----------------------------------------------------------------------------
    		
    		If _IsPressed ( "02" ) And $FlaskFourCheckA = 0 Then
    			$FlaskFourTimerA = TimerInit()
    			$FlaskFourCheckA = 1
    		EndIf
    		
    		$FlaskFourTimerDiffA = TimerDiff($FlaskFourTimerA)
    		
    		If _IsPressed ( "02" ) And $FlaskFourTimerDiffA > 500 Then
    			If $FlaskFourCheckB = 0 Then
    				If TimerDiff($MouseRightClickTimerD) >= 10 And $MouseRightClickCheckD = 1 Then
    					Send($FlaskFour)
    					sleep($Frequency)
    					$FlaskFourTimerB = TimerInit()
    					sleep($Frequency)
    					$FlaskFourCheckB = 1
    					$MouseRightClickCheckD = 0
    				EndIf
    			EndIf
    		EndIf
    		
    		$FlaskFourTimerDiffB = TimerDiff($FlaskFourTimerB)
    			
    		If $FlaskFourCheckB = 1 And $FlaskFourTimerDiffB >= $FlaskFourDuration Then
    			$FlaskFourCheckB = 0
    			$FlaskFourCheckA = 0
    		EndIf
    		
    		;;;;;; End Flask Rotation---------------------------------------------------------------------------
    		
    		If _IsPressed ( "12" ) and _IsPressed ( "54" ) Then
    			Call("TownPortal")
    		EndIf
    		
    	EndIf
    	
        WEnd
    	TrayTip("QuickLooks", "Autoloot Disabled", 10)
    EndFunc	
    
    ; End Loot Functions Section
    
    ;----------------------------------------------------------------------------------------------------------
    
    ; Scrolls Functions Section
    
    Func FindPortalScroll()
    	Local $xPortalScroll = MouseGetPos ( 0 )
    	Local $yPortalScroll = MouseGetPos ( 1 )
    	IniWrite ( "QuickLooks.ini", "ClickCoords", "PortalScrollX", $xPortalScroll )
    	IniWrite ( "QuickLooks.ini", "ClickCoords", "PortalScrollY", $yPortalScroll )
    	TrayTip("QuickLooks", "Portal Scroll Position Changed In QuickLooks.ini", 10)
    EndFunc
    
    Func FindPortalPosition()
    	Local $xPortalPosition = MouseGetPos ( 0 )
    	Local $yPortalPosition = MouseGetPos ( 1 )
    	IniWrite ( "QuickLooks.ini", "ClickCoords", "PortalPositionX", $xPortalPosition )
    	IniWrite ( "QuickLooks.ini", "ClickCoords", "PortalPositionY", $yPortalPosition )
    	TrayTip("QuickLooks", "Portal Position Changed In QuickLooks.ini", 10)
    EndFunc
    
    Func TownPortal()
    	Local $PortalScrollX = IniRead ( "QuickLooks.ini", "ClickCoords", "PortalScrollX", 0 )
    	Local $PortalScrollY = IniRead ( "QuickLooks.ini", "ClickCoords", "PortalScrollY", 0 )
    	Local $PortalPositionX = IniRead ( "QuickLooks.ini", "ClickCoords", "PortalPositionX", 0 )
    	Local $PortalPositionY = IniRead ( "QuickLooks.ini", "ClickCoords", "PortalPositionY", 0 )
    	If WinActive ( $handle ) Then
    			TrayTip("QuickLooks", "Creating Town Portal.", 10)
    			Send ("i")
    			sleep($Frequency)
    			MouseClick($MOUSE_CLICK_RIGHT, ($PortalScrollX), ($PortalScrollY), 1, 0 )
    			sleep($Frequency)
    			Send ("i")
    			sleep($Frequency)
    			sleep($Frequency*3)
    			MouseClick($MOUSE_CLICK_LEFT, ($PortalPositionX), ($PortalPositionY), 1, 0 )
    			sleep($Frequency*4)
    	EndIf
    EndFunc
    
    Func FindWisdomScroll()
    	Local $xWisdomScroll = MouseGetPos ( 0 )
    	Local $yWisdomScroll = MouseGetPos ( 1 )
    	IniWrite ( "QuickLooks.ini", "ClickCoords", "WisdomScrollX", $xWisdomScroll )
    	IniWrite ( "QuickLooks.ini", "ClickCoords", "WisdomScrollY", $yWisdomScroll )
    	TrayTip("QuickLooks", "Wisdom Scroll Position Changed In QuickLooks.ini", 10)
    EndFunc
    
    Func IdentifyItem()
    	Local $ItemPositionX = MouseGetPos ( 0 )
    	Local $ItemPositionY = MouseGetPos ( 1 )
    	Local $WisdomPositionX = IniRead ( "QuickLooks.ini", "ClickCoords", "WisdomScrollX", 0 )
    	Local $WisdomPositionY = IniRead ( "QuickLooks.ini", "ClickCoords", "WisdomScrollY", 0 )
    	If WinActive ( $handle ) Then
    			MouseClick($MOUSE_CLICK_RIGHT, ($WisdomPositionX), ($WisdomPositionY), 1, 0 )
    			sleep($Frequency*2)
    			MouseClick($MOUSE_CLICK_LEFT, ($ItemPositionX), ($ItemPositionY), 1, 0 )
    	EndIf
    EndFunc
    
    Func FlaskOneKey()
    	Local $FOneKey = InputBox("Flask One Hotkey", "Enter the hotkey of flask one.", "", " M1")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskOne", $FOneKey )
    EndFunc
    
    Func FlaskOneDur()
    	Local $FOneDur = InputBox("Flask One Duration", "Enter the duration of flask one.", "", " M4")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskOneDuration", $FOneDur )
    EndFunc
    
    Func FlaskTwoKey()
    	Local $FTwoKey = InputBox("Flask Two Hotkey", "Enter the hotkey of flask two.", "", " M1")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskTwo", $FTwoKey )
    EndFunc
    
    Func FlaskTwoDur()
    	Local $FTwoDur = InputBox("Flask Two Duration", "Enter the duration of flask two.", "", " M4")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskTwoDuration", $FTwoDur )
    EndFunc
    
    Func FlaskThreeKey()
    	Local $FThreeKey = InputBox("Flask Three Hotkey", "Enter the hotkey of flask three.", "", " M1")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskThree", $FThreeKey )
    EndFunc
    
    Func FlaskThreeDur()
    	Local $FThreeDur = InputBox("Flask Three Duration", "Enter the duration of flask three.", "", " M4")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskThreeDuration", $FThreeDur )
    EndFunc
    
    Func FlaskFourKey()
    	Local $FFourKey = InputBox("Flask Four Hotkey", "Enter the hotkey of flask four.", "", " M1")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskFour", $FFourKey )
    EndFunc
    
    Func FlaskFourDur()
    	Local $FFourDur = InputBox("Flask Four Duration", "Enter the duration of flask four.", "", " M4")
    	IniWrite ( "QuickLooks.ini", "Flasks", "FlaskFourDuration", $FFourDur )
    EndFunc
    
    Func QuickSilverKey()
    	Local $QuickSilverKey = InputBox("QuickSilver Hotkey", "Enter the hotkey of quicksilver flask.", "", " M1")
    	IniWrite ( "QuickLooks.ini", "Flasks", "QuickSilverFlask", $QuickSilverKey )
    EndFunc
    
    Func QuickSilverDur()
    	Local $QuickSilverDur = InputBox("QuickSilver Duration", "Enter the duration of quicksilver flask.", "", " M4")
    	IniWrite ( "QuickLooks.ini", "Flasks", "QuickSilverDuration", $QuickSilverDur )
    EndFunc
    
    Func FlaskSetup()
    	Call("FlaskOneKey")
    	Call("FlaskOneDur")
    	Call("FlaskTwoKey")
    	Call("FlaskTwoDur")
    	Call("FlaskThreeKey")
    	Call("FlaskThreeDur")
    	Call("FlaskFourKey")
    	Call("FlaskFourDur")
    	Call("QuickSilverKey")
    	Call("QuickSilverDur")
    EndFunc


    Updated April 17, 2020
    Last edited by naut333; 04-16-2020 at 11:01 PM.

  4. Thanks Genocyber (1 members gave Thanks to naut333 for this useful post)
  5. #3
    Genocyber's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    108
    Thanks G/R
    111/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!
    But, I can't find the option to set the health value to use potion
    And also Is there any way to use also mana pots (or MoM)?
    Last edited by Genocyber; 08-06-2018 at 01:48 AM.

  6. #4
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Genocyber View Post
    Thanks!
    But, I can't find the option to set the health value to use potion
    And also Is there any way to use also mana pots (or MoM)?
    Ctrl + Insert
    - Set coordinates of the location of your health bar the script should watch to see if the color changes
    Shift + Insert
    - Set color of the location you would like to watch.
    **Do this at the time your health/es bar is full, when the value drops below that point the color will change and trigger flask usage**

    To put it simply, pick a point on your health bar you would like the script to watch. You can set this point by hovering over it with the window active and press ctrl+insert.

    After you have chosen the point you would like to watch, then press shift+insert to set the color of that point in the ini file. You should do this when you are at full health or es.

    This step does not require your mouse to still be on the health bar.

    I have not added mana into the script yet, however it is something I plan to do in the near future. I wanted to ensure the core of what I had worked well before expanding on it.
    Last edited by naut333; 08-06-2018 at 08:42 PM.

  7. Thanks Genocyber (1 members gave Thanks to naut333 for this useful post)
  8. #5
    Genocyber's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    108
    Thanks G/R
    111/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by naut333 View Post


    Ctrl + Insert
    - Set coordinates of the location of your health bar the script should watch to see if the color changes
    Shift + Insert
    - Set color of the location you would like to watch.
    **Do this at the time your health/es bar is full, when the value drops below that point the color will change and trigger flask usage**

    To put it simply, pick a point on your health bar you would like the script to watch. You can set this point by hovering over it with the window active and press ctrl+insert.
    After you have chosen the point you would like to watch, then press shift+insert to set the color of that point in the ini file. You should do this when you are at full health or es. This step does not require your mouse to still be on the health bar.

    I have not added mana into the script yet, however it is something I plan to do in the near future. I wanted to ensure the core of what I had worked well before expanding on it.
    Tried that, but coudn't manage to make it work. the popup say it's getting the coordinates, but it dont use the flasks.
    Quicksilver flask is beein used correctly nonetheless

  9. #6
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Genocyber View Post
    Tried that, but coudn't manage to make it work. the popup say it's getting the coordinates, but it dont use the flasks.
    Quicksilver flask is beein used correctly nonetheless
    Your flasks are the standard hotkeys correct? Ie 1,2,3,4,5... and you need to set the coordinates as well as the color, ctrl+insert AND shift+insert.. beyond that it should trigger 1-4 of your flasks if the color of the coordinate you set changes.


    Edit:

    I forgot to mention that you also need to set your static point for your health check to work properly.

    Because the health globe is not always present(loading screens etc), the color at the point you set to watch will be different during those times.

    To prevent the script from attempting to spam your flasks when this is the case I added a check to ensure the presence of the woman holding the health globe.

    Her colors never change if she is present therefore it is a safe point to use as an check.

    The point on the woman that you choose should not matter.

    The instructions for that are in the readme also, however I admit it is a little unclear so I'm glad it was asked early on.

    Ctrl+Delete
    - Set coordinates of a point on the woman holding your health globe (static point)

    Shift+Delete
    - Set color of the static point
    **Because we zone in and out of areas etc, there are times that the color will change where your health bar usually is.**
    **This is a failsafe check to ensure the script is only watching your health when the bar actually exists.**
    Last edited by naut333; 08-06-2018 at 08:43 PM.

  10. Thanks Genocyber (1 members gave Thanks to naut333 for this useful post)
  11. #7
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New version posted

    Added a check if right mouse button is pressed to bypass loot function.
    This was added to prevent autoloot conflicting with the user during combat. Requires your attack skill to be set to your right mouse button.


  12. Thanks Genocyber (1 members gave Thanks to naut333 for this useful post)
  13. #8
    Sithylis's Avatar Elite User Authenticator enabled
    Reputation
    330
    Join Date
    Jul 2016
    Posts
    561
    Thanks G/R
    124/275
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Word of advice, centered text looks horrendous.

  14. Thanks omnivore, miracle1 (2 members gave Thanks to Sithylis for this useful post)
  15. #9
    Genocyber's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    108
    Thanks G/R
    111/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by naut333 View Post


    Your flasks are the standard hotkeys correct? Ie 1,2,3,4,5... and you need to do the coordinates as well as the color, ctrl+insert AND shift+insert.. beyond that it should trigger 1-4 of your flasks if the color of the coordinate you set changes.


    Edit:

    I forgot to mention that you also need to set your static point for your health check to work properly.

    Because the health globe is not always present(loading screens etc), the color at the point you set to watch will be different during those times.
    To prevent the script from attempting to spam your flasks when this is the case I added a check to ensure the presence of the woman holding the health globe.
    Her colors never change if she is present therefore it is a safe point to use as an check.
    The point on the woman that you choose should not matter.

    The instructions for that are in the readme also, however I admit it is a little unclear so I'm glad it was asked early on.

    Ctrl+Delete
    - Set coordinates of a point on the woman holding your health globe (static point)
    Shift+Delete
    - Set color of the static point
    **Because we zone in and out of areas etc, there are times that the color will change where your health bar usually is.**
    **This is a failsafe check to ensure the script is only watching your health when the bar actually exists.**
    I did all this, but still dont use the flask.

    Tried both versions x86 and x64, running the game on dx11, and Full Screen Windowed.
    And also, the script seens to capture keys outside of path of exile.

  16. #10
    sammykey's Avatar Member
    Reputation
    1
    Join Date
    May 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nvm I can play now.

    There seems to be a huge delay (~1s delay) per normal click, how can you change this? Un-iding things won't work as well as it tries to ID my uniques. Also can't get colors for autoloot to work, but I guess i still need to play with it
    Last edited by sammykey; 08-06-2018 at 11:43 AM.

  17. #11
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sithylis View Post
    Word of advice, centered text looks horrendous.
    I like it like that

    Thanks for the useful comment?

    Originally Posted by Genocyber View Post
    I did all this, but still dont use the flask.

    Tried both versions x86 and x64, running the game on dx11, and Full Screen Windowed.
    And also, the script seens to capture keys outside of path of exile.
    Hm, I am not exactly sure. Just for peace of mind, run the game on 800x600 with the ini settings as they come by default and make sure that it works as it should.

    That would be the best place to start trouble shooting I would think.

    If that works as it should then the issue is something to do with your coords/colors.. which may take me a bit to narrow down the problem.

    Any of the hotkeys will be detected on use whether Path of Exile is active or not.. however if you look at the source above, any of the code is only set to be used when the window is active.

    Code:
    If WinActive ( $handle ) Then
    Originally Posted by sammykey View Post
    Nvm I can play now.

    There seems to be a huge delay (~1s delay) per normal click, how can you change this? Un-iding things won't work as well as it tries to ID my uniques. Also can't get colors for autoloot to work, but I guess i still need to play with it
    Id function works by detecting the red-ish color that appears in the background of any items that are unidentified. It does not check if they are rare/magic/unique.
    But I must ask, why would you not want to ID your uniques?

    The only issue I have seen with the ID logic in my experience is if you cannot use an item due to attribute requirements.
    It will have the same red color in the background as an unidentified item which can lead to bugs.
    I have not determined a reliable way of solving this yet.

    Delay is determined by ClickDelay setting in the ini file.
    You can lower that value if you wish, however do not make it anything lower then 10 otherwise you will get booted from PoE for trying to perform to many actions too fast.
    Last edited by naut333; 08-06-2018 at 02:48 PM.

  18. #12
    levelmax's Avatar Member
    Reputation
    10
    Join Date
    Dec 2016
    Posts
    39
    Thanks G/R
    260/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why do you center all your texts? Makes it hard to read...

  19. #13
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by levelmax View Post
    Why do you center all your texts? Makes it hard to read...
    I center the text because it makes it much easier to read on my phone that way, which is what I check OC from 75% of the time.
    Last edited by naut333; 08-06-2018 at 02:38 PM.

  20. #14
    uberbor3d's Avatar Member
    Reputation
    2
    Join Date
    Apr 2014
    Posts
    15
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to change the resolution? 800x600 is kinda small to play in

  21. #15
    naut333's Avatar Active Member Developer CoreCoins Purchaser
    Reputation
    53
    Join Date
    Dec 2013
    Posts
    136
    Thanks G/R
    0/49
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by uberbor3d View Post
    Is it possible to change the resolution? 800x600 is kinda small to play in
    Yes you can change the resolution to whatever you would like.. you will just also need to update your coordinates etc as shown in the readme file.

Page 1 of 6 12345 ... LastLast

Similar Threads

  1. [Selling] Selling Path of Exile Beta Keys
    By Igzz in forum General MMO Buy Sell Trade
    Replies: 11
    Last Post: 02-25-2012, 06:00 AM
  2. [Buying] WTB Path of Exile or Diablo 3 beta key or account!
    By kikazz005 in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 10-07-2011, 02:12 PM
  3. [Selling] Path of Exile closed beta key. (PoE)
    By Jeanbon in forum General MMO Buy Sell Trade
    Replies: 7
    Last Post: 10-03-2011, 09:38 AM
  4. [Buying] Path of Exile or Diablo III beta - Repped
    By therightemp in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 09-17-2011, 09:47 PM
All times are GMT -5. The time now is 08:14 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search