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

User Tag List

Page 70 of 298 FirstFirst ... 20666768697071727374120170 ... LastLast
Results 1,036 to 1,050 of 4467
  1. #1036
    YummyMango'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)
    This script is working decently for me. The toon is picking up blues, gems, gold etc. No Legendary for me though and also very less (1-2) yellows.
    One question about the dps, does it matter if you have high DPS? Anyways with around 160% GF, last night after running it for like 9 hours I got 1.7 mil. Not bad I think. Also want to comment that though the dank cellar spawn is random I see that it has decreased. I will try to get better GF items and run again tonight to see what kind of results I get.

    Oh btw this is with the main script not the 21s one.

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #1037
    Prod1700's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by feongr View Post
    Oooo nice run. Were the legendaries real or false positives?

    On my run last night I had about 360K/hr over 7h 45m and I have 251 gf. Maybe I will change to the enchantress instead of the templar to increase my DPS.
    My stash only had 1 in it so I am guessing that there was 3 false positives.

    Sent from my Xoom using Tapatalk 2

  3. #1038
    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)
    Newest 21s w/ Cellar Detection: [AutoIt] 21s w/ Cellar Check - Pastebin.com

    Usage:
    Code:
    If FindCellar() = 1 Then
    	If CheckDead() Then
    		  Return
    	 EndIf
    MouseClick("left",$cellarCoordx[$CellCoord],$cellarCoordy[$CellCoord],1)
    Variables:
    Code:
    ;Cellar Check HERE
    
    $CellCoord = -1
    $c = 0
    
    $ScreenShotCloseCellar = 0 ;A helper to find different coordinates for cellar detection slows runs down about a second though.
    $cellarCheckSleep = 135 ;Increase this if you find the script double clicking
    
    ;These correspond to eachother IE: coord 1 (255,290) coord 2 (175,305)
    ;If you add or change any of these remember to change line: "If $c = 5 then"
    ;to where ever in the array (600,435) is. Remember when reading the array it starts at 0
    Global $cellarCoordx[6] = [255, 175, 315, 265, 280, 600] 
    Global $cellarCoordy[6] = [290, 305, 314, 340, 302, 435]
    ;====================================;
    Main Function:
    Code:
     Func FindCellar()
       $CellCoord = -1
       $c = 0
       Do
    		If $c >= Ubound($cellarCoordx) Then ;Make sure we never get stuck here for infinity.
    		   If $CellCoord = -1 Then $CellCoord = 0
    		   Return 0
    		EndIf
       RandMove(Round($cellarCoordx[$c] * $x_ratio), Round($cellarCoordy[$c] * $y_ratio), 1, 1) ;moves cursor over to the cellar
       $mousePos = MouseGetPos()
       sleep($cellarCheckSleep)
       If $c = 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
    		 $CellCoord = $c
    		 Return 1
    	 EndIf
    	  $c += 1
       Until $CellCoord >= 0
       If $CellCoord = -1 Then $CellCoord = 0
       Return
    EndFunc
    Last edited by chancity; 06-28-2012 at 10:29 AM.

  4. #1039
    ElijahBailey's Avatar Member
    Reputation
    7
    Join Date
    Jun 2012
    Posts
    157
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Find the part in the ini where it says
    Global $size = WinGetClientSize("[CLASS3 Main Window Class]"), $Kill = ProcessList("AutoIt3_x64.exe"), $ver = "2.0.0", $ini = "25s.ini",....
    and change it so that it says
    $ini = @ScriptDir & "\25s.ini",

    Otherwise you may find that the 25s.ini is being created in the windows/system32 directory and not where you think it should be (same directory as script).

    Originally Posted by sylvarius View Post
    I am also having this problem

  5. #1040
    Shalth's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chancity View Post
    Newest 21s w/ Cellar Detection: [AutoIt] 21s w/ Cellar Check - Pastebin.com

    Usage:
    Code:
    If FindCellar() = 1 Then
    	If CheckDead() Then
    		  Return
    	 EndIf
    MouseClick("left",$cellarCoordx[$CellCoord],$cellarCoordy[$CellCoord],1)
    Variables:
    Code:
    ;Cellar Check HERE
    
    $CellCoord = -1
    $c = 0
    
    $ScreenShotCloseCellar = 0 ;A helper to find different coordinates for cellar detection slows runs down about a second though.
    $cellarCheckSleep = 135 ;Increase this if you find the script double clicking
    
    ;These correspond to eachother IE: coord 1 (255,290) coord 2 (175,305)
    ;If you add or change any of these remember to change line: "If $c = 5 then"
    ;to where ever in the array (600,435) is. Remember when reading the array it starts at 0
    Global $cellarCoordx[6] = [255, 175, 315, 265, 280, 600] 
    Global $cellarCoordy[6] = [290, 305, 314, 340, 302, 435]
    ;====================================;
    Main Function:
    Code:
     Func FindCellar()
       $CellCoord = -1
       $c = 0
       Do
    		If $c >= Ubound($cellarCoordx) Then ;Make sure we never get stuck here for infinity.
    		   If $CellCoord = -1 Then $CellCoord = 0
    		   Return 0
    		EndIf
       RandMove(Round($cellarCoordx[$c] * $x_ratio), Round($cellarCoordy[$c] * $y_ratio), 1, 1) ;moves cursor over to the cellar
       $mousePos = MouseGetPos()
       sleep($cellarCheckSleep)
       If $c = 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
    		 $CellCoord = $c
    		 Return 1
    	 EndIf
    	  $c += 1
       Until $CellCoord >= 0
       If $CellCoord = -1 Then $CellCoord = 0
       Return
    EndFunc
    Hello Chancity,

    When you are going to push it to the auto update? and change the 1st post with the new skills?
    How much radius we need? cannot wait to try it out. Great Work! I'm currently using Version 2, it's running flawlessly! totally amazing.

    Thanks

  6. #1041
    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 Shalth View Post
    Hello Chancity,

    When you are going to push it to the auto update? and change the 1st post with the new skills?
    How much radius we need? cannot wait to try it out. Great Work! I'm currently using Version 2, it's running flawlessly! totally amazing.

    Thanks
    Just updated the OP just for you. I'll push an update once I get the cellar detection all figured out. I keep posting the pastebin so that people will test it out and tell me what kind of problems there running into with it.

    Originally Posted by ElijahBailey View Post
    Find the part in the ini where it says
    Global $size = WinGetClientSize("[CLASS3 Main Window Class]"), $Kill = ProcessList("AutoIt3_x64.exe"), $ver = "2.0.0", $ini = "25s.ini",....
    and change it so that it says
    $ini = @ScriptDir & "\25s.ini",

    Otherwise you may find that the 25s.ini is being created in the windows/system32 directory and not where you think it should be (same directory as script).
    I changed the $ini variable to explicitly point at the script directory..just for you! lol

  7. #1042
    siccario's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  8. #1043
    ElijahBailey's Avatar Member
    Reputation
    7
    Join Date
    Jun 2012
    Posts
    157
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Heya chancity, testing out your new cellar detection code now. However I gotta say, I don't think it's a good idea to randmove the mouse, esp since we are still just looking at the same 5 coordinates, pretty sure the game isn't gonna detect where the mouse 'is', maybe just where the mouse 'clicks'. Trying it out now without the randomization, working so far, will keep looking at it

  9. #1044
    HEahCz's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tried to use 1600x900, 2 black gaps (top/bottom) appears. No one figured it out for 1680x1050?

  10. #1045
    almalexia's Avatar Member
    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)
    Thank for this great script Chancity.

    I've tried the latest version with Cellar detection.
    I can see randoms mouse movements to detect the Cellar but it missclick and does not enter inside.


    I have a question,

    When I'm launching the script, it's already stopped with UPDATING status forever
    So, I'm pushing the "=" to start the script manually but it seems that the loot panel update very rarely.
    I means, it stay with "0 gold", then at 10min or maybe 20min, it will update one time.
    The script is not firewall blocked, any idea ?

  11. #1046
    vodca12's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Chancity, please check ur inbox for 1360x768 screenshots, thanks before!

  12. #1047
    OwnedByFate's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I just got lost here. So many versions floating around ;]. Is there one that has ability to pick legendaries, uses archon tele and when timeout/disconnected error pops up it can re-enter my password and start looting again ? Give me a hand here lads.

  13. #1048
    HEahCz's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by almalexia View Post
    Thank for this great script Chancity.

    I've tried the latest version with Cellar detection.
    I can see randoms mouse movements to detect the Cellar but it missclick and does not enter inside.


    I have a question,

    When I'm launching the script, it's already stopped with UPDATING status forever
    So, I'm pushing the "=" to start the script manually but it seems that the loot panel update very rarely.
    I means, it stay with "0 gold", then at 10min or maybe 20min, it will update one time.
    The script is not firewall blocked, any idea ?
    I fixed the miss click by adding more time to this line, remember, this WILL increase your run-time.

    ;Cellar Check HERE
    $ScreenShotCloseCellar = 0 ;A helper to find different coordinates for cellar detection slows runs down about a second though.
    $cellarCheckSleep = 335 ;Increase this if you find the script double clicking

    Play with the bold number to figure what fits better for you.

    EDIT: BTW my bot keeps getting stuck after he enters the dark cellar, sometimes stuck on the desk or near the doorway chest. Any solution?

  14. #1049
    sylvarius's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OwnedByFate View Post
    I think I just got lost here. So many versions floating around ;]. Is there one that has ability to pick legendaries, uses archon tele and when timeout/disconnected error pops up it can re-enter my password and start looting again ? Give me a hand here lads.
    I am kind of confused too, thread is kinda all over the place. I have been succesfullyish using the 21s script, archon/tele/legendaries. Not sure that it can re-enter password and start from desktop however. I still don't know if the 21s is using both the first and second stash tabs too.

  15. #1050
    siccario's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where i can find the "21s w/ Cellar Detection"?

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 10:28 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