Jump to content

username1001101

Beta Tester
  • Content Count

    365
  • Joined

  • Last visited

Everything posted by username1001101

  1. username1001101

    [Contribution] Aura macros

    use Shreks Gui tool... it can automagically use auras.
  2. username1001101

    Save VM botting

    I don't think that works. Unless you already use ipv6 with an according /64 network that's assigned to you, you normally only have one public IP address and the mac of it is the one from the router. In most cases, the router uses NAT hence everything you do on the lan has no effect once it passes through the router's NAT. For the internet, there's only one device visible which will be your router.
  3. username1001101

    Best zone

    I do City of Sarn in merciless
  4. username1001101

    Pathing scripts (A temporary pathing fix)

    you may also want to add the check for current window ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { ; do other bot stuff }
  5. username1001101

    [Contribution] Aura macros

    Well, you had the initial idea I just took it a small step further
  6. username1001101

    [Contribution] Aura macros

    what aura was that? increase is always 26px as far as I noticed. Btw, thx to Shrek III , I just updated the script to also check the windows title of the active window. So that it only submits the key strokes in PoE
  7. username1001101

    [Contribution] Aura macros

    Ok, it seems my script works
  8. username1001101

    Pathing scripts (A temporary pathing fix)

    I tried to run the bot in Docks but often there are mobs closeby that are just across the water that the bot can't simply go to.... act 3, city of sarn, seems still to be the best place.
  9. username1001101

    [Contribution] Aura macros

    So, I had a look and I see that the horizontal values just differ by 26 px each. Due to that I had a look at how autohk actually works and I tried to come up with a generic aura casting tool. My basic idea is to 1) define what key your skills belong to 2) then loop through each possible skill and check for aura 3) if aura is not active, activate I came up with this here but I have no PoE installation here, so I cannot test it. ; Define below what keys represent your lower skill bar (from left to right, 5 keys) ; Comment out keys that don't have an aura or an aura you don't wish to use by adding a ; in front of the line aHK1 = a aHK2 = s aHK3 = d aHK4 = f aHK5 = g ; BELOW BE DRAGONS ; Function to check if a variable exists varExist(ByRef v) { ; Requires 1.0.46+ return &v = &n ? 0 : v = "" ? 2 : 1 } WinActivate, ahk_class Direct3DWindow Class Loop { ; Get active window title WinGetActiveTitle, Title if (Title = "Path of Exile") { if varExist("aHK1") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 536, 597, 563, 625, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK1%} ; } } if varExist("aHK2") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 562, 597, 589, 625, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK2%} ; } } if varExist("aHK3") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 588, 597, 615, 625, 0xffffff, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK3%} ; } } if varExist("aHK4") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 614, 597, 641, 625, 0xffffff, 0, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK4%} ; } } if varExist("aHK5") = 1 { CoordMode, Pixel, Relative PixelSearch, FoundX, FoundY, 640, 597, 667, 625, 0xffffff, 0, 0, Fast RGB if ErrorLevel = 0 { Send {%aHK5%} ; } } } Sleep, 1000 }
  10. username1001101

    Running the bot in a vm (and some stupid problems xD)

    Yeah, been also thinking about it... but then the image would be several gigabytes.... windows 7 is huge.... then you also have to consider if you want to already download all updates... since you're going to use it for bot-only, I think the updates aren't that necessary.
  11. username1001101

    Running the bot in a vm (and some stupid problems xD)

    I usually follow that - it also deactivates additional services that are not required: http://www.computingunleashed.com/speed ... de-to.html
  12. username1001101

    [Contribution] Aura macros

    ; 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, 0xffffff, 0, Fast RGB ;Grace If ErrorLevel = 0 Send {d} ; // Set which button to activate Sleep, 1000 } As said, it activates the aura and then deactivates it again... haven't tried with the others though.
  13. username1001101

    [Contribution] Aura macros

    I tried to run it with grace... it just turned it on and off....
  14. username1001101

    [Contribution] Aura macros

    @phoenix: can you post the new version?
  15. username1001101

    [Contribution] Aura macros

    Hmmm, I tried last night and couldn't get it to work.... probably my mistake because I was tired... will try again today.
  16. username1001101

    Pathing scripts (A temporary pathing fix)

    you're also the one who posted this on ownedcore, right?
  17. username1001101

    Running the bot in a vm (and some stupid problems xD)

    you can play bot from same IP at the same time... to mule I load two instances of it - not even virtualized - works all fine.
  18. username1001101

    Smart Botting - Pickup Orbs and Skill gems

    Now that the bot feature ALT-looting I think this can be closed now: viewtopic.php?f=3&t=203
  19. username1001101

    Use ALT with pickup

    ???? if you can tell the bot to make a click with the mouse... you can also tell the bot to make an ALT key press...
  20. username1001101

    Use ALT with pickup

    that would be great would also make my checker-like inventory obsolete hence more possible items to snag... although 8h botting sessions didn't fill the free spaces half
  21. username1001101

    Aura's

    Aura improve survivability looking forward to it... but more stressing would be proper pickit IMHO
  22. Hi there right now, the bot picks up orbs and skill gems when they drop. Sometimes it accidentally clicks other times and picks those up also - hence filling up your inventory space. In order to - currently - maximize your orbs and and skill gem pickups, you can setup your character inventory in a checker-wise order. I have atached an according screenshots. Since there is only 1 inventory space and not two or three combined, only single space items can be picked up - this also includes jewellry that accidentally gets picked. By having as many individual orbs as possible with 1 quantity in there, you can stack the other orbs.
×
×
  • Create New...