Sarkoth Gold Farm [Original Script Credit to Mackus] - Modified by Jakesmurf menu

User Tag List

Page 6 of 8 FirstFirst ... 2345678 LastLast
Results 76 to 90 of 109
  1. #76
    yutik2's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its runs perfect, grabs every blue\yellow item, gems, ports back to town, BUT then it opens ESC menu, then closes it, then opens again, etc Why can that happen? Thanks for your awesome work so far!

    Sarkoth Gold Farm [Original Script Credit to Mackus] - Modified by Jakesmurf
  2. #77
    squallkns's Avatar Private
    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)
    $Pixel3 = PixelSearch(725,720,770,750,0xDC1D1D, ; look for mythic potion (i dunno why u point to 725,720,770 750,the pot is not at the side?(1030,1000,1090,1050,0xCE1C1D)that i find on the bottom .or something i make wrong?
    $Pixel3 = PixelSearch(1160,700,1180,730,0xE1B559,1) ; maybe I didn't click resume correctly? Lets look (this pixel is from which window)?

  3. #78
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yutik2 View Post
    its runs perfect, grabs every blue\yellow item, gems, ports back to town, BUT then it opens ESC menu, then closes it, then opens again, etc Why can that happen? Thanks for your awesome work so far!
    This has been answered numerous times. Look in the main post for the fix....

    Originally Posted by squallkns View Post
    $Pixel3 = PixelSearch(725,720,770,750,0xDC1D1D, ; look for mythic potion (i dunno why u point to 725,720,770 750,the pot is not at the side?(1030,1000,1090,1050,0xCE1C1D)that i find on the bottom .or something i make wrong?
    $Pixel3 = PixelSearch(1160,700,1180,730,0xE1B559,1) ; maybe I didn't click resume correctly? Lets look (this pixel is from which window)?
    Those coordinates are not "at the side...". I'm pointing there because thats where the potion is.

    Are you running 1920x1080 Windowed Fullscreen? Cause I kinda doubt it...
    Last edited by jakesmurf; 06-10-2012 at 12:57 PM.

  4. #79
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am going to stop answering questions that have been asked time and time again and have an answer already within the thread. If you can't read back through a couple pages and see if your problem has already been solved for others, then I cannot be assed to spend my time helping you. Thanks.

  5. #80
    blowurbrain'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)
    Great script, almost working hehehehe... the problem im getting is that right after it resumes the game it already start to "move" but im still in the loading screen (shit internet ftw).. i tried to find the sleep function of that part and change it to 4500 but it didnt change anything so i think im editing the wrong line???

    Func JoinGame()

    While $ResumeVar < 18 ; as long as I haven't waited 9 seconds for the load to finish

    Sleep(4500)
    $Pixel3 = PixelSearch(725,720,770,750,0xDC1D1D, ; look for mythic potion
    If Not @error Then ; if I find the potion,
    $ResumeVar = 1 ; reset the backup timer, then end the function. This will cause the entire stack to return back to the $going while, and restart the loop.
    $Ready = true
    Return
    Else
    $Pixel3 = PixelSearch(1160,700,1180,730,0xE1B559,1) ; maybe I didn't click resume correctly? Lets look
    If Not @error Then ; looks like I'm at the main menu somehow. Lets resume
    MouseClick("left", Round(230 * $x_ratio),Round(416 * $y_ratio)) ;button to resume game from main menu
    Sleep(2000)
    EndIf
    $ResumeVar = $ResumeVar + 1
    $Ready = False
    EndIf
    WEnd

    If $ResumeVar > 17 Then
    $Ready = True
    Return
    EndIf

    EndFunc

  6. #81
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blowurbrain View Post
    Great script, almost working hehehehe... the problem im getting is that right after it resumes the game it already start to "move" but im still in the loading screen (shit internet ftw).. i tried to find the sleep function of that part and change it to 4500 but it didnt change anything so i think im editing the wrong line???
    If you want to make it purely timer based and remove join detection, just replace the whole function with...

    Func JoinGame()
    $Ready = false
    Sleep(4500) ; or however long you want to wait for the load time
    $Ready = true
    Return
    EndFunc
    Last edited by jakesmurf; 06-10-2012 at 03:10 PM.

  7. #82
    meta23's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Movement is not working with this script v 22a

    update
    it seems to work now. But had to use the other leave game function.

    Update 2

    Well the bot gets stuck surprisingly often at teh first 2 encounters and the next game doesn't find entrance to cellar.
    Last edited by meta23; 06-10-2012 at 06:59 PM.

  8. #83
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by meta23 View Post
    Movement is not working with this script v 22a

    update
    it seems to work now. But had to use the other leave game function.

    Update 2

    Well the bot gets stuck surprisingly often at teh first 2 encounters and the next game doesn't find entrance to cellar.
    Don't know what to tell you. You didn't provide me with any information I can use to help you. All I can tell you is that something isn't working right on your end. If you didn't update the pixelsearch values yourself, then my assumption is that the script is working fine it just can't find something it's looking for on your display.

  9. #84
    woodyfly's Avatar Member
    Reputation
    0
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lots of fails. Esc problem (fixed with new code), bot sits at main menu for 15 seconds before it clicks resume, picks up white trash items (fixed if i remove gem pickup codes), doesn't detect full inventory (the "inventory is full message doesn't show up for some reason), path to pickup gold is fail (runs into walls)
    Last edited by woodyfly; 06-10-2012 at 08:49 PM.

  10. #85
    blowurbrain'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 jakesmurf View Post
    If you want to make it purely timer based and remove join detection, just replace the whole function with...

    Func JoinGame()
    $Ready = false
    Sleep(4500) ; or however long you want to wait for the load time
    $Ready = true
    Return
    EndFunc
    That worked, thx... now the only thing that is still bothering me is that after he kill Sarkoth and pick up the gold he moves the cursor to the number "1" below the first hotkey button, then he moves toward the lamp at the right, back to number "1", and go up a little more. Its losing me ~15 precious seconds every run.

  11. #86
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blowurbrain View Post
    That worked, thx... now the only thing that is still bothering me is that after he kill Sarkoth and pick up the gold he moves the cursor to the number "1" below the first hotkey button, then he moves toward the lamp at the right, back to number "1", and go up a little more. Its losing me ~15 precious seconds every run.
    You should probably update the "rare" item color code. It's probably clicking your lamps because your colors are slightly different than mine, AKA your lamp color is the same color my rares are, and your rares are probably brighter yellow than my rares, on your PC. Fixing this will make it run smooth. Running on my PC, with personalized colors, the loot action is very, very quick - never clicks lamps etc. You can fix the hotkey bar clicking by setting $bottom to something like 650. Then FindItem() will ignore the bottom of your screen.

    Originally Posted by woodyfly View Post
    Lots of fails. Esc problem (fixed with new code), bot sits at main menu for 15 seconds before it clicks resume, picks up white trash items (fixed if i remove gem pickup codes), doesn't detect full inventory (the "inventory is full message doesn't show up for some reason), path to pickup gold is fail (runs into walls)
    Then your PC needs color code updates. This script is one that I made for myself, and decided to share with others in case they wanted to use it - because properly configured its the fastest Sarkoth script I've tried, and with full features. My script with full looting running takes less time on both cellar open (with full looting) and cellar closed runs than notAres takes according to his posted times - and his are timed with NO looting. If you don't want to put forth 10 minutes of effort to update the script for your own application, then yes, it will not work properly for you and I suggest you run notAres script or one of the many others out right now. The code is solid and stable. If you don't configure it to run for you client though, it won't. This is autoit. It's not an injected bot that is reading an event log so that it works universally. This is also not a predominantly sleep() based script for timing like all the others are. For the other scripts, you have to edit sleep timers. For mine, you have to edit the colors. I don't see what all the fuss is about. Update it, or don't use it. Please don't come in my thread and trash on it because you're not willing to do either.
    Last edited by jakesmurf; 06-10-2012 at 10:46 PM.

  12. #87
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2.2b is now up. Not much has changed here except a couple under the hood optimizations. The biggest improvement is that I changed ALL pixelsearches to use a variable that is declared at the start of the script. The variables are well documented so it should be easier for yall to update the pixelsearches for the colors of your own system.

  13. #88
    woodyfly's Avatar Member
    Reputation
    0
    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 jakesmurf View Post
    You should probably update the "rare" item color code. It's probably clicking your lamps because your colors are slightly different than mine, AKA your lamp color is the same color my rares are, and your rares are probably brighter yellow than my rares, on your PC. Fixing this will make it run smooth. Running on my PC, with personalized colors, the loot action is very, very quick - never clicks lamps etc. You can fix the hotkey bar clicking by setting $bottom to something like 650. Then FindItem() will ignore the bottom of your screen.



    Then your PC needs color code updates. This script is one that I made for myself, and decided to share with others in case they wanted to use it - because properly configured its the fastest Sarkoth script I've tried, and with full features. My script with full looting running takes less time on both cellar open (with full looting) and cellar closed runs than notAres takes according to his posted times - and his are timed with NO looting. If you don't want to put forth 10 minutes of effort to update the script for your own application, then yes, it will not work properly for you and I suggest you run notAres script or one of the many others out right now. The code is solid and stable. If you don't configure it to run for you client though, it won't. This is autoit. It's not an injected bot that is reading an event log so that it works universally. This is also not a predominantly sleep() based script for timing like all the others are. For the other scripts, you have to edit sleep timers. For mine, you have to edit the colors. I don't see what all the fuss is about. Update it, or don't use it. Please don't come in my thread and trash on it because you're not willing to do either.
    Who says I haven't updated it. I already did. I simply was letting you know of the issues with it.

  14. #89
    jakesmurf's Avatar Master Sergeant
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    92
    Thanks G/R
    2/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by woodyfly View Post
    Who says I haven't updated it. I already did. I simply was letting you know of the issues with it.
    Locally, I have 0 issues with it. It perfectly detects join times, leave times, deaths, runs perfect, misses the door maybe 1 out of 100+ runs, never fails to kill, never misses gold, never misses loot, never fails to detect full inventory, never clicks lamps, never wastes more than a half a second or so after the loot phase. Historically, a few of those things would happen for me, but I've worked out all the bugs with redundancies and pixelsearches and emergency loops. If you had updated your values, I would predict performance similar to mine. My run times are about 45 seconds completing open cellar, with looting, and less than 20 seconds for a closed cellar with 99% successes, and 0 instances of leaving it unattended and returning to it doing nothing. I've also left it unattended for 12+ hours at a time, and returned to huge profits and the script still running flawlessly. To be honest, I'm am personally amazed that I even made a script as solid as this one. Any trouble you're seeing, based on my personal experiences with it and familiarity with how robust the scripting is, is because your colors aren't properly configured, you're using a poor pixel choice in your colors (its important to pick a "unique" looking pixel in any search), or you have something else incorrect such as resolutions or some such. In testing, I've even done stuff to try to screw with the script externally and to replicate some of the problems mentioned, and quite frankly, I can't manage that unless I screw with the colors some and break one of the pixelsearches - which causes the kinds of errors you're reporting..

  15. #90
    illfated's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by woodyfly View Post
    Lots of fails. Esc problem (fixed with new code), bot sits at main menu for 15 seconds before it clicks resume, picks up white trash items (fixed if i remove gem pickup codes), doesn't detect full inventory (the "inventory is full message doesn't show up for some reason), path to pickup gold is fail (runs into walls)
    same here... barely works - back to making my own one ^^

    thanks anyway

Page 6 of 8 FirstFirst ... 2345678 LastLast

Similar Threads

  1. Replies: 12
    Last Post: 06-14-2012, 01:26 AM
  2. Sarkoth Gold Farm [Original Script Credit to Mackus] - Modified by Jakesmurf
    By jakesmurf in forum Diablo 3 Bots and Programs
    Replies: 94
    Last Post: 06-11-2012, 10:56 AM
  3. Sarkoth Gold Farm for Witch Doctor?
    By lostsk8r in forum Diablo 3 Bots Questions & Requests
    Replies: 1
    Last Post: 06-09-2012, 02:02 PM
  4. Replies: 1
    Last Post: 06-08-2012, 03:27 PM
  5. Mackus Sarkoth Gold Farm - Modified by Teddy Bear Love [1900x1200] Wizard
    By Teddy Bear Love in forum Diablo 3 Bots and Programs
    Replies: 1
    Last Post: 06-08-2012, 03:27 PM
All times are GMT -5. The time now is 09: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