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

Shout-Out

User Tag List

Page 42 of 300 FirstFirst ... 38394041424344454692142 ... LastLast
Results 616 to 630 of 4489
  1. #616
    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)
    @goofinator use my updated pastebin

    if that doesn't work, copy and paste your error log here

    EDIT: I got rid of $lastArrayItem and made $totalItems to simplify editing it in the future
    Edit Edit: Give me a sec and I'll fix that code for the hell of it

    edit edit edit:
    Code:
    $currentArrayItem = 0
    $totalItems = 2 ;you need to change this to the number of items in the array minus 1 (because it starts with 0)
    $gX = 0
    $gY = 0
    
     
    ;First to declare the array
    Global $pick[$totalItems] 
    $pick[0] = "tome.png" ;this is self explanatory
    $pick[1] = "uare.png"
     
    ;once thats all set up, lets look at the actual code
    Func pickItems()
            $currentArrayItem = 0
            $gX = 0
            $gY = 0
            for $i = 0 to ($totalItems - 1)
                    $urlString = "C:\Users\Chris\Desktop\AutoIt_Images\" & $pick[$i] ;once again, change the path
                    MsgBox("","",$urlString)
                    $Search = _ImageSearchArea($urlString,1,0,0,@DesktopWidth,@DesktopHeight,$gX,$gY,100)
                    if $search = 1 then
                            MouseMove($gX, $gY, 3)
                            sleep(1000)
                            MouseClick("left",$gX,$gY,1,1)
                    Else
                    EndIf
            next
    EndFunc
    Last edited by rvbfreak; 06-09-2012 at 09:20 PM.

    [Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]
  2. #617
    darknight666's Avatar Master Sergeant
    Reputation
    1
    Join Date
    May 2012
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @rvbfreak

    anyway way you can make it pick up Tomes?

  3. #618
    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)
    Originally Posted by darknight666 View Post
    @rvbfreak

    anyway way you can make it pick up Tomes?
    http://www.ownedcore.com/forums/diab...ml#post2294068

  4. #619
    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 rvbfreak View Post
    @goofinator use my updated pastebin

    if that doesn't work, copy and paste your error log here

    EDIT: I got rid of $lastArrayItem and made $totalItems to simplify editing it in the future
    Edit Edit: Give me a sec and I'll fix that code for the hell of it
    It was my bad, forgot to declare the variables up top, code was running before the variables got declared, ok so now it is cycling through the items, well giving me a popup box of the path.

  5. #620
    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)
    Originally Posted by goofinator View Post
    It was my bad, forgot to declare the variables up top, code was running before the variables got declared, ok so now it is cycling through the items, well giving me a popup box of the path.
    whoops, delete the MsgBox line. I added that to debug the $urlString.

  6. #621
    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 rvbfreak View Post
    whoops, delete the MsgBox line. I added that to debug the $urlString.
    ok i have it working and picking up tomes and gems, but after it picks up a tome it clicks off to the left for some reason, it resumes and keeps going, i'll check the code again, just odd that it try's to click on something that is not there

    Edit: working good now, should we start working on more images? wonder what would be the easiest way to get Legendary and set items letters
    Last edited by goofinator; 06-09-2012 at 09:30 PM.

  7. #622
    darknight666's Avatar Master Sergeant
    Reputation
    1
    Join Date
    May 2012
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @rvbfreak

    can you check mine for me please



    Code:
    Send("{ALTDOWN}")
       gem()
    Send("{ALTUP}")
    SLeep(10)
    EndIf
    Send("{ALTUP}")
    If $LootTomes Then
     
    Send("{ALTDOWN}")
       tome()
    Send("{ALTUP}")
    SLeep(10)
    EndIf
    Send("{ALTUP}")
    EndFunc
     
     
    Func gem()
            $gX = 0
            $gY = 0
            $Start = 0
            ;variables are all set, now onto the scan.
     
            $start = _ImageSearchArea('C:\Users\john\Desktop\uare.png',1,0,0,@DesktopWidth,@DesktopHeight,$gX,$gY,120)
            While $start = 1
                    MouseMove($gX,$gY,3)
                    Sleep(100)
                    MouseClick("left",$gX,$gY)
                    Sleep(1200)
                    $start = _ImageSearchArea('C:\Users\john\Desktop\uare.png',1,0,0,@DesktopWidth,@DesktopHeight,$gX,$gY,120)
                    WEnd
            EndFunc
     
    Func tome()
            $gX = 0
            $gY = 0
            $Start = 0
            ;variables are all set, now onto the scan.
     
            $start = _ImageSearchArea('C:\Users\john\Desktop\tome.png',1,0,0,@DesktopWidth,@DesktopHeight,$gX,$gY,120)
            While $start = 1
                    MouseMove($gX,$gY,3)
                    Sleep(100)
                    MouseClick("left",$gX,$gY)
                    Sleep(1200)
                    $start = _ImageSearchArea('C:\Users\john\Desktop\tome.png',1,0,0,@DesktopWidth,@DesktopHeight,$gX,$gY,120)
                    WEnd
    EndFunc

  8. #623
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by goofinator View Post
    ok i have it working and picking up tomes and gems, but after it picks up a tome it clicks off to the left for some reason, it resumes and keeps going, i'll check the code again, just odd that it try's to click on something that is not there

    Edit: working good now, should we start working on more images? wonder what would be the easiest way to get Legendary and set items letters
    i tried your modified code and giving me error

    [Goldfarming] notAres' Sarkoth DH Gold Script [AutoIT Script] [1920x1080]-errorxr-png

  9. #624
    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)
    PasteBin

    Current build of code that i am using, if your using as well check your folder path.

    Edit: forgot to change the gem() to pickItems()
    Last edited by goofinator; 06-09-2012 at 09:38 PM.

  10. #625
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rvbfreak View Post
    whoops, delete the MsgBox line. I added that to debug the $urlString.

    Can you please your source of dll . You can also post source code for compiling

  11. #626
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by goofinator View Post
    PasteBin

    Current build of code that i am using, if your using as well check your folder path.

    Edit: forgot to change the gem() to pickItems()
    I am still getting error at ImageSearch.au line 40

    but i am using different dll. downloaded from here: Image Search Library - AutoIt Forums - Page 4

  12. #627
    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)
    Originally Posted by goofinator View Post
    Edit: working good now, should we start working on more images? wonder what would be the easiest way to get Legendary and set items letters
    I think the best thing to do right now is get as many screens of dropped legendary/set items as possible. That includes everyone reading this. Have a legendary/set item in your stash? Even if it's already been discovered it helps a lot. Post as many as you can.

    Originally Posted by MonsterMMORPG View Post
    i tried your modified code and giving me error
    Use the code that goofinator just posted. He had the same problems and got it running just fine. Plus, it will make my life much easier ^_^

    As for the DLL source, it isn't my DLL. Use the one I posted on page 36....actually I'll just attach it again.
    Last edited by rvbfreak; 06-09-2012 at 09:48 PM.

  13. #628
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rvbfreak View Post
    I think the best thing to do right now is get as many screens of dropped legendary/set items as possible. That includes everyone reading this. Have a legendary/set item in your stash? Even if it's already been discovered it helps a lot. Post as many as you can.


    Use the code that goofinator just posted. He had the same problems and got it running just fine. Plus, it will make my life much easier ^_^[/QUOTE]

    I am using that code but still getting error

    I am talking about dll file. Where did you get that dll file =?

  14. #629
    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)
    Originally Posted by MonsterMMORPG View Post
    Use the code that goofinator just posted. He had the same problems and got it running just fine. Plus, it will make my life much easier ^_^

    I am using that code but still getting error

    I am talking about dll file. Where did you get that dll file =?
    File is attached below. I got it from a german forum.
    Attached Files Attached Files
    Last edited by rvbfreak; 06-09-2012 at 09:51 PM.

  15. #630
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rvbfreak View Post
    File is attached below.
    Ok i am using it. How come i am having problem i dont get.

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 09:36 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