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

Shout-Out

User Tag List

Page 148 of 298 FirstFirst ... 4898144145146147148149150151152198248 ... LastLast
Results 2,206 to 2,220 of 4467
  1. #2206
    HiFi'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 jcunit View Post
    Think more people have been trouble with that resolution, don't know if it has been fixed yet. You could try running in VMware to use a different resolution.
    I am also having the same problem in 1366x768. It just wants to do that additional click outside of open cellar which makes bot walks right next to cellar entrance and not going in, very annoying.

    It also doesn't loot, probably image issue, but I'd rather see the extra clicking thing fixed.

    I have a slower computer running vmware player, it can only handles D3 in 1366x768. Any other resolution higher than that is causing lag.

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #2207
    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 malcolmsteel View Post
    Chancity this is how you fix the lawl scripts for 1366x768. If anyone else is having problems entering cellars with 1366 resolution please refer them to this post.

    Step 1.
    Open lawl.au3 in notepad.
    Find this code:
    Code:
    Global $cellarCoordx[6] = [255, 280, 175, 265, 315, 600] 
    Global $cellarCoordy[6] = [290, 302, 305, 340, 314, 435]
    Replace it with this:
    Code:
    Global $cellarCoordx[6] = [255, 175, 315, 265, 280, 600] 
    Global $cellarCoordy[6] = [290, 305, 314, 340, 302, 435]
    Step 2.
    Find this code:
    Code:
      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
    Replace it with this:
    Code:
      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
       $countMissedCellar += 1
       Call("CellarScreenShot")
       Return 0
    EndFunc
    Step 3.
    Save it.

    This should fix 1366x768 resolution having problems entering the cellars with the lawl scripts.
    Makes no sense, I stopped using mousepos because I already know where the mouse will be because I define coordinates. The global coords are the same just i reorganized them to make more sense. What did you change?

    Sent from my DROID RAZR using Tapatalk 2

  3. #2208
    tibehrius's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please, I have a problem.

    It seems that the file "SimpleTesseractColor.au3" is not present in the zip files available for download.

    The other problem is that I can not use bind in mouse3, this option appears disabled for me.

    Anyone else with these problems?

    Thanks a lot! ;-)

  4. #2209
    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 tibehrius View Post
    Please, I have a problem.

    It seems that the file "SimpleTesseractColor.au3" is not present in the zip files available for download.

    The other problem is that I can not use bind in mouse3, this option appears disabled for me.

    Anyone else with these problems?

    Thanks a lot! ;-)
    Look for "move" I promise you its there. The simpletesseractcolor.au3 is in the auto install

    Sent from my DROID RAZR using Tapatalk 2

  5. #2210
    HiFi'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 tibehrius View Post
    Please, I have a problem.

    It seems that the file "SimpleTesseractColor.au3" is not present in the zip files available for download.

    The other problem is that I can not use bind in mouse3, this option appears disabled for me.

    Anyone else with these problems?

    Thanks a lot! ;-)
    Go to first page, download it from Auto Install, I'm sure it has all the files you need.

    Option > Key Binding > scroll down to "Move" (not "Move / Primary Skill / Interact), you should be able to bind mouse3 to it.

  6. #2211
    HiFi'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)
    When I run lawl.au3, it stucks at "Updating...". Anyone had this problem?

    Edit: screenshot
    Attached Thumbnails Attached Thumbnails [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]-lawl_updating_stuck-png  

  7. #2212
    malcolmsteel's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All I did is replace those two parts of the code with what it was on the 21 second scripts. I dunno exactly what it changes lol, but I can tell you it works and with the new code it doesn't.

  8. #2213
    chink4olif3's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by HiFi View Post
    When I run lawl.au3, it stucks at "Updating...". Anyone had this problem?

    Edit: screenshot
    Press "=" key

  9. #2214
    Brogers57's Avatar Sergeant
    Reputation
    7
    Join Date
    Jun 2012
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What do I need to update in order for it to pick up gems? Using 21s script
    Last edited by Brogers57; 07-03-2012 at 04:13 PM.

  10. #2215
    jahithber's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That seemed to fix it. Thanks! Although now it loads up the game, then quits directly to town and the menus. Do I need to take my own screenshots or something?

  11. #2216
    tiporaro's Avatar Private
    Reputation
    2
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Brogers57 View Post
    What do I need to update in order for it to pick up gems? Using 21s script
    I think Chanc stated that the 21s script is superceded by the new lawl, so not sure if he's updating/supporting that one still. But I'm sure he can chime in if he is.

  12. #2217
    brannutz's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by HiFi View Post
    When I run lawl.au3, it stucks at "Updating...". Anyone had this problem?

    Edit: screenshot
    JEEZ GUYS WTF SERIOUSLY, getting so anoyying seeing the same damn question 100 times. GO F'ING READ. Thread is too long? TOO F'ING BAD, we all been following it so do something for yourself and read it.

    The answer to this and about 90% of question is all on the FIRST POST U NOOBS. You don't even have to read the thread. Gawd lazy people.

    Chances are when you figure out how to actually start the script your timings are gonna be all screwed up and you will be back here asking why it wont go in the cellar.
    Last edited by brannutz; 07-03-2012 at 04:20 PM.

  13. #2218
    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 malcolmsteel View Post
    All I did is replace those two parts of the code with what it was on the 21 second scripts. I dunno exactly what it changes lol, but I can tell you it works and with the new code it doesn't.
    Alright well if its working its working..mind trying the new findcellar with the coords in the old order

    Sent from my DROID RAZR using Tapatalk 2

  14. #2219
    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)
    How do you guys manage to get 500-600k per hour?
    I have 25%ms and 263 GF and i only end up wth 315k gold per hour? I do the run with looting and selling items in 24ssec per run.

  15. #2220
    brannutz's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wittekop View Post
    i honestly don't feel like reading through all 140 pages looking for an answer

    Just plain rude, you want us to bot for you and send you the gold? We all read it man, you dont want to then don't use it.

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 11:52 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