[Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080] menu

Shout-Out

User Tag List

Page 45 of 298 FirstFirst ... 41424344454647484995145 ... LastLast
Results 661 to 675 of 4467
  1. #661
    Legionary'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)
    can anyone tell me how to change the teleport run so that it acutally gets to the dank cellar before it spams attacks and goes back to town.

    and also why is the dank cellar closed most of the time?

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #662
    dsonj's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    29
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i check my pickup radius?

  3. #663
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you turn tomes or gems on does it loot it? The only thing I see is that maybe the color of set for blues doesn't match what your pc is displaying. You should try taking a screenshot of loot then getting the color of the blue pixel and putting that at the red number:

    If $LootMagic == True Then
    $MagicCount += LootGear(0x6969FF)



    Originally Posted by dsonj View Post
    how do i check my pickup radius?
    open your character information click details then scroll to the bottom. You want atleast 7.

  4. #664
    BASHKILLER's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stealthingyew View Post
    If you turn tomes or gems on does it loot it? The only thing I see is that maybe the color of set for blues doesn't match what your pc is displaying. You should try taking a screenshot of loot then getting the color of the blue pixel and putting that at the red number:

    If $LootMagic == True Then
    $MagicCount += LootGear(0x6969FF)




    open your character information click details then scroll to the bottom. You want atleast 7.
    why is it then that is not working? here I use with darkd3 mod: |
    How was I going to get the pixel color of the magic item? and why he is not picking up gems and tomes?

  5. #665
    HumanMech'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)
    Originally Posted by stealthingyew View Post
    [Vendoring]
    Loot=False
    Rares=False
    Magic=True
    All=False make sure that says false or it will vendor anything in the bag regardless of other settings. In the new version it needs to be set to 0 not false I am using an older version.



    I use an older version and it only works for me because the way mine is setup. I am sure chancity will eventually add it in the bot.

    This should work for other resolutions however its only tested in 1920x1080. This only salvages the BLUE MAGIC ITEMS. I take no responsability for anything it may salvage of yours that is important or if you somehow mess up your script use at your own risk.
    You need to set your ini file so It walks from the repair vendor so if your guy is not going to vendor during the town portion this will not work for you.

    [Vendoring]
    Loot=1
    Rares=0
    Magic=0
    All=0


    First you need to add this function after the function vendorloot

    Code:
    Func SalvageMagic()
       	GUICtrlSetData($lblStatus, "Status: Salvaging Magic Items")
    	RandClick("left", Round(873 * $x_ratio), Round(958 * $y_ratio), 1, 1)
    	Sleep(Random(1500, 2000))
    	RandClick("left", Round(873 * $x_ratio), Round(958 * $y_ratio), 1, 1)
    	Sleep(Random(1500, 2000))
    	RandClick("left", Round(1609 * $x_ratio), Round(585 * $y_ratio), 1, 1)
    	Sleep(Random(1500, 2000))
    		RandClick("left", Round(261 * $x_ratio), Round(308 * $y_ratio), 1, 1)
    	If $SalvageMagic == "True" Then
    		$c = 0
    		While $c <= 25
    		 	Sleep(Random(100, 300))
    			$MagicPixel = PixelSearch(1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 888 * $y_ratio, 0x182037, 1)
    			If Not @error Then
    				MouseClick("left", $MagicPixel[0], $MagicPixel[1], 1, 4)
    				Sleep(Random(1400, 1600))
    				$c += 1
    			Else
    				ExitLoop
    			EndIf
    		WEnd
    	 EndIf
       GUICtrlSetData($lblStatus, "Status: Done With Salvage")
       Send("{ESCAPE}")
    EndFunc ;==>Salvage Magic

    Next you need to find this area of code which is under the function restartrun and add the part that is in red

    Code:
    If Not CheckDead() Then
    			Sleep(600)
    			If $mLootIn = 1 And CheckFor("NewTristram", "Area") Then ;If its time to manage loot and we are in town
    				If $Identify == 1 Then Call("Identify")
    				If $StashLoot == 1 Then
    					Call("StashLoot")
    				EndIf
    				If $VendorLoot == 1 Then
    					Call("VendorLoot")
    				 EndIf
    				  If $SalvageMagic == True Then
    					Call("SalvageMagic")
    					EndIf
    				$mLootIn = Round(Random($mLoot - $mLootOff, $mLoot + $mLootOff)) ;Reset Counter
    			ElseIf Not CheckFor("NewTristram", "Area") Then
    				GUICtrlSetData($lblStatus, "Status: Skipping vendor, not in New Tristram")
    				Sleep(3000)
    			ElseIf $mLootIn <= 0 Then
    				$mLootIn = 1
    			Else
    				$mLootIn -= 1
    			EndIf
    			If Not CheckDead() Then
    				Call("LeaveGame")
    			EndIf
    			Return
    		Else
    			Return
    		EndIf
    	EndIf
    EndFunc   ;==>RestartRun
    Now you need to add the variables in red so find the one above it and add it below it.
    Code:
    $LootCustom = "0" ;1 if you want to pick up Custom Items (The items in the $pick array above)
    $SalvageMagic="True"
    Code:
    $StashGems = "1" ;1 if you want to store Gems items in the stash
    $StashExquisite="True"
    $StashTear="True"
    $StashHoof="True"
    $StashWishful="True"
    Now you have to edit the stashloot function so it will put your materials in the stash just add the part in red
    Code:
    Func StashLoot()
    	GUICtrlSetData($lblStatus, "Status: Putting Items in Stash")
    	MouseClick("left", 1064 * $x_ratio, 256 * $y_ratio)
    	Moving(1600)
    
       	If $StashLegendary == 1 Then
    		StashItems(0xFF7F00, 0)
    		StashItems(0x8F5C25, 1)
    	EndIf
    
    	If $StashRare == 1 Then
    		StashItems(0x4A3C0B, 1)
    	EndIf
    
    	If $StashMagic == 1 Then
    		StashItems(0x182037, 1)
    	 EndIf
    	 
    		While $StashTomes == 1
    		Sleep(Random(100, 300))
    		If _ImageSearchArea($pngLoc & "TomeIcon.png", 1, 1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 888 * $y_ratio, $gX, $gY, 140) Then
    			GUICtrlSetData($lblStatus, "Status: Stashing Tomes")
    			MouseClick("left", 500 * $x_ratio, 360 * $y_ratio, 1, 4)
    			MouseClick("right", $gX, $gY, 1, 4)
    			Sleep(80)
    			MouseClick("left", 500 * $x_ratio, 200 * $y_ratio, 1, 4)
    		Else
    			ExitLoop
    		EndIf
    	WEnd
    	
    	While $StashTear == True
    		Sleep(Random(1000, 1050))
    		If _ImageSearchArea($pngLoc & "Tear.png", 1, 1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 888 * $y_ratio, $gX, $gY, 140) Then
    			GUICtrlSetData($lblStatus, "Status: Stashing Tears")
    			MouseClick("left", 500 * $x_ratio, 360 * $y_ratio, 1, 4)
    			MouseClick("right", $gX, $gY, 1, 4)
    			Sleep(80)
    			MouseClick("left", 500 * $x_ratio, 200 * $y_ratio, 1, 4)
    		Else
    			ExitLoop
    		EndIf
    	WEnd
    	
    		While $StashWishful == True
    		Sleep(Random(1000, 1050))
    		If _ImageSearchArea($pngLoc & "Wishful.png", 1, 1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 888 * $y_ratio, $gX, $gY, 140) Then
    			GUICtrlSetData($lblStatus, "Status: Stashing wishful essence")
    			MouseClick("left", 500 * $x_ratio, 360 * $y_ratio, 1, 4)
    			MouseClick("right", $gX, $gY, 1, 4)
    			Sleep(80)
    			MouseClick("left", 500 * $x_ratio, 200 * $y_ratio, 1, 4)
    			
    		Else
    			ExitLoop
    		EndIf
    	WEnd
    
    	While $StashExquisite == True
    		Sleep(Random(1000, 1050))
    		If _ImageSearchArea($pngLoc & "Exquisite.png", 1, 1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 888 * $y_ratio, $gX, $gY, 140) Then
    			GUICtrlSetData($lblStatus, "Status: Stashing Exquisite essence")
    			MouseClick("left", 500 * $x_ratio, 360 * $y_ratio, 1, 4)
    			MouseClick("right", $gX, $gY, 1, 4)
    			Sleep(80)
    			MouseClick("left", 500 * $x_ratio, 200 * $y_ratio, 1, 4)
    		Else
    			ExitLoop
    		EndIf
    	WEnd
    	
    		While $StashHoof == True
    		Sleep(Random(1000, 1050))
    		If _ImageSearchArea($pngLoc & "Hoof.png", 1, 1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 888 * $y_ratio, $gX, $gY, 140) Then
    			GUICtrlSetData($lblStatus, "Status: Stashing Hoof")
    			MouseClick("left", 500 * $x_ratio, 360 * $y_ratio, 1, 4)
    			MouseClick("right", $gX, $gY, 1, 4)
    			Sleep(80)
    			MouseClick("left", 500 * $x_ratio, 200 * $y_ratio, 1, 4)
    		Else
    			ExitLoop
    		EndIf
    	WEnd
    	
    	;Gems (DOESN'T STASH BOTTOM ROW!)
    	If $StashGems == 1 Then
    		GUICtrlSetData($lblStatus, "Status: Stashing Gems")
    		MouseClick("left", 500 * $x_ratio, 360 * $y_ratio, 1, 4)
    		Sleep(Random(20, 100))
    		For $i = 0 To 7
    			If _ImageSearchArea($pngLoc & $gems[$i], 1, 1400 * $x_ratio, 580 * $y_ratio, 1914 * $x_ratio, 820 * $y_ratio, $gX, $gY, 140) Then
    				MouseClick("right", $gX, $gY, 1, 3)
    			EndIf
    		Next
    	EndIf
    	Sleep(Random(1000, 1500))
    	Send("{SPACE}")
    EndFunc   ;==>StashLoot
    You also need images for for the crafting materials so it will stash them. Names need to be Exquiste.png, Tear.png, Wishful,png and i had to redo uniditified.png because it was trying to identify the crafting material tear. I attached my images which are for 1920x1080 otherwise you will have to make your own. It stashes the crafting materials in tab 2 on the next time it runs the town portion.


    I love you. ^_^

  6. #666
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BASHKILLER View Post
    why is it then that is not working? here I use with darkd3 mod: |
    How was I going to get the pixel color of the magic item? and why he is not picking up gems and tomes?
    I am guessing darkd3 mod is changing the colors/fonts of the items. So you need to redo the images for tomes/gems and get the pixel color of set/legendary/rare/magic items or its not going to work. Alternatively you could uninstall darkd3 mod and revert changes to default and it should work.

  7. #667
    BASHKILLER's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stealthingyew View Post
    I am guessing darkd3 mod is changing the colors/fonts of the items. So you need to redo the images for tomes/gems and get the pixel color of set/legendary/rare/magic items or its not going to work. Alternatively you could uninstall darkd3 mod and revert changes to default and it should work.
    I finally got it, thanks man, you saved my life .. kkkkkkkkkkkkk

  8. #668
    pazazu's Avatar Banned
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi.

    I'm a total n00b when it comes to scripts/bots. I've downloaded and installed the "Auto Install". I also ran it as Admin. So it successfully installed and when I launch the bot it can login and resume game, but all it does is to tp back and just stand there. I also got some errors along the way regarding "Error: Unknown function name".
    And I haven't even edited the MainScript.au3. All I have done is to edit the WZD.ini so that it can locate my game folder and type in the password.

    What am I doing wrong?

  9. #669
    Legionary'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)
    Can someone please tell me how to change the teleport run setting to the dank cellar? It only teleports twice!

  10. #670
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pazazu View Post
    Hi.

    I'm a total n00b when it comes to scripts/bots. I've downloaded and installed the "Auto Install". I also ran it as Admin. So it successfully installed and when I launch the bot it can login and resume game, but all it does is to tp back and just stand there. I also got some errors along the way regarding "Error: Unknown function name".
    And I haven't even edited the MainScript.au3. All I have done is to edit the WZD.ini so that it can locate my game folder and type in the password.

    What am I doing wrong?
    post a screenshot of the error please.

    Originally Posted by Legionary View Post
    Can someone please tell me how to change the teleport run setting to the dank cellar? It only teleports twice!
    Do you have the specified talents?


    the highlighted red is the code to teleport
    Code:
    If CheckFor("OldRuins", "Area") Then
    			Sleep(200)
    			GUICtrlSetData($lblLocation, "Location: Old Ruins")
    			Call("CheckRepair")
    			If $StartingGold = 0 Then Call("GoldPerHour")
    			;Start Run
    			MouseClick("middle", Round(0 * $x_ratio),Round(250 * $y_ratio)) ;starts the main run
    			Send("{3 down}")
    			Sleep(1900)
    			Send("{3 up}")
    			send($DiamondSkin)
    			Moving(100)
    			RandMove(Round(255*$x_ratio),Round(290 * $y_ratio), 1, 1) ;moves cursor over to the cellar so the proper blue pixel becomes highlighted
    			Sleep(350)
    			If CheckDead() Then
    				Return
    			EndIf

  11. #671
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For all of you that know what your doing or have an idea. I was doing some tinkering today and I got my runs down to 27 seconds open cellar and 13 seconds closed cellar.

    Chancity's Test run 27s open cellars. - Pastebin.com

    Attack time is now based off of your buffed dps, please change hydra to force weapon and give me some insight of what to change/do differently. Use the INI this script creates for maximum gold per hour. This isn't an update, it could be if enough of the people trying it like it. Also I know the skills are sloppy and the sleeps too because I was just playing around.

    Requirements
    REQUIRED BUILD-ish
    1. Left Click = Wave Force(Impactful Wave)
    2. Right Click = Archon(Improved Archon)
    3. Action Bar 1 = Diamond Skin(Crystal Shell)
    4. Action Bar 2 = Mirror Image(Duplicates)
    5. Action Bar 3 = Teleport(Wormhole)
    6. Action Bar 4 = Magic Weapon(Force Weapon)
    7. Passive 1 = Temporal Flux (Better for low dps because it can snare sarkoth.)
    8. Passive 2 = Evocation
    9. Passive 3 = Glass Cannon


    Edit this
    Code:
    $dps = 16000
    $attackTime = 160000 / $dps * 3.25
    Make sure your character sleeps long enough after killing sarkoth to teleport to pick up the loot
    Last edited by chancity; 06-25-2012 at 08:59 PM.

  12. #672
    Legionary'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 chancity View Post
    For all of you that know what your doing or have an idea. I was doing some tinkering today and I got my runs down to 27 seconds open cellar and 13 seconds closed cellar.

    Chancity's Test run 27s open cellars. - Pastebin.com

    Attack time is now based off of your buffed dps, please change hydra to force weapon and give me some insight of what to change/do differently. Use the INI this script creates for maximum potential gold per hour. This isn't an update, it could be if enough of the people trying it like it. Also I know the skills are sloppy and the sleeps too because I was just playing around.

    Requirements
    REQUIRED BUILD-ish
    1. Left Click = Wave Force(Impactful Wave)
    2. Right Click = Archon(Improved Archon)
    3. Action Bar 1 = Diamond Skin(Crystal Shell)
    4. Action Bar 2 = Mirror Image(Duplicates)
    5. Action Bar 3 = Teleport(Wormhole)
    6. Action Bar 4 = Magic Weapon(Force Weapon)
    7. Passive 1 = Temporal Flux (Better for low dps because it can snare sarkoth.)
    8. Passive 2 = Evocation
    9. Passive 3 = Glass Cannon


    Edit this
    Code:
    $dps = 16000
    $attackTime = 160000 / $dps * 3.25
    Make sure your character sleeps long enough after killing sarkoth to teleport to pick up the loot
    Do you mind changing the script so the beginning teleport run actually gets to the dank cellar? The problem with my computer is that it's laggy because of bad graphics so it only teleports twice. When it doesn't see the cellar it just teleports back to town and starts all over again. Is it possible to make it walk the rest of the way after the initial two teleports? Thanks! I have no idea how to change the script in autoit.

  13. #673
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Legionary View Post
    Do you mind changing the script so the beginning teleport run actually gets to the dank cellar? The problem with my computer is that it's laggy because of bad graphics so it only teleports twice. When it doesn't see the cellar it just teleports back to town and starts all over again. Is it possible to make it walk the rest of the way after the initial two teleports? Thanks! I have no idea how to change the script in autoit.

    Then you run into the potential problem of getting killed by the risen at the front of the steps. I've tried a few variation and this one has worked the best for me. Try this, if its still giving you problems I'll give it a shot

    Edit - Actually I'm trying to create that right now, I'll post my what I get for you.
    Last edited by chancity; 06-25-2012 at 09:09 PM.

  14. #674
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chancity View Post
    For all of you that know what your doing or have an idea. I was doing some tinkering today and I got my runs down to 27 seconds open cellar and 13 seconds closed cellar.

    Chancity's Test run 27s open cellars. - Pastebin.com

    Attack time is now based off of your buffed dps, please change hydra to force weapon and give me some insight of what to change/do differently. Use the INI this script creates for maximum potential gold per hour. This isn't an update, it could be if enough of the people trying it like it. Also I know the skills are sloppy and the sleeps too because I was just playing around.

    Must have:

    Evocation


    Edit this
    Code:
    $dps = 16000
    $attackTime = 160000 / $dps * 3.25
    What were your times before? I am running 10.8 to 13.3 being longest closed cellar and 41 being the longest ive seen for an open run(running on vmware so adds about 3-5 sec for overall looting) and was a 5 sec random sleep.

    If anything would speed it up perhaps using teleport in town to get to repair guy?
    Last edited by stealthingyew; 06-25-2012 at 09:05 PM. Reason: changed blacksmith to repair guy

  15. #675
    pazazu's Avatar Banned
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stealthingyew View Post
    post a screenshot of the error please.
    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]-d3_error_1-jpg
    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]-d3_error_2-jpg

    Since we just flipped page I'll post my issue again:
    "I've downloaded and installed the "Auto Install". I also ran it as Admin. So it successfully installed and when I launch the bot it can login and resume game, but all it does is to tp back and just stand there. I also got some errors along the way regarding "Error: Unknown function name".
    And I haven't even edited the MainScript.au3. All I have done is to edit the WZD.ini so that it can locate my game folder and type in the password.

    What am I doing wrong?"

Similar Threads

  1. Replies: 440
    Last Post: 10-31-2012, 11:00 AM
  2. Replies: 272
    Last Post: 08-14-2012, 03:33 PM
  3. Replies: 3
    Last Post: 07-31-2012, 06:54 PM
  4. Replies: 37
    Last Post: 07-18-2012, 02:37 PM
  5. Replies: 164
    Last Post: 07-01-2012, 02:37 PM
All times are GMT -5. The time now is 12:24 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