[Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt] menu

User Tag List

Page 23 of 135 FirstFirst ... 19202122232425262773123 ... LastLast
Results 331 to 345 of 2011
  1. #331
    robble's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else having issues with the vendor portion of the script? It will run in the direction of the vendor but it stops at the Villager just outside of Cain's house and stays there. I've watched it go through the cycle twice and it stops there both times. Which is odd as a previous version of the script sold everything flawlessly.

    [Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt]
  2. #332
    impy'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)
    I followed all parts of the instructions, yet when I hit = on the main menu, my arrow goes to the top left on the menu screen and just sits there. The log file continues writing, so I know it's working, it just doesn't know how to start. Sadness.

    Any help?

  3. #333
    fukker's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2010
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by EnnDee View Post
    you have to put the ImageSearch.au3 file into your Autoit Installationpath into the folder "include".



    RandMove(Round(20*$x_ratio),Round(80*$y_ratio), 5, 5)

    you also have to fit the Cellarcheck function which looks for the right pixels in the area of the cellar. it's far more left than in widescreen resolutions.

    i think most mess and bugs comes from users with non 16:9 resolutions, because all the ratios dont really fit there.
    Scaling with x_ratio and so on makes just sense for switching between 16:9 resolutions.

    It COULD be a nice fix to force the game into a 16:9 windowed resolution even if Diablo III doesn't give you the native option to do so. Didn't test it ingame yet, but this could fix a lot of issues.
    Bnet europe is currently down and i gotta sleep, maybe someone has the time to test if it works. Here's the code:

    Winmove("Diablo III", "", 0,0,1366,768 )
    what is a good program to get coordinates? cellar is fixed and i need to fix inside the cellar coords

  4. #334
    fukker's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2010
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wanna contribute au3 script that shows coordinates when u press Q (It's not mines, i just found it, but its good for ppl to use)

    HotKeySet("q","q")

    While 1
    sleep(100)
    WEnd

    Func q()
    $pos = MouseGetPos()
    MsgBox(0,"Your mouse pointer coordinate is:", $pos[0]&"x"&$pos[1])
    EndFunc

    just save it as *.au3 file and press q in game

  5. #335
    effekt01's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey everyone, I had the exact same no starting error when pressing '=' as a lot of people on here, sorry I didn't do this earlier, just made an owned core account to share the info.

    So the reason it's not starting, and only for those of you that have followed the instructions very carefully, is that the images in the PNG are taken on a different system, with different colors and different shades, etc etc etc (GCards/drivers/other reasons). Take a screen shot of each of the important location checks; so screen the menu 'resume game' button, crop it in mspaint so it's just the button and save it over top of the image in the png folder for main menu (same exact name). Do the same for just after you hit resume (Old Ruins in the top right corner), new trist, dank celller, etc (might need rare/legendary vowels also).

    Spent hours on this, as soon as I replaced the pngs, everything started working.

    Good luck.

  6. #336
    archlord12345's Avatar Active Member
    Reputation
    17
    Join Date
    May 2012
    Posts
    186
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if you want to know when the game ended :

    add this on top ( line 7)

    #include <Date.au3>

    add this line at line 408 ( Func LeaveGame() )

    LogWrite("The time is: " & _NowTime())

    i sync the file with my dropbox so i can see anytime if the bot stopped working .
    Last edited by archlord12345; 06-14-2012 at 10:07 PM.

  7. #337
    Angrycoder's Avatar Knight-Lieutenant
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    370
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fukker View Post
    what is a good program to get coordinates? cellar is fixed and i need to fix inside the cellar coords
    Code:
    Func PositionAndColor()
          $pos = MouseGetPos()
          $lor = PixelGetColor($pos[0],$pos[1])
          MsgBox(0,"f", "Mouse position and pixel color:" & @LF & @LF & "X = " & $pos[0] & @LF & "Y = " & $pos[1] & @LF & "Color = " & $lor & " // " & Hex($lor,6))
       EndFunc

    Or

    Code:
    ; include some constants we use, like $GUI_EVENT_CLOSE or $WS_EX_TOOLWINDOW
    #include <GUIConstantsEx.au3> 
    #include <WindowsConstants.au3>
    
    ; Create a GUI window
    ; title will be 'Cursor nfo'
    ; width = 160, height = 40. The two -1 means the window will be centered on screen (this is AutoIt's doing,
    ; it's like we haven't specified WHERE we want the window exactly, so it just puts it in the middle)
    ; $WS_EX_TOOLWINDOW + $WS_EX_TOPMOST - these are two constants - variables with predefined values, that
    ; tell the GUI to draw a windows with small border and always on top
    GUICreate("Cursor nfo", 160, 40, -1, -1, -1, $WS_EX_TOOLWINDOW + $WS_EX_TOPMOST)
    
    ; Create two labels, don't worry about text being empty for now, the  reset is left, right, width, height
    $label1 = GUICtrlCreateLabel("", 5, 5, 150, 15)
    $label2 = GUICtrlCreateLabel("", 5, 20, 150, 15)
    
    ; helper variables, storing last known cursor position and color
    $ox = -1
    $oy = -1
    $oc = -1
    
    ; show our GUI window
    GUISetState(@SW_SHOW)
    
    ; In Infinite Loop do
    While True
        ; check GUI Messages (what windows sends to us) for possible events
    	Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE ; in the event user click the close button
                Exit
    	EndSwitch
    		
    	; call function MousePos
    	MousePos()	
    	; sleep for 25ms, this is here just so we don't read the cursor every processor tick
    	Sleep(25)
    
    WEnd
    	
    ; Function that reads the cursor
    Func MousePos()
        ; get the mouse cursor position, absolute
    	$pos = MouseGetPos()
    	; get pixel color
    	$col = PixelGetColor($pos[0], $pos[1])
    	; if anything changed (i.e. any saved value is not the same as current value)
    	If ($ox <> $pos[0] OR $oy <> $pos[1] OR $oc <> $col) Then
    		; save the current value
    		$ox = $pos[0]
    		$oy = $pos[1]
    		$oc = $col
    		; update the labels with the current readings
    		SetLabels($pos[0], $pos[1], $col)
    	EndIf
        
    EndFunc
    
    ; set label text
    Func SetLabels($x, $y, $col)
    	; construct the text
    	$textPos = "Mouse pos x:" & $x & " y:" & $y
    	$textCol = "Color: " & Hex($col, 6)
    	; set the text to the labels
    	GUICtrlSetData($label1, $textPos)
    	GUICtrlSetData($label2, $textCol)
    EndFunc
    Or if you use AHK

    Code:
    ;------------------------------------------------
    ; a simple screen location and color grabber for
    ; use in mmo's to grab important locations
    ; copies the x,y coordinates and the color at that
    ; location to the clipboard. Use paste or Ctrl-V
    ; to insert the color into a script or text file.
    ; this can be used for finding click locations,
    ; health and mana bar colors, on screen ui elements
    ; etc.
    XButton2::
    DoFastGrab:
       MouseGetPos, oposx, oposy
       Sleep 300
       PixelGetColor, grabcolor, %oposx%, %oposy%, RGB
       Sleep 300
       Clipboard = %oposx%,%oposy%,%grabcolor%
       ClipWait
       Soundbeep,750
       SoundBeep,750
       Return
    I prefer the AHK version personally, since it copies the coords and color to your clipboard. Im sure the exact same fuctionality could be made in AutoIt. First 2 codes are AutoIt tho.

  8. #338
    Angrycoder's Avatar Knight-Lieutenant
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    370
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I also want to point out that the loot fuction is working flawlessly for me (1280x720). Had to make my own PNGs ofcourse, still dont have all the letters (will upload after they are all done).

    Watched the script for a little over 2 hours, and it picked up every blue, every yellow, and every flawless gem, with 0 errors. Never picked up a random white, and never missed a single item. I cant use Shims actual bot yet, since i cant get past the "The Old Ruins", tho im sure its just an extremely picky PNG issue, since i can get his script to log log ingame, teleport, log out etc.

    Just wanted to report that Shims loot code (inserted into my own script) is working perfectly for me, with 0 errors after a few hours of watching.

    Will try to get Shims script to work for me tomorrow, just to compare what i use now to his (he is way way way more advanced in AutoIt than i am). But all my previous loot problems have been solved.... its not the code, at all. If you are having issues with looting, its your PNGs, so i suggest just making your own.

  9. #339
    Vitt4300's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So if my char dies then my game never does anything else. It gets stuck there. And sometimes it gets stuck in town and never moves after that. anyone?

  10. #340
    Lentoo7's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question. I'm having the issue as in Troubleshooting #2

    2 - Mouse Moves around in bottom right corner on menu
    => PNGs are not being found, doublecheck INI settings

    I doublechecked the INI settings and it all seems right.

    my folder is on my desktop, labeled d3loot so I have it as:
    $pngLoc = "C:\Users\Anthony\Desktop\d3loot\" ;Location of the .PNGs

    I tried it without the \ at the end as well... what am I missing here?

  11. #341
    Angrycoder's Avatar Knight-Lieutenant
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    370
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lentoo7 View Post
    Question. I'm having the issue as in Troubleshooting #2

    2 - Mouse Moves around in bottom right corner on menu
    => PNGs are not being found, doublecheck INI settings

    I doublechecked the INI settings and it all seems right.

    my folder is on my desktop, labeled d3loot so I have it as:
    $pngLoc = "C:\Users\Anthony\Desktop\d3loot\" ;Location of the .PNGs

    I tried it without the \ at the end as well... what am I missing here?
    You need the \ there, no matter what.

    If PNGs are not being found, you should make your own. It takes a little time, but it will ensure it works for your pc.

  12. #342
    Neutrolizer's Avatar Member
    Reputation
    11
    Join Date
    Aug 2008
    Posts
    112
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have the latest version and everything but I'm still picking up whites.

    I noticed Shim said somewhere in the thread, maybe page 13, the reason why is that I'm moving before actually clicking and thats throwing the coordinates off. This could maybe be my movement speed or pngs. I did change my screen resolution to 1600x900

    The question on speed is that I have hot pursuit on and have 0 MS on my boots. Now should I put into the script 15% or 0%? If none of that solves the problem, which part of this Sleep(Random(500,2000)) do i change to increase the timer on looting gear?

    THanks!

    edit: seems that it has no problems with gems, tombs, and rares. The problem occurs somehow when its looking for magical blue items. It just clicks the aura thats on the ground rather than the name when its all cluttered. WHen the magical item is by itself and isolated, it actually clicks the name.
    Last edited by Neutrolizer; 06-15-2012 at 02:37 AM.

  13. #343
    Ry0suk1's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    19
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    manage to get it start resume game but when it goes into the game it will teleport back to town and leave game, and continue to loop...
    anyone know what can i do?
    Below shows old ruins not found
    Last edited by Ry0suk1; 06-15-2012 at 02:23 AM.

  14. #344
    momo69'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)
    what coordinates do you guys use to find the cellar, because i try so fix it and i cant seem to find the right ones...for line 186 in the code and 198...im running 1920 with 1080 rez...and i was able to get just 50% of the cellars...other times it just skips it!
    other then that everything else runs smooth!
    great job man

  15. #345
    wuddafxpwn's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my bot seems to be working pretty amazing, seeing a few flaws though, after having observed it for an hour or two i see that the ferrets sometimes get stuck to the left or right of the chest and u miss out on thousands of gold, possibly add in a ferret recast after having ran up to sarkoth would do the trick of fixing this?

Similar Threads

  1. Replies: 113
    Last Post: 01-06-2014, 12:49 PM
  2. Replies: 36
    Last Post: 08-04-2012, 02:05 PM
  3. Need help [Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt]
    By heina in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 07-13-2012, 12:06 PM
  4. REQUEST: Shimizoki's Sarkoth DH Script [AutoIt] Pick up only itemlvl 63 rares.
    By ALWIN21 in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 07-10-2012, 07:10 PM
  5. [Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt]
    By Shimizoki in forum Diablo 3 Bots and Programs
    Replies: 403
    Last Post: 06-15-2012, 03:42 PM
All times are GMT -5. The time now is 02:27 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