[Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080] menu

User Tag List

Page 51 of 300 FirstFirst ... 474849505152535455101151 ... LastLast
Results 751 to 765 of 4489
  1. #751
    mechtn's Avatar Corporal
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is what I'm using for blue detection and it's been working very well. I'm checking inventory every 15-20 minutes and salvaging also.

    ;Add to the top under $LootGems
    $LootBlues = True

    ;Add between LootRares routine and LootGems routine in the CheckLoot function

    If $LootBlues Then
    $BlueLoot = PixelSearch(Round(400*$x_ratio), 0, Round(1690*$x_ratio), Round(900*$y_ratio), 0x6969FF, 2) ; blue loot
    If Not @error Then
    MouseClick ('left', $BlueLoot[0], $BlueLoot[1])
    Sleep(Random(700,900))
    $i+= 1
    If $i <= 6 Then
    Call("CheckLoot")
    EndIf
    EndIf
    EndIf

    [Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
  2. #752
    rvbfreak's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm awake now. @goofinator I'll mess with the tolerances and post here.

  3. #753
    Hodari's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I added your blue loot code and about shit myself when i saw it pick up an item. but there was 2 items there and it only got one of them. Im guessing their is a problem with the array?

    edit: it just went through a 2nd time and only 1 blue dropped and it didnt pick that up.

  4. #754
    asuRob's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those of you getting the error:

    if $result[0] = "0"
    Array error

    After much debugging and tinkering around I think this is related to a weird quirk with AutoIt and Win 7 x64

    I had to make a coupe of changes to get this to work

    1. Install auto-it with the "Native 64-bit" option checked
    2. I re-compiled the assembly as x64 : ImageSearchDLL.dll
    3. Install the assembly somewhere on your C: drive (note the location).
    4. Modify ImageSearch.au3 and input the path to the 64-bit version

    $result = DllCall("C:\ImageSearchDLL\x64\Debug\ImageSearchDLL.dll","str","ImageSearch","in t",$x1,"int",$y1,"int",$right,"int",$bottom,"str",$findImage)

    5. modify the line (note the added [0]) :

    $array = StringSplit($result[0],"|")

    Now when you run the script . run it in 64-bit mode (right click run as 64)

    .. This should fix the problem for those of you getting that error ..

    Now I need to rest my head after banging it on a wall for 4 hours.


    Note... this is what the final code is for ImageSearch.au3 (it was also throwing an error when it could not find a match (empty array)

    Func _ImageSearchArea($findImage,$resultPosition,$x1,$y1,$right,$bottom,ByRef $x, ByRef $y, $tolerance)
    if $tolerance>0 then $findImage = "*" & $tolerance & " " & $findImage
    $result = DllCall("C:\ImageSearchDLL\x64\Debug\ImageSearchDLL.dll","str","ImageSearch","in t",$x1,"int",$y1,"int",$right,"int",$bottom,"str",$findImage)
    if @error then
    msgbox(64, "ERROR", $result & @error)
    EndIf

    if $result = "0" then return 0

    ; Otherwise get the x,y location of the match and the size of the image to
    ; compute the centre of search

    $array = StringSplit($result[0],"|")
    if(UBound($array) >= 4) then
    $x=Int(Number($array[2]))
    $y=Int(Number($array[3]))
    if $resultPosition=1 then
    $x=$x + Int(Number($array[4])/2)
    $y=$y + Int(Number($array[5])/2)
    endif
    return 1
    EndIf
    EndFunc
    Last edited by asuRob; 06-10-2012 at 02:12 PM.

  5. #755
    notAres's Avatar Knight-Lieutenant
    Reputation
    124
    Join Date
    Jun 2012
    Posts
    318
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just got up too. Last night while I was cranking away at 1.3b, ownedcore was down for hours and I couldn't come grab any pngs to test. All I did was set it up and make sure it still runs through error free, I did not have time to make sure it's looting. If rvb/goof see anything that needs to be recoded or refined, post it here and I'll port it into the next version when I start coding again later today.

    I'm also on Win7 x64 and was reading about likely compatibility issues. However, I do not get the same $x array error that some of you are getting, so try running autoit in x64 like me.

  6. #756
    sectorix'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)
    question on how to fix the following :

    i watched the screen for a few while script runs and i find that :
    1. not all the times that the cellar is open, the script finds and sends the DH there
    2. sometimes the timing is wrong so it leaves the game but starts moving around the mouse as if in a game, but not really and fixes after a "run"

  7. #757
    mechtn's Avatar Corporal
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm running 1.3a + my blue loot code and have tweaked several of the sleep times in various sections which seemed to make the script extremely stable for myself. So far the only thing i've seen it miss is a gem every once in a while. I'm not using any of the imagesearch code until it appears to be more stable. At the end of the day I'm OK with it not being perfect as its primary purpose is gold gathering.

  8. #758
    Hodari's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When you are compiling you are check the x64?

  9. #759
    Surgam's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where is everyone finding the png's at?

  10. #760
    vampyrerain's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vampyrerain View Post
    I'm getting the same problem as others

    Attachment 7948
    anyone find a solution to this yet? I've been fiddling with it since i first got the error, but no results yet.

    Edit: I ran the script in x64, and didnt get the error anymore, however it was not looting.

    I made .png's for it to loot ALL gems, and ALL pages, so i could run this on nightmare with my lowbie.
    Last edited by vampyrerain; 06-10-2012 at 02:25 PM.

  11. #761
    Hodari's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The main programming people just woke up and have gone over the thread to see the problems we are having. Give them time to have a life and im sure they will get around to working on it tonight.

    Just to make sure we are all on the same page, are you using the compiler as x86 or are you checking the compile for x64 system? Are you doing anything special to launch the compiled exe?

  12. #762
    boss007's Avatar Private
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Surgam View Post
    Where is everyone finding the png's at?
    yes, please enlight us, read the entire read where are the png's?

  13. #763
    Hodari's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The png's are on like page 36.

  14. #764
    sectorix'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)
    Originally Posted by mechtn View Post
    I'm running 1.3a + my blue loot code and have tweaked several of the sleep times in various sections which seemed to make the script extremely stable for myself. So far the only thing i've seen it miss is a gem every once in a while. I'm not using any of the imagesearch code until it appears to be more stable. At the end of the day I'm OK with it not being perfect as its primary purpose is gold gathering.
    1. can you share your version ?
    2. so what gets picked for you ? ( legendary/set/rare/tome/gem or just gold )

  15. #765
    goofinator's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Hodari View Post
    The png's are on like page 36.
    i have an updated post on page 48

Similar Threads

  1. Replies: 17
    Last Post: 12-14-2012, 07:21 PM
  2. Replies: 108
    Last Post: 07-03-2012, 02:39 PM
  3. Auto IT Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
    By Peterk426 in forum Diablo 3 Bots Questions & Requests
    Replies: 5
    Last Post: 07-02-2012, 03:05 PM
  4. Replies: 5
    Last Post: 06-19-2012, 01:36 PM
  5. [Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
    By notAres in forum Diablo 3 Bots and Programs
    Replies: 1118
    Last Post: 06-11-2012, 10:32 AM
All times are GMT -5. The time now is 05: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