[Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++] menu

User Tag List

Page 67 of 97 FirstFirst ... 17636465666768697071 ... LastLast
Results 991 to 1,005 of 1443
  1. #991
    DonkeyNads's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I too lack pickup radius and therefore miss the gold... So I set the script to high radius so that it only moves into the middle of the room. Then it will pickup items and then I added a line of code just after looting of the items to call a function I wrote called LootAllGold. Here is the function so you never miss any precious gold.

    Func LootAllGold()
    ToLog("Searching for ALL gold... ")
    $MaxTries = 0
    While $MaxTries < 20
    For $blah = 0 to 3
    $Target = _ImageSearchArea($ReqFiles & "\pics\gold.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, $ISx, $ISy, 100)
    If $Target = 1 Then
    ToLog("Gold found")

    MouseClick("middle", $ISx, $ISy + 20 * $blah, 1, 0)
    Sleep(400 - (100 * $blah))
    AttackNearbyMonsters()
    Else
    ExitLoop 2
    EndIf
    Next
    $MaxTries += 1
    WEnd
    Sleep(200)
    Return "Looted"
    EndFunc

    you will also need a file in the pics folder named gold.png you can SS one yourself as the site is saying my file is not a valid image... Just get a pic of the word Gold as you see it on the ground.
    Last edited by DonkeyNads; 07-11-2012 at 03:35 PM.

    [Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++]
  2. #992
    Ceyoda's Avatar Private
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you so much for this script, it works great. Just wondering if there is a way to pickup tomes of jewelcrafting? After the RMAH commodities opened up, they're constantly increasing in price. I use this script to level up to 50-60 in hell @ 250k/gph.

  3. #993
    R444ge's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The problem is that she doesnt open the stach. The mouse goes over the stach. But then the mouse moves to the right of the stach and she walks there, but then it relogs, and continue to bot the cellar. I put an image where number 1 is the first waypoint where the mouse (i think) klick but nothing happens, then the charcter go to number 2 on the image, then relog.http://i673.photobucket.com/albums/v...rini/route.jpg

  4. #994
    DonkeyNads's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    whether or not the bot stashes properly isnt the issue because once your stash is full (Yes this happens as I will travel a lot :-D) If stash is full and you end up with mats in your bag, the script will sell them. This script also picks up Tomes but will never save them because the first thing it does is go to merchant and sells them... I have fixed both of these issues with the following snippet:

    $Target = _ImageSearchArea($ReqFiles & "\pics\inferno.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, 0, 0, 100)
    If Not $Target = 1 Then
    $Target = _ImageSearchArea($ReqFiles & "\pics\save_tome.png", 1, 0, 0, 1920, 1080, 0, 0, 100)
    If Not $Target = 1 Then

    this needs to be added to the SellItems function right after the following code:

    If Not $Target = 1 Then
    MouseMove($Stash[0][0], $Stash[0][1], 0)
    Sleep(25 + $SellDelay)
    ###INSERT MY CODE HERE###

    Also do not forget to add the EndIf statements to close off the 2 If's you are adding... You also need to SS the word Inferno that is in the description of the mats when you hover over it as well as the title of Tome of Secrets and save those in files named inferno.png and save_tome.png
    Last edited by DonkeyNads; 07-11-2012 at 03:53 PM.

  5. #995
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by R444ge View Post
    The problem is that she doesnt open the stach. The mouse goes over the stach. But then the mouse moves to the right of the stach and she walks there, but then it relogs, and continue to bot the cellar. I put an image where number 1 is the first waypoint where the mouse (i think) klick but nothing happens, then the charcter go to number 2 on the image, then relog.http://i673.photobucket.com/albums/v...rini/route.jpg
    wow very weird thing... i give you the line where you can edit the coords of the stash clicking. maybe if you set it a bit more to the right it will work. (do you have movement speed boots?)
    line 2030
    $SalvageLocation[0] = Random(1557, 1562, 1)
    to
    $SalvageLocation[0] = Random(1597, 1602, 1)

  6. #996
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DonkeyNads View Post
    whether or not the bot stashes properly isnt the issue because once your stash is full (Yes this happens as I will travel a lot :-D) If stash is full and you end up with mats in your bag, the script will sell them. This script also picks up Tomes but will never save them because the first thing it does is go to merchant and sells them... I have fixed both of these issues with the following snippet:

    $Target = _ImageSearchArea($ReqFiles & "\pics\inferno.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, 0, 0, 100)
    If Not $Target = 1 Then
    $Target = _ImageSearchArea($ReqFiles & "\pics\save_tome.png", 1, 0, 0, 1920, 1080, 0, 0, 100)
    If Not $Target = 1 Then

    this needs to be added to the SellItems function right after the following code:

    If Not $Target = 1 Then
    MouseMove($Stash[0][0], $Stash[0][1], 0)
    Sleep(25 + $SellDelay)
    ###INSERT MY CODE HERE###

    Also do not forget to add the EndIf statements to close off the 2 If's you are adding... You also need to SS the word Inferno that is in the description of the mats when you hover over it as well as the title of Tome of Secrets and save those in files named inferno.png and save_tome.png
    tomes wont be selled if placed in the save spot (top left corner)

    and for saving the salvage mats i dont want to do everytime a whole screen resolution check if its a material or not. but maybe i will add something like this a bit more improved

  7. #997
    R444ge's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It is it salvagelocation i shall edit?
    and not $StashLocation[0] = Random(850, 855, 1)??

    just noticed the stach is on the line 2036, just to be sure XD

  8. #998
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by R444ge View Post
    It is it salvagelocation i shall edit?
    and not $StashLocation[0] = Random(850, 855, 1)??

    just noticed the stach is on the line 2036, just to be sure XD
    of course stashlocation on line 2036 lol... shame on me^^

  9. #999
    DonkeyNads's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zEEneXx View Post
    tomes wont be selled if placed in the save spot (top left corner)

    and for saving the salvage mats i dont want to do everytime a whole screen resolution check if its a material or not. but maybe i will add something like this a bit more improved
    true you can simply scan a smaller subset of the screen like you do when deciding to sell or save for salvage. point is though the bot does not save mats. yes you are correct if u put tomes in the top left corner they wont be sold. could not see the pic until i joined the site today...

  10. #1000
    R444ge's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zEEneXx View Post
    of course stashlocation on line 2036 lol... shame on me^^
    Haha shame on ya!!
    What shall I put the values to then?

  11. #1001
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by R444ge View Post
    Haha shame on ya!!
    What shall I put the values to then?
    higher them both about 30:
    $StashLocation[0] = Random(880, 885, 1)

  12. #1002
    DonkeyNads's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also, seems I forgot to say thanks for the script and kudos to you!

    one other thing I changed and others may like is I removed every line that had the following:

    Send("{ALT}")

    and set my option to enable/disable ground tips by pressing alt. this way the ground tips are always on. just a personal preference...

  13. #1003
    pimperium's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why the script dont use wall of zombies? its pretty good since the mobs get stacked and then is pretty easy to loot, and faster to clear.

    Its hard to do that?

    thanks

  14. #1004
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pimperium View Post
    Why the script dont use wall of zombies? its pretty good since the mobs get stacked and then is pretty easy to loot, and faster to clear.

    Its hard to do that?

    thanks
    it uses wall of zombies, if its not casted then your comp is "a bit to slow". increase $computerlag in steps of 50 until he casts it

  15. #1005
    pimperium's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zEEneXx View Post
    it uses wall of zombies, if its not casted then your comp is "a bit to slow". increase $computerlag in steps of 50 until he casts it
    thanks i ll try it, tbh my computer is fast. But i gonna try it.

    thanks bro

Similar Threads

  1. Replies: 440
    Last Post: 10-31-2012, 11:00 AM
  2. Replies: 148
    Last Post: 08-03-2012, 04:19 PM
  3. Replies: 5
    Last Post: 08-02-2012, 02:48 AM
  4. Replies: 6
    Last Post: 07-24-2012, 12:18 PM
  5. [AutoIt] How to enter Dank Cellar without moving a real mouse over it?
    By psychoangler in forum Diablo 3 Bots and Programs
    Replies: 3
    Last Post: 07-12-2012, 04:59 AM
All times are GMT -5. The time now is 07:05 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