Jump to content

powerpc

Members
  • Content Count

    7
  • Joined

  • Last visited

Posts posted by powerpc


  1. Incase your Poe crashes while you are sleeping, i got this AHK script running

    How to use: Place AHK script inside poe folder. Change path if needed.

    itc_exe = Path to client file

    itc_path = folder that client file is in (and folder you will be working in, place ahk script here)

    itc_imagename = poe process name

    
    
    
    #SingleInstance, force
    
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    
    
    iTC_EXE     = C:\Program Files (x86)\Grinding Gear Games\Path of Exile\client.exe
    
    iTC_Path    = C:\Program Files (x86)\Grinding Gear Games\Path of Exile\
    
    iTC_imgName = PathOfExile.exe
    
    
    
    loop {
    
    	sleep 45000
    
    	Process, Exist, %iTC_imgName% ; check to see if PoE is running
    
    	If (ErrorLevel = 0) ; If it is not running
    
    	   {
    
    	   Run, %iTC_EXE%, %iTC_Path%, hide
    
    	   }
    
    	Else ; If it is running, ErrorLevel equals the process id for the target program (Printkey). Then do nothing.
    
    	   {
    
    		sleep 5
    
    	   }
    
    }

  2. Yeah, the bot finds a ton of stacks of chance orbs. I think chancing is very worth it, but the problem for most players is finding enough white items to chance.... but we have the bot so we dont have that problem anymore :)

    I think if we had this option we would see ourselves finding a lot more high tier uniques!


  3. It would be great if this bot had a feature that used chance orbs on selected items. Say we are looking to get a shavronnes. We would tick a box to pick up occultist vestments + chance them. Bot throws them away if it isnt shavronnes.

    So we could check a box that would chance all siege axes, occultist vestments, etc etc, (any item that has the possibility of being a multi-exalt item), we could put a few stacks of chance orbs in the bots inventory so it can chance these items while its inside the game doing a run.

×
×
  • Create New...