[Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080] menu

User Tag List

Page 228 of 300 FirstFirst ... 128178224225226227228229230231232278 ... LastLast
Results 3,406 to 3,420 of 4489
  1. #3406
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DizzyNoob View Post
    Thanks for the reply, i know of the vmware solution but apparently i dont think my desktop can support running d3 in vmware (
    they said if your pc can handle 1 normal d3 client on low you should be able to run atleast 1 in vmware

    [Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
  2. #3407
    santa666's Avatar Sergeant
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi.
    Just curious the statistics claimed to have gotten 6 sets but none in bank or bags..
    Checking ini file there's no option for vendoring sets/legendaries for true/false.
    Does that mean it will never sell those by default ?

  3. #3408
    Affordable123's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wrajjt View Post
    I dont bloody get it. I used notAres script to great effect weeks ago, went on a holiday, and naturally I am a tad confused about these changes. I got the script to work after a while, then started tweaking the attack-timers because I thought my DH spent waaay too much time attacking thin air after Sar was down. I was frustrated as nothing happened. I played around a bit with the ini, thinking perhaps it would have better effect.

    Now, I set the values way too low, and my DH runs into the room before Sark is dead. And I _cannot_ seem to change back to the default values. Editing the ini or the script itself does nothing.
    Remove the .ini file and change in the .au3 file and run it again. Change the attack value to an absurd value, add a zero or something, run in and see if anything changes.

  4. #3409
    wrajjt's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Affordable123 View Post
    Remove the .ini file and change in the .au3 file and run it again. Change the attack value to an absurd value, add a zero or something, run in and see if anything changes.
    Changed the 3900 to $attackTime = 39000, after having removed the .ini and re-copy-pasted the script from the pastebin. No change. Seriously stumped here. The only other change I recall doing is making sure to change it so that alt displays item tooltips always.

  5. #3410
    sydeu's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    87
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone made pngs for 800*600? Would really appreciate if you would contact me in that case. I could give you some gold if it works as it should

  6. #3411
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by santa666 View Post
    Hi.
    Just curious the statistics claimed to have gotten 6 sets but none in bank or bags..
    Checking ini file there's no option for vendoring sets/legendaries for true/false.
    Does that mean it will never sell those by default ?
    could be a false response since its based on pixel color. Under vendoring in the ini i would set all to false, otherwise it will vendor anything left in the bag from my experience.

  7. #3412
    trashclan's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for some reason the script won't pick up rares. It's almost that it takes forever to check for loot, how do I fix this?

  8. #3413
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trashclan View Post
    for some reason the script won't pick up rares. It's almost that it takes forever to check for loot, how do I fix this?
    if the loot on the ground name disappears. you should add what i added in red to the 3 functions i pasted below. It will force the item names to stay on the screen until its completely done looting.



    Func LootGear($color, $tolerance = 2)
    $count = 0
    send("{Alt}")
    $Loot = PixelSearch(Round(400 * $x_ratio), 0, Round(1690 * $x_ratio), Round(900 * $y_ratio), $color, $tolerance)
    If Not @error Then
    While Not @error
    $count += 1
    MouseClick('left', $Loot[0], $Loot[1], 1, 3)
    Sleep(50)
    MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
    Sleep(1000)
    ;Run at max 10 times per quality
    If $count >= 10 Then
    ExitLoop
    EndIf
    $Loot = PixelSearch(Round(400 * $x_ratio), 0, Round(1690 * $x_ratio), Round(900 * $y_ratio), $color, $tolerance)
    WEnd
    EndIf
    Return $count
    EndFunc ;==>LootGear



    Func LootGems()
    $count = 0
    $gX = 0
    $gY = 0
    send("{Alt}")
    While _ImageSearchArea($pngLoc & "square.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, $gX, $gY, 90)
    $count += 1
    MouseClick("left", $gX, $gY - 3, 1, 3)
    Sleep(50)
    MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
    $GemCount += 1
    Sleep(1000)
    If $count >= 10 Then
    ExitLoop
    EndIf
    WEnd
    EndFunc ;==>LootGems




    Func LootTomes()
    $count = 0
    $gX = 0
    $gY = 0
    send("{Alt}")
    While _ImageSearchArea($pngLoc & "tome.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, $gX, $gY, 90)
    $count += 1
    MouseClick("left", $gX, $gY - 3, 1, 3)
    Sleep(50)
    MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
    $TomeCount += 1
    Sleep(1000)
    If $count >= 10 Then
    ExitLoop
    EndIf
    WEnd
    EndFunc ;==>LootTomes

  9. #3414
    trashclan's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you so much, I hope this works :LD

  10. #3415
    jjrsept's Avatar Member
    Reputation
    4
    Join Date
    May 2007
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stealthingyew View Post
    if the loot on the ground name disappears. you should add what i added in red to the 3 functions i pasted below. It will force the item names to stay on the screen until its completely done looting.
    Or you can do what I did, I set the loot to be always on. It can get annoying if you actually play using it, but it you use it mainly for botting (Like I do on the VM ware) it works out great.

    I Turned off always show item labels on drop and change Item Label Display to Push to toggle.
    The default is alt, I changed that as the keybind for vmware to get out of it is ctrl + alt.

    I changed it to ' (Apostrophe) and just make sure its turned on when you start the bot.

    (If you do do this the bot will take the text that says you turned it on/off as a rare item drop, if you hit it when you start it may show an extra few rares until it disappears (about 20 seconds))
    Last edited by jjrsept; 06-24-2012 at 02:08 PM.

  11. #3416
    santa666's Avatar Sergeant
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stealthingyew View Post
    could be a false response since its based on pixel color. Under vendoring in the ini i would set all to false, otherwise it will vendor anything left in the bag from my experience.
    Hopefully is, cause the amount of rares, gems, magic etc all add up and it does sell blues and stash yellows so got bit scared
    Below is my .ini file, vendoring section, default is to sell rares but i changed it

    [Vendoring]
    Loot=True
    Rares=False
    Magic=True
    All=False
    All-Rows=5

  12. #3417
    wrajjt's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What the actual ****. My entire D drive seems to have been write-protected by W7. No wonder stuff aint working as it should. It can't even create a new .ini. Godamnit microsoft...

  13. #3418
    apeplus's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bofeity View Post
    You in fullscreen windowed?
    Yeah and Diablo 3 will also crash at times along with getting stuck with escape key in menu.

    Anyone else having the same issue?

  14. #3419
    wrajjt's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone upload the default .ini generated by the script somewhere? It seems my HD wont allow autoIT-scripts to create new files, I'll have to do it myself...

  15. #3420
    FistofHeaven's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know what is wrong with mine?

    I click resume and enter the game. The script waits 2-4 seconds then tps out and exit. Tried changing the oldruins.png but nothing.

Similar Threads

  1. Replies: 17
    Last Post: 12-14-2012, 07:21 PM
  2. Replies: 108
    Last Post: 07-03-2012, 02:39 PM
  3. Auto IT Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
    By Peterk426 in forum Diablo 3 Bots Questions & Requests
    Replies: 5
    Last Post: 07-02-2012, 03:05 PM
  4. Replies: 5
    Last Post: 06-19-2012, 01:36 PM
  5. [Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
    By notAres in forum Diablo 3 Bots and Programs
    Replies: 1118
    Last Post: 06-11-2012, 10:32 AM
All times are GMT -5. The time now is 03:59 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search