[Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080] menu

Shout-Out

User Tag List

Page 224 of 298 FirstFirst ... 124174220221222223224225226227228274 ... LastLast
Results 3,346 to 3,360 of 4467
  1. #3346
    Vqz's Avatar Corporal
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New version is broken.it dropped my wrists lol thanks god i was near pc and saw it

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #3347
    jcunit's Avatar Knight
    Reputation
    19
    Join Date
    Jun 2012
    Posts
    220
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been using some of chancity's new code to improve the normal gui version. It's been running stable now for 2 nights so guess I'll share.

    Please keep in mind this is script has been adjusted for my computer/wiz, I've changed some timings and it wil only stash flawless emeralds, since that's all I needed. Also changed the walking coordinates for getting the loot a bit.
    It's using the unidentified question mark to stash items, which has worked flawlessly so far. All blues are vendored.

    I've added 2 functions from the newer versions. It will automaticly notice when you're bag is full and go to town and automaticly switch stash tab, so I can run it all day without worrying. Also the GUI will now show what tab it is stashing in, so I can easily see when I gotta clear some trash.

    https://www.dropbox.com/s/odygl3k09a...cunit.zip?dl=1


    No salvaging/ iLvl sorting!!
    Last edited by jcunit; 07-14-2012 at 04:14 AM.

  3. #3348
    MrKirby's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those having problems where it drags your Wrists to the inventory and just locks up, make sure "Close All Windows" is bound to space.

  4. #3349
    magda's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have set Stash 60, vendor 59, salvage 64, stashing is working fine, however...

    Script trys to stash my lvl 62 wrists in tab 3, i dont know why. It picks em up, hovers over tab 3, then places the wrist in slot 4 from first row. After then it pauses the script. Why is that chancity?

    edit: nvm thanks MrKirby, close all windows bound to spacebar did the trick
    Last edited by magda; 07-14-2012 at 04:41 AM.

  5. #3350
    dart86's Avatar Private
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    some bugfix/improvement:

    change
    Code:
    Sleep($timingGameLoad)
    with
    Code:
    Sleep(Round($timingGameLoad / 2))
    MouseMove(Round(0 * $x_ratio), Round(250 * $y_ratio))
    Sleep(Round($timingGameLoad / 2))
    we save a sec at the beginning of the run

    in LootGear, change
    Code:
    $Loot = PixelSearch(Round(400 * $x_ratio), 0, Round(1690 * $x_ratio), Round(900 * $y_ratio), $color, $tolerance)
    with
    Code:
    $Loot = PixelSearch(Round(420 * $x_ratio), 0, Round(1690 * $x_ratio), Round(900 * $y_ratio), $color, $tolerance)
    this avoid to click at the salvage log in the chat trying to pick a magic stuff

    in CheckFullInventory, change
    Code:
    If Not _ImageSearchArea($pngLoc & "FullInventory.png", 1, Round(1704 * $x_ratio), Round(778 * $y_ratio), Round(1895 * $y_ratio), Round(870 * $x_ratio), $gX, $gY, 140) Then
    with
    Code:
    If Not _ImageSearchArea($pngLoc & "FullInventory.png", 1, Round(1410 * $x_ratio), Round(585 * $y_ratio), Round(1895 * $y_ratio), Round(870 * $x_ratio), $gX, $gY, 100) Then
    it search for a 8x2 empty slot "everywhere": this solves some vendoring-loop if we pick some white item or something like that

    in StashLoot _ImageSearchArea misses last row (don't know if it's a bug or a choice.. for me it's a bug).. so change:
    Code:
    _ImageSearchArea($pngLoc & "TomeIcon.png", 1,  1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 820 * $y_ratio, $gX, $gY, 140) Then
    with
    Code:
    _ImageSearchArea($pngLoc & "TomeIcon.png", 1, Round(1410 * $x_ratio), Round(585 * $y_ratio), Round(1900 * $x_ratio), Round(875 * $y_ratio), $gX, $gY, 140) Then
    the same change with "$gems[$sg]" and "ExEss.png"

    in StashLoot, StashGems.. change:
    Code:
    For $sg = 0 To 3
    with
    Code:
    For $sg = 0 To Ubound($gems)-1
    the last version can't stash Iridescent Tear because it's "Rare" but GetItemInfo uses _ImageSearchArea searching for "Rare" text, but it has "Crafting" text..

    Thank you very much for your great work, chancity!
    Last edited by dart86; 07-14-2012 at 05:05 AM.

  6. #3351
    jcunit's Avatar Knight
    Reputation
    19
    Join Date
    Jun 2012
    Posts
    220
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great job dart, some things I also changed but some new tweaks too. Especially like the mouse moving at the start, simple yet effective .

    +repped!

  7. #3352
    magda's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I also noticed the script moving to left corner in cellar. I activated "show quest dialog in chat" under sound options. Now it doesnt click on the yellow / blue salvage messages anymore, because theres new chat from my hero and follower every run.

    I have one big problem though, it does NOT sell rares <59 for me please someone can help`? heres my config:

    [Auto Start]
    Auto Start=1
    Game Location=D:\Diablo III\
    Password=Your Password
    Task Manager Executable Name=Diablo III.exe
    [Skills]
    Skill1=1
    Skill2=2
    Skill3=3
    Skill4=4
    [Additional]
    DPS=15000
    Auto Update=1
    [Looting]
    Set=1
    Legendary=1
    Rare=1
    Magic=1
    Custom=0
    Gold Only=0
    [Stashing]
    Set=1
    Legendary=1
    Rare=1
    Magic=1
    Gems=1
    Tomes=1
    [Vendoring]
    Set=1
    Legendary=1
    Rare=1
    Magic=1
    All Items=1
    All-Rows=0
    All-Columns=0
    [Timing]
    Game Load=2200
    Wormhole=1375
    Town Portal=5100
    Cellar Click=750
    Middle Door=2400
    Loot Run=400
    Loot=600
    Abort=225
    [Cellar Detect]
    Screen Shot=1
    [Anal Loot]
    Stash Rare=60
    Salvage Rare=64
    Vendor Rare=59
    Stash Magic=63
    Salvage Magic=62
    Vendor Magic=60

  8. #3353
    GazCamp3r's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Chancity, ive tested ur newest script, its working kinda fine, but its not stashing the essence, and the tears (not a big deal, cause it not selling them, just leve them in my backpack), other problem is, that few item is staying in my backpack. I made a pic, so these items was left in my bp after 3 hours:
    LINK

    the ilvl is 61-62, so it should have been salvaged...

    my settings ini:

    Stash Rare=62
    Salvage Rare=61
    Vendor Rare=60
    Stash Magic=63
    Salvage Magic=62
    Vendor Magic=60

    (default i think)

  9. #3354
    bichlhuber'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)
    I dont get it, the last 2 versions havent been working properly for me, Somehow the cellar detection is still broken for me, and even if a cellar is open, he doesnt click on it.

    Stashing and Vendoring is perfect though, but falling only hitting 20% cellars sucks alot...

  10. #3355
    Davestwuk's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just checked debug, the bot is salvaging every run. Anyone got this problem and have any solutions?

  11. #3356
    InsaneSlayer's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stash Rare=57
    Salvage Rare=64
    Vendor Rare=56
    Stash Magic=64
    Salvage Magic=63
    Vendor Magic=60

    If i were to change the value to 64 will it ignore it? I don't want to store all magics and also don't want to sell any rares
    With rings and ammys that are 57ilvl they usually are shit , but they can roll something worth selling.
    The thing is the other pieces of gear(Chest,Pants,Gloves,Boots,etc.) that are 57-60 ilvl* can't roll to high cause of their limit cap and almost guarantee you can't even auction house it.
    Last edited by InsaneSlayer; 07-14-2012 at 06:52 AM.

  12. #3357
    Oxigen81's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Script and version: 8==D.4
    Help or request: bot stucks at "Unhighlighting new items"
    Desktop resolution: 1600x900
    Diablo 3 window type: fullscreen windowed
    Operating system (32-bit or 64-bit): 64bit
    Manual or auto install: auto
    Move bound to mouse3: yes
    Where are you starting the: old ruins
    Game language: english

    I made some pngs for 1600x900 for the new version. It works fine untill the bot starts to stash, vendor etc. while "unhighlighting new items" the mouse moves from the middle of my backpack down into nothing, and leaves game after 90 seconds.

  13. #3358
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by InsaneSlayer View Post
    Stash Rare=57
    Salvage Rare=64
    Vendor Rare=56
    Stash Magic=64
    Salvage Magic=63
    Vendor Magic=60

    If i were to change the value to 64 will it ignore it? I don't want to store all magics and also don't want to sell any rares
    With rings and ammys that are 57ilvl they usually are shit , but they can roll something worth selling.
    The thing is the other pieces of gear(Chest,Pants,Gloves,Boots,etc.) that are 57-60 ilvl* can't roll to high cause of their limit cap and almost guarantee you can't even auction house it.
    Rare, Legendary, Set rings are stashed regardless of ilvl. Changing a value of stash to 64 will make it not stash. Salvage to 64 will make it salvage. Vendorcto 64 it will still vendor. Ill add values this morning that will switch things off.

    Sent from my DROID RAZR using Tapatalk 2

  14. #3359
    jcunit's Avatar Knight
    Reputation
    19
    Join Date
    Jun 2012
    Posts
    220
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Make your own ExEss.png for stashing, just crop it without the right bottom corner so it doesn't conflict cause theres a number there. Chancity's doesn't know what he is doing most of the time.

  15. #3360
    farkedup's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've tried a few times now and every time my inv gets full it'll stash some stuff then I think its either heading towards selling stuff or to salvage it and it gets stuck in a corner. Completely default version of the script settings and all. I'm at 1920x1080 res which is what chancity uses and everything so its not from a weird screen res.

Similar Threads

  1. Replies: 440
    Last Post: 10-31-2012, 11:00 AM
  2. Replies: 272
    Last Post: 08-14-2012, 03:33 PM
  3. Replies: 3
    Last Post: 07-31-2012, 06:54 PM
  4. Replies: 37
    Last Post: 07-18-2012, 02:37 PM
  5. Replies: 164
    Last Post: 07-01-2012, 02:37 PM
All times are GMT -5. The time now is 12:10 AM. 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