[Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++] menu

User Tag List

Page 49 of 97 FirstFirst ... 454647484950515253 ... LastLast
Results 721 to 735 of 1443
  1. #721
    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 zEEneXx View Post
    can't make it more random any more. every mouse action and waypoints are random

    blizzard just know that:
    You can add a random sleep timer function like:

    Code:
    Func RandSleep($min = 30, $max = 60, $chance = 5)
    	$randNum = Round(Random(1, 100))
    	If $Timer == True And $randNum <= $chance Then
    		$sleepTime = Random($min*1000, $max*1000)
    		GUICtrlSetData($lblStatus, "Status: Random Sleep - " & Round($sleepTime / 1000) & " secs")
    
    		For $c = 0 To 10
    			Sleep($sleepTime/10)
    			ConsoleWrite("|")
    		Next
    		ConsoleWrite(@CRLF)
    	EndIf
    EndFunc
    Then insert:

    Code:
    RandSleep(60, 240, 10)
    Basically says, 10% chance to take a 60-240 second break. Just insert different RandSleep to different parts of the script. Like after looting, before entering the game, after town portal, etc etc.

    I had a lot of RandSleep(5,10,3) in my code. Just to keep the game times different.

    [Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++]
  2. #722
    jgriff13's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bot has been working wonderfully! Thank you zEEneXx! Only problem I've noticed is that I skip anywhere between 5-10 open cellars per hour.. not sure if I need to change any timers or lag but the bot will not use soul walk so he will be just out of range of the cellar door.. any suggestions?

  3. #723
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Angrycoder View Post
    You can add a random sleep timer function like:

    Code:
    Func RandSleep($min = 30, $max = 60, $chance = 5)
    	$randNum = Round(Random(1, 100))
    	If $Timer == True And $randNum <= $chance Then
    		$sleepTime = Random($min*1000, $max*1000)
    		GUICtrlSetData($lblStatus, "Status: Random Sleep - " & Round($sleepTime / 1000) & " secs")
    
    		For $c = 0 To 10
    			Sleep($sleepTime/10)
    			ConsoleWrite("|")
    		Next
    		ConsoleWrite(@CRLF)
    	EndIf
    EndFunc
    Then insert:

    Code:
    RandSleep(60, 240, 10)
    Basically says, 10% chance to take a 60-240 second break. Just insert different RandSleep to different parts of the script. Like after looting, before entering the game, after town portal, etc etc.

    I had a lot of RandSleep(5,10,3) in my code. Just to keep the game times different.
    Random sleep times would make it nearly impossible to let the users find out the perfect delay times for their hardware setup. i really dont want to use this

    Originally Posted by jgriff13 View Post
    Bot has been working wonderfully! Thank you zEEneXx! Only problem I've noticed is that I skip anywhere between 5-10 open cellars per hour.. not sure if I need to change any timers or lag but the bot will not use soul walk so he will be just out of range of the cellar door.. any suggestions?
    the most important thing for cellar detection is that he uses spiritwalk at the beginning. increase $computerlag in steps of 50 until he casts it eveyrtime.
    if he does that and u still miss open cellars start to increase $movedelay in steps of 50.

    any further missed cellars can occur because of internet lag.

    Originally Posted by skinnedpt View Post
    Hi zEEneXx.

    Thanks for this good piece of code.
    In last version (1.3d) the bot don't pickup most of gold for lower gold radius. Please fix it.

    Keep the good work.
    the only thing i change for moving was faster mouse cursor speeds. so i think increasing movedelay should fix this (by 50 or something)

  4. #724
    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 zEEneXx View Post
    Random sleep times would make it nearly impossible to let the users find out the perfect delay times for their hardware setup. i really dont want to use this
    Im confused by this? What do you mean by users finding the perfect delay times for their hardware?

    The random sleeps would have nothing to do with combat, or moving. It just allows the script to take a break, like a human would (grab a snack, use the rest room, etc) while out of combat / not running around finding the cellar.

  5. #725
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Angrycoder View Post
    Im confused by this? What do you mean by users finding the perfect delay times for their hardware?

    The random sleeps would have nothing to do with combat, or moving. It just allows the script to take a break, like a human would (grab a snack, use the rest room, etc) while out of combat / not running around finding the cellar.
    ah ok i didn't read it well enough. just put some random sleeps to not important parts of the script. mhh ok but i don't think this would make the botting "much" safer :/

  6. #726
    Braxy's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello the script is running smoothly for me except from when it tries to salvage it stops when the mouse gets over the essences.
    I am running the latest script 1.3d. This problem was not happening on the last 2 versions of the script.
    I would try to use one of the latest but because of the memory leak i didnt try it.

  7. #727
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Braxy View Post
    Hello the script is running smoothly for me except from when it tries to salvage it stops when the mouse gets over the essences.
    I am running the latest script 1.3d. This problem was not happening on the last 2 versions of the script.
    I would try to use one of the latest but because of the memory leak i didnt try it.
    it simply stop? weird... can't imagine what the problem is here.

  8. #728
    Braxy's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zEEneXx View Post
    it simply stop? weird... can't imagine what the problem is here.
    Yep it just stops.
    When i was watching over the bot to find out the problem that caused it to stop, i found out that bug.
    So i tried to move my cursor a bit and then it started searching again in my inventory like before. (btw that happened 3 times already )
    Maybe it doesnt recognise the essences anymore but i don;t think any of these changes happened on the latest script updates.

  9. #729
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Braxy View Post
    Yep it just stops.
    When i was watching over the bot to find out the problem that caused it to stop, i found out that bug.
    So i tried to move my cursor a bit and then it started searching again in my inventory like before. (btw that happened 3 times already )
    Maybe it doesnt recognise the essences anymore but i don;t think any of these changes happened on the latest script updates.
    i really have no idea what this problem could cause :/ for me it works fine.. maybe increasing sell/selvage delay? i dont think this would help but give it a try xD

  10. #730
    skinnedpt'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)
    Originally Posted by zEEneXx View Post

    the only thing i change for moving was faster mouse cursor speeds. so i think increasing movedelay should fix this (by 50 or something)
    Te problem is not the movedelay.
    When i kill sarkoth the bot is going to pick up gold like older versions, but in this version the first click is not the same of 1.3b version and the gold adjacent and behind sarkoth stash is not pickup. (pickup radius low true)

  11. #731
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by skinnedpt View Post
    Te problem is not the movedelay.
    When i kill sarkoth the bot is going to pick up gold like older versions, but in this version the first click is not the same of 1.3b version and the gold adjacent and behind sarkoth stash is not pickup. (pickup radius low true)
    i will try to explain:
    in 1.3d i increased the mouse cursor move speed. the time what the cursor needs to move is added to the wait time (he waits until the cursor is on the defined position before he continues with the script). now that the mouse cursor is earlier at this position the next movement is earlier initiated. that means he dosent come to the point to that he came in 1.3b because the wait time for the movement is to low -> increasing movedelay will make the bot to wait longer before he starts the next movement.

    i hope i could explain it well enough

  12. #732
    vizinhanca's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Braxy View Post
    Hello the script is running smoothly for me except from when it tries to salvage it stops when the mouse gets over the essences.
    I am running the latest script 1.3d. This problem was not happening on the last 2 versions of the script.
    I would try to use one of the latest but because of the memory leak i didnt try it.
    same problem here

  13. #733
    zEEneXx's Avatar Knight-Captain
    Reputation
    65
    Join Date
    Jun 2012
    Posts
    432
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vizinhanca View Post
    same problem here
    how the hell can ppl have such errors when its running fine for me? sorry i really can't figure out what causes this

  14. #734
    vizinhanca's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, I tested the scripts 1.3c_memoryfixed and 1.3d, and in both I had this problem.

    When the script is going to salvage everything runs perfectly, until the mouse passes over the essences, and then the mouse stays stopped for ever over the essences. When I move the cursor a bit, then the script back to work.

    For now I'm back to the script 1.3b.

  15. #735
    killadelightxx'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)
    Originally Posted by Braxy View Post
    Hello the script is running smoothly for me except from when it tries to salvage it stops when the mouse gets over the essences.
    I am running the latest script 1.3d. This problem was not happening on the last 2 versions of the script.
    I would try to use one of the latest but because of the memory leak i didnt try it.
    Same here ;D but i disabled the Salvaging function and runs perfect und quicker then the old one.
    Danke dafür

Page 49 of 97 FirstFirst ... 454647484950515253 ... LastLast

Similar Threads

  1. Replies: 440
    Last Post: 10-31-2012, 11:00 AM
  2. Replies: 148
    Last Post: 08-03-2012, 04:19 PM
  3. Replies: 5
    Last Post: 08-02-2012, 02:48 AM
  4. Replies: 6
    Last Post: 07-24-2012, 12:18 PM
  5. [AutoIt] How to enter Dank Cellar without moving a real mouse over it?
    By psychoangler in forum Diablo 3 Bots and Programs
    Replies: 3
    Last Post: 07-12-2012, 04:59 AM
All times are GMT -5. The time now is 05:26 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