Jump to content

hatshacker

EB User
  • Content Count

    164
  • Joined

  • Last visited

Posts posted by hatshacker


  1. Nice suggestion, although i don't think Alk will hand out the api to anybody any time soon. He might possibly be able to convert and implement an AHK script if its good enough though.

     

    I have some old 'unique chancer' code I started but didn't finish or even test it. If somebody wanted to continue (most likely doesnt work but it's a start):

     

    Loop {
     
    IfWinActive Path of Exile
     
    ; search if Stash Tab open
    ImageSearch,Px, Py, 40, 40, 1000, 800, C:\Users\Home\Scripts\stashtab.bmp
     
    ; if stash tab open
    if ErrorLevel = 0   {
     
         Send Keys {F12}    ; pause bot
         Sleep, 500
     
         MouseGetPos,x1,y1    ; double check bot is paused
         Sleep,2000
         MouseGetPos,x2,y2
         If ((x1<>x2) or (y1<>y2)) {    ; if bot is paused
     
    ; search for items
    ImageSearch,i1x, i1y, 40, 40, 1000, 800, C:\Users\Home\Scripts\item1.bmp
    ImageSearch,i2x, i2y, 40, 40, 1000, 800, C:\Users\Home\Scripts\item2.bmp
    ImageSearch,i3x, i3y, 40, 40, 1000, 800, C:\Users\Home\Scripts\item3.bmp
     
    if ErrorLevel = 0   {    ; if item found
     
    ; search for chance orbs
    ImageSearch,cx, cy, 40, 40, 1000, 800, C:\Users\Home\Scripts\chanceorb.bmp
    if ErrorLevel = 0   {    ; if orb found
     
         MouseMove, %cx%, %cy%    ; right click orbs
         MouseClick, right 
         Sleep, 100 ; 
     
         MouseMove, %ix%, %iy%    ; left click item
         MouseClick, left 
         Sleep, 100 ;
    }
     
    ImageSearch,ux, uy, 40, 40, 1000, 800, C:\Users\Home\Scripts\unique.bmp
    if ErrorLevel = 0   {    ; if unique found
     
           MouseMove, %ux%, %uy%
          MouseClick, left 
         }
     
    ImageSearch,sx, sy, 40, 40, 1000, 800, C:\Users\Home\Scripts\stashspace.bmp
    if ErrorLevel = 0   {    ; if stash space found
     
           MouseMove, %sx%, %sy%    ; move unique  to stash
          MouseClick, left 
     
    } else {
     
    ImageSearch,jx, jy, 40, 40, 1000, 800, C:\Users\Home\Scripts\junkitem.bmp
    if ErrorLevel = 0   {    ; if junk item found
     
           MouseMove, %jx%, %jy%    ; destroy junk item
          MouseClick, left 
    }
     
    ImageSearch,jx, jy, 40, 40, 1000, 800, C:\Users\Home\Scripts\destroyitem.bmp
    if ErrorLevel = 0   {    ; check for destroy item area
     
           MouseMove, %dx%, %dy%    ; destroy item
          MouseClick, left
      }
     
    ImageSearch,jx, jy, 40, 40, 1000, 800, C:\Users\Home\destroyitemyes\Scripts.bmp
    if ErrorLevel = 0   {    ; check for destroy item ui option
     
           MouseMove, %d2x%, %d2y%    ; check if item destroyed
          MouseClick, left 
    }
    }
    }
    }
    }
    }
     
    sleep, 1000
    
    

  2. I see. Yeh, its both enabled. What I meant was, it pick up random white item.

    I think Immo answered this in a thread recently but it can happen when you try to speed up the item picking up process through bot config files, if you have edited them try lower the settings. 


  3. 1) set quality %....... [Quality] >= "10"??

     

    2)category of flasks..... [Category] == "Flask"??

     

    3)static mods, for examples; staunching, culling strike...... should i use [item_mod_here] == "true" ??

     

    1 - eg. [Type] == "Ice Spear" && [Quality] >= "15"

     

    2 - eg. [Type] == "Quicksilver Flask"

     

    3 - im not sure, check out the mod list in the bot folder


  4. you can if you want but without a vm you cant use your computer since the mouse is taken, so a vm gives the bot a second mouse to allow you to use your pc while botting. (read thread in my sig)

    its a bit of effort to run a proxy on your main and simulate it through your vm. its a lot easier just to run the vpn/proxy through your vm, if youre not using a vm you can run it easily on your main

×
×
  • Create New...