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

User Tag List

Page 158 of 298 FirstFirst ... 58108154155156157158159160161162208258 ... LastLast
Results 2,356 to 2,370 of 4467
  1. #2356
    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)
    Press "=".....

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #2357
    MacGregor's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In a few minutes toon missed the cellar 2 times on 14 runs (50% open-closed but fails aren't recorded as such). My speed is 19% and system is Dual Core 3.4Ghz, SSD, 8Go, 560ti. Graphic options high + antialiasing (shadows on medium smooth).
    With previous versions at 12% speed and same graphics i wasnt missing.

    Script and version: lawl 2.0.4
    Help or request: cellar not found sometimes
    Desktop resolution: 1920*1080
    Diablo 3 window type: windowed fullscreen
    Operating system (32-bit or 64-bit): 64
    Manual or auto install: auto
    Move bound to mouse3: yes
    Where are you starting the: checkpoint
    Game language: english
    Last edited by MacGregor; 07-04-2012 at 06:19 AM.

  3. #2358
    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)
    Yeah I made the previous version and was on high settings, since a lot of people were on low settings they were having problems then. Ive changed my settings to low now aswell and also all the images. Should work if you change your settings to low.

    In the pics/1920x1068 folder my high quality images are stil in there, so if you wanna keep using higher video settings u can try renaming cellar1.png to cellar1.png and flawlesssquare1.png to flawlesssquare.png

  4. #2359
    kigor1988'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)
    am i the only one who think they nerfed open cellers spawn rate.. several short 15 min runs and all are at 30-35% for some reason (100% detection - just no open cellers )

    or is it just my bad luck today :/

  5. #2360
    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)
    Found a solution to 1366x768 users.
    Replace this

    Func FindCellar()
    $CellCoord = 0
    $gY = 0
    $gX = 0
    ;A precheck to the cellar search
    _ImageSearchArea($pngLoc & "Cellar.png", 1, Round(1672 * $x_ratio),Round(175 * $y_ratio),Round(1717 * $x_ratio),Round(209 * $y_ratio), $gX, $gY, 160)
    sleep($cellarCheckSleep)
    If $gX > 0 Or $gY > 0 then
    Do
    MouseMove(Round($cellarCoordx[$CellCoord] * $x_ratio), Round($cellarCoordy[$CellCoord] * $y_ratio), 1) ;moves cursor over to the cellar
    sleep($cellarCheckSleep)
    If $CellCoord < 6 then
    $Pixel2 = PixelSearch($cellarCoordx[$CellCoord] - 71 * $x_ratio,$cellarCoordy[$CellCoord] - 148 * $y_ratio,$cellarCoordx[$CellCoord] + 139 * $x_ratio,$cellarCoordy[$CellCoord] + 22 * $y_ratio, 0x334FB7, 3) ;checks for open cellar (in a 600x400 box from the top left - where it should always be)
    Else
    $Pixel2 = PixelSearch($cellarCoordx[$CellCoord] - 71 * $x_ratio,$cellarCoordy[$CellCoord] - 148 * $y_ratio,$cellarCoordx[$CellCoord] + 139 * $x_ratio,$cellarCoordy[$CellCoord] + 22 * $y_ratio, 0x007CB7F8, 3) ;checks for open cellar (in a 600x400 box from the top left - where it should always be)
    EndIf
    If Not @Error Then
    Return 1
    EndIf
    $CellCoord += 1
    Until $CellCoord >= Ubound($cellarCoordx)
    Else
    Return 0
    EndIf
    $countMissedCellar += 1
    Call("CellarScreenShot")
    Return 0
    EndFunc

    With this


    Func FindCellar()
    $CellCoord = 0
    $gX = 0
    $gY = 0
    ;A precheck to the cellar search
    _ImageSearchArea($pngLoc & "Cellar.png", 1, Round(1672 * $x_ratio),Round(175 * $y_ratio),Round(1717 * $x_ratio),Round(209 * $y_ratio), $gX, $gY, 160)
    sleep($cellarCheckSleep)
    If $gX > 0 Or $gY > 0 Then
    Do
    MouseMove(Round($cellarCoordx[$CellCoord] * $x_ratio), Round($cellarCoordy[$CellCoord] * $y_ratio), 1) ;moves cursor over to the cellar
    $mousePos = MouseGetPos()
    sleep($cellarCheckSleep)
    If $CellCoord = 5 then
    $Pixel2 = PixelSearch($mousePos[0] - 71 * $x_ratio,$mousePos[1] - 148 * $y_ratio,$mousePos[0] + 139 * $x_ratio,$mousePos[1] + 22 * $y_ratio, 0x007CB7F8, 3) ;checks for open cellar (in a 600x400 box from the top left - where it should always be)
    Else
    $Pixel2 = PixelSearch($mousePos[0] - 71 * $x_ratio,$mousePos[1] - 148 * $y_ratio,$mousePos[0] + 139 * $x_ratio,$mousePos[1] + 22 * $y_ratio, 0x334FB7, 3) ;checks for open cellar (in a 600x400 box from the top left - where it should always be)
    EndIf
    If Not @Error Then
    Return 1
    EndIf
    $CellCoord += 1
    Until $CellCoord >= Ubound($cellarCoordx)
    Else
    Return 0
    EndIf
    Return 0
    EndFunc

  6. #2361
    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)
    Originally Posted by kigor1988 View Post
    am i the only one who think they nerfed open cellers spawn rate.. several short 15 min runs and all are at 30-35% for some reason (100% detection - just no open cellers )

    or is it just my bad luck today :/
    Your bad luck, I've been botting for 2h now, getting 605k gph and 54% open cellars

  7. #2362
    MacGregor's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Right, low settings + no antialiasing solved it. Thank you.
    notice : I died once outside cellar (dart launching creatures) and it hasn't been recorded.

    How do script staches/sells stuff ? After 15 open cellar runs toon stashed but not selled blue magic items. And he also stashed stuff in page1, then page 2, and reverted to page 1 to deposit flawless emerald (shouldn't it be on page 2 like for tomes ?).

    [Looting]
    GPH Only=0
    ...
    Magic=1
    Custom=0

    [ManageLoot]
    Every=15

    [Stashing]
    Loot=1
    ...
    Magic=0
    ...

    [Vendoring]
    Loot=0
    Rares=0
    Magic=1
    All=0
    All-Rows=6
    All-Cols=10

    '[Vendoring]Loot=1' maybe ? I don't want to test and have toon sell rares well if unIDed should not.

  8. #2363
    D3XT3R's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Knyghthawke View Post
    Read the last couple of pages of the thread.
    I did so. but can't fnd any information? pelase tell me if you know! (about making it salvage items)

  9. #2364
    LuvFoxy's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anybody can help me, how do i install it? seems like am having trouble with installing it...

  10. #2365
    MacGregor's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you pick up autoinstaller ?

  11. #2366
    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)
    Originally Posted by MacGregor View Post
    Right, low settings + no antialiasing solved it. Thank you.
    notice : I died once outside cellar (dart launching creatures) and it hasn't been recorded.

    How do script staches/sells stuff ? After 15 open cellar runs toon stashed but not selled blue magic items. And he also stashed stuff in page1, then page 2, and reverted to page 1 to deposit flawless emerald (shouldn't it be on page 2 like for tomes ?).

    [Looting]
    GPH Only=0
    ...
    Magic=1
    Custom=0

    [ManageLoot]
    Every=15

    [Stashing]
    Loot=1
    ...
    Magic=0
    ...

    [Vendoring]
    Loot=0
    Rares=0
    Magic=1
    All=0
    All-Rows=6
    All-Cols=10

    '[Vendoring]Loot=1' maybe ? I don't want to test and have toon sell rares well if unIDed should not.
    You have to set Vendorloot to 1, else it won´t go to the vendor at all, even if vendormagic is 1.
    If you set identify to 0 the bot won´t be able to sell any rares/set/legendary's, so I usually just run with stash rares/set/legendary and vendor all = 1.

  12. #2367
    LuvFoxy's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MacGregor View Post
    Did you pick up autoinstaller ?
    yup but i cant run it...it says copied 0 file

  13. #2368
    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)
    My last Run:


    Stats:
    Total Runtime: 2 hours, 42 minutes
    Open Cellar Avg: 23.2s - Closed Cellar Avg: 9.5s
    Total Cellars Found: 224 (54%)
    Total Cellars Not Found: 190 (46%)
    Total Deaths: 0 (0%)
    Total Repairs: 0 (0%)

    Loot:
    Rares: 12 Legendary's: 3 Set Items: 0 Gems: 22
    596K Per Hour - Accumulated Gold: 1.6M
    ************************************************

  14. #2369
    ElGato's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it just me or is the LAWL script not teleporting since D3 Maintanace?

  15. #2370
    MacGregor's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LuvFoxy View Post
    yup but i cant run it...it says copied 0 file
    After unzipping did you double clicked on the .bat then on the .reg ?

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 06:54 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