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

User Tag List

Page 95 of 97 FirstFirst ... 4591929394959697 LastLast
Results 1,411 to 1,425 of 1443
  1. #1411
    Boblemarrant0'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
    Fullscreen-Windowed maybe?
    Fullscreen-Windowed yes...

    Very strange !! Because this script works perfectly before (before what I don't know !!!)

    [Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++]
  2. #1412
    Boblemarrant0'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)
    Nobody have an idea ?
    Tks ^^

  3. #1413
    daiyume's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Boblemarrant0 View Post
    Nobody have an idea ?
    Tks ^^
    You're most likely running into the same issue as someone else on the last page. Replace your portal.png picture with the one I have provided below and it should work:

    [Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++]-2prsp-png

    *EDIT* To anyone else using this script for patch 1.04, I think most if not all of you need to replace your portal.png with the same picture I have provided because the icon itself was changed within the game to be slimmer. Blizzard did that to make room for an extra button on the bottom.

    P.S. Zeeneexx should probably edit this into the front page :P
    Last edited by daiyume; 09-06-2012 at 02:28 PM.

  4. #1414
    daiyume's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to port this script to 800x600 and one of the issues I'm running into right now is during the inventory management phase where it checks and sells items in your inventory. I'm assuming after I successfully edit the code below, then the $Stash coordinates will work correctly in 800x600 during the Sellitems function? As of right now, I have no direction and am a bit lost on how to edit the code below to match 800x600 resolution.

    Code:
    Func RandomizeInventory()
    	Global $Stash[60][2]
    	$c = 0 
    	$d = -2
    	For $a = 0 To 59
    		$d += 1
    		If $a = 10 Or $a = 20 Or $a = 30 Or $a = 40 Or $a = 50 Then
    			$c += 1
    			$d = -1
    		EndIf
    		For $b = 0 To 1
    			If $a = 0 Then
    				If $b = 0 Then
    					$Stash[$a][$b] = 1430
    				Else
    					$Stash[$a][$b] = 560
    				EndIf
    			Else
    				If $b = 0 Then
    					$Stash[$a][$b] = Random(1473, 1483, 1) + (49 * $d)
    				Else
    					$Stash[$a][$b] = Random(606, 614, 1) + (49 * $c)
    				EndIf
    			EndIf
    		Next
    	Next
     EndFunc
    I also have problems with the code below within Func SellItems(). Since it is going to be 800x600, then I'm assuming the coordinates for _ImageSearch has to be something else other than $Stash[$r][0] - 35 and +35? How do I find out what the value is for 800x600? Any help is greatly appreciated!

    Code:
    $Target = _ImageSearchArea($ReqFiles & "\pics\" & $File, 1, $Stash[$r][0] - 35, $Stash[$r][1] - 35, $Stash[$r][0] + 35, $Stash[$r][1] + 35, 0, 0, $Accuracy)
    Last edited by daiyume; 09-06-2012 at 07:20 PM.

  5. #1415
    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 daiyume View Post
    You're most likely running into the same issue as someone else on the last page. Replace your portal.png picture with the one I have provided below and it should work:

    [Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++]-2prsp-png

    *EDIT* To anyone else using this script for patch 1.04, I think most if not all of you need to replace your portal.png with the same picture I have provided because the icon itself was changed within the game to be slimmer. Blizzard did that to make room for an extra button on the bottom.

    P.S. Zeeneexx should probably edit this into the front page :P
    done, thanks

    Originally Posted by daiyume View Post
    I'm trying to port this script to 800x600 and one of the issues I'm running into right now is during the inventory management phase where it checks and sells items in your inventory. I'm assuming after I successfully edit the code below, then the $Stash coordinates will work correctly in 800x600 during the Sellitems function? As of right now, I have no direction and am a bit lost on how to edit the code below to match 800x600 resolution.

    Code:
    Func RandomizeInventory()
    	Global $Stash[60][2]
    	$c = 0 
    	$d = -2
    	For $a = 0 To 59
    		$d += 1
    		If $a = 10 Or $a = 20 Or $a = 30 Or $a = 40 Or $a = 50 Then
    			$c += 1
    			$d = -1
    		EndIf
    		For $b = 0 To 1
    			If $a = 0 Then
    				If $b = 0 Then
    					$Stash[$a][$b] = 1430
    				Else
    					$Stash[$a][$b] = 560
    				EndIf
    			Else
    				If $b = 0 Then
    					$Stash[$a][$b] = Random(1473, 1483, 1) + (49 * $d)
    				Else
    					$Stash[$a][$b] = Random(606, 614, 1) + (49 * $c)
    				EndIf
    			EndIf
    		Next
    	Next
     EndFunc
    I also have problems with the code below within Func SellItems(). Since it is going to be 800x600, then I'm assuming the coordinates for _ImageSearch has to be something else other than $Stash[$r][0] - 35 and +35? How do I find out what the value is for 800x600? Any help is greatly appreciated!

    Code:
    $Target = _ImageSearchArea($ReqFiles & "\pics\" & $File, 1, $Stash[$r][0] - 35, $Stash[$r][1] - 35, $Stash[$r][0] + 35, $Stash[$r][1] + 35, 0, 0, $Accuracy)
    check your pm's. i can't help you here, sorry :x

  6. #1416
    Boblemarrant0'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 daiyume View Post
    You're most likely running into the same issue as someone else on the last page. Replace your portal.png picture with the one I have provided below and it should work:

    [Gold/Itemfarming] [AutoIt] Sarkoth Act I Dank Cellar [WD] [Stash, Sell, Repair, +++]-2prsp-png

    *EDIT* To anyone else using this script for patch 1.04, I think most if not all of you need to replace your portal.png with the same picture I have provided because the icon itself was changed within the game to be slimmer. Blizzard did that to make room for an extra button on the bottom.

    P.S. Zeeneexx should probably edit this into the front page :P

    Oh yes ! It works !
    I have tested 10 minutes and sometimes the bot click too fast to "resume game" and I receive an error message. Or sometimes it click on "achievement"...
    Never mind :/

  7. #1417
    daiyume's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Boblemarrant0 View Post
    Oh yes ! It works !
    I have tested 10 minutes and sometimes the bot click too fast to "resume game" and I receive an error message. Or sometimes it click on "achievement"...
    Never mind :/
    If it is clicking resume game too fast and you're getting a "Disconnect" error message, add
    Code:
    Sleep(the amount of time in milliseconds, try 2000 maybe)
    right under
    Code:
    ToLog("Resuming game...")
    in Func ResumeGame()

    If it is clicking on achievements, most likely the tolerance settings are off somewhere. After you see it click on anything it isn't supposed to (means the script is most likely out of sync due to tolerance), wait 5 seconds and hit END to shut off the script and post your log.
    Last edited by daiyume; 09-08-2012 at 03:46 PM.

  8. #1418
    bucketo's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ive been trying for some time now, but the bot is still stuck on the main screen saying 'Waiting to get into the game lobby... (TimeOut 25s). After 25s it trys to leave the game but im in the lobby already. any help?

  9. #1419
    daiyume's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by buc**** View Post
    ive been trying for some time now, but the bot is still stuck on the main screen saying 'Waiting to get into the game lobby... (TimeOut 25s). After 25s it trys to leave the game but im in the lobby already. any help?
    Did your bot ever work or did it used to work fine until recently? Seems pretty weird if you just started and it turned out this way. If that is the case, you most likely didn't follow the instructions in the front. Anyway:

    1. Was the bot working fine until recently, or is this your first time?
    2. Open your log, select all and delete everything
    3. Run the script and after a you see
    Code:
     'Waiting to get into the game lobby... (TimeOut 25s)
    three times, hit END to end the script and post your log
    Last edited by daiyume; 09-10-2012 at 03:18 PM.

  10. #1420
    yakuman999's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by garados View Post
    <19:50:32> Teleporting to town...
    <19:50:33> Waiting to get into the town... (TimeOut 8s)
    <19:50:41> Teleport TimeOut - Leaving
    <19:50:41> Leaving the game
    <19:50:43> Waiting to get into the game lobby... (TimeOut 25s)
    <19:50:50> Resuming game...
    <19:50:50> Waiting to get into the game... (TimeOut 14s)
    <19:50:57> Last run took: 33s
    <19:50:57> Starting run...
    <19:50:59> Moving to cellar - 1
    <19:51:00> Moving to cellar - 2
    <19:51:03> Moving to cellar - 3
    <19:51:06> Cellar is closed
    <19:51:06> Teleporting to town...
    <19:51:07> Waiting to get into the town... (TimeOut 8s)
    <19:51:15> Teleport TimeOut - Trying to teleport again
    <19:51:15> Teleporting to town...
    <19:51:17> Leaving the game
    <19:51:18> Waiting to get into the game lobby... (TimeOut 25s)
    <19:51:25> Resuming game...
    <19:51:26> Waiting to get into the game... (TimeOut 14s)
    <19:51:40> GameplayScreen TimeOut - Leaving
    <19:51:40> Waiting to get into the game lobby... (TimeOut 25s)
    <19:52:06> GameLobby TimeOut - Trying again
    <19:52:06> Leaving the game
    <19:52:07> Waiting to get into the game lobby... (TimeOut 25s)
    <19:52:10> Resuming game...
    <19:52:10> Waiting to get into the game... (TimeOut 14s)


    problem started at 19:51:18
    after that if just hangs and goes into the loop
    when i came back, the profile window is open.
    do you think by increasing the delay it will help?
    btw, i am using VM ware, otherwise everything is running smoothly. thanks
    Dear Mates,

    Today I got same looping problem as Garados. Tried to figure out by myself a whole day where I configured wrong. But seems nothing diff much from the default settings.
    Bot starting, running for a short range to cellar location, stop running, casting spells and keep telepoting to town, leave game and resuming again and again and again...

    I even tried to pause bot after it resumed, and moving to cellar location by myself........."Cellar is opened!!!"
    But in the log said "Cellar is closed"........ T_T sorry for my poor programming and scripting. But I really do not know how to fix and frustrated with the bot already.

    Highly appreciated if anyone can help me out!

    Thanks,
    Artz.

  11. #1421
    daiyume's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yakuman999 View Post
    Dear Mates,

    Today I got same looping problem as Garados. Tried to figure out by myself a whole day where I configured wrong. But seems nothing diff much from the default settings.
    Bot starting, running for a short range to cellar location, stop running, casting spells and keep telepoting to town, leave game and resuming again and again and again...

    I even tried to pause bot after it resumed, and moving to cellar location by myself........."Cellar is opened!!!"
    But in the log said "Cellar is closed"........ T_T sorry for my poor programming and scripting. But I really do not know how to fix and frustrated with the bot already.

    Highly appreciated if anyone can help me out!

    Thanks,
    Artz.
    Seems like the coordinates are somehow inaccurate on the way to the cellar. Anyways,

    1. Do you see it mouse-over the cellar? Or does it miss moving the mouse to the cellar?
    2. Run the script. After two "loops", end it and post your log

  12. #1422
    rasmus3500's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello

    I have downloaded the script for DH, but when i run the bot, it goes forward towards the cellar, but it stops a few centimeters from the opening, then it just teleports back to town.
    Since im kinda new to the whole scripting thing, i would like if you could descripe it to me in steps please.

    Appreciate all the time you put into all this

    Kindly Regards
    Rasmus

  13. #1423
    daiyume's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks similar to the same issue above, follow the instructions above your post and post the results here.

  14. #1424
    rasmus3500's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Somthing like this:?

    Not Found - DisconnectError
    Expects - MainMenu
    Found - MainMenu
    Runs: 1, Manage In: 15
    Not Found - DisconnectError
    Expects - OldRuins
    Found - OldRuins
    Checking - DankCellar
    Not Found - DankCellar
    Calling - TownPortal
    Not Found - DisconnectError
    Checking Death
    Not Found - Logout Cancel
    Not Found - Death
    Expects - New Tristram
    Found - NewTristram
    Checking - Repair
    Not Found - Damaged
    Not Found - Broken
    Leaving Game
    Runtime: 24.35 seconds.
    Total Runtime: 0 hours, 1 minutes.

    Not Found - DisconnectError
    Expects - MainMenu
    Found - MainMenu
    Runs: 2, Manage In: 15
    Not Found - DisconnectError
    Expects - OldRuins
    Found - OldRuins
    Checking - DankCellar
    Not Found - DankCellar
    Calling - TownPortal
    Not Found - DisconnectError
    Checking Death
    Not Found - Logout Cancel
    Not Found - Death
    Expects - New Tristram
    Not Found - NewTristram
    Checking Death
    Not Found - Logout Cancel
    Not Found - Death
    Calling - TownPortal
    Not Found - DisconnectError
    Checking Death
    Not Found - Logout Cancel
    Not Found - Death
    Expects - New Tristram
    Found - NewTristram
    Checking - Repair
    Not Found - Damaged
    Not Found - Broken
    Leaving Game
    Runtime: 31.92 seconds.
    Total Runtime: 0 hours, 2 minutes.

    Not Found - DisconnectError
    Expects - MainMenu

    Legendary:0 Set:0 Rare:0 Magic:0 Gem:0 Tome:0

  15. #1425
    rasmus3500's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sry i posted it twice, and i dunno how to delete it
    Last edited by rasmus3500; 09-20-2012 at 11:33 AM.

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 06:16 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search