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

User Tag List

Page 24 of 298 FirstFirst ... 20212223242526272874124 ... LastLast
Results 346 to 360 of 4467
  1. #346
    BBM's Avatar Member
    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)
    sweet, its working now
    thanks

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #347
    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)
    over what value do I replace the script for 1000? and he can do click when you find the dankcellar?

  3. #348
    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 chancity View Post
    I'm not sure either, I know I changed the way gPh looks, fixed autostart, and changed looting after the kill.
    could replace the values ​​for the right for those who play with 300 ping? unfortunately I'm not getting! I'm desperate! :/

  4. #349
    Tyman3's Avatar Sergeant
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know why my little gray box with all the info in it (magics, gems, tomes, gold, gold per hour) doesnt count the gold that I pick up??? Please pm me the answer or put it here!

  5. #350
    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 tempperson34856 View Post
    The button to cancel the archon doesnt seem to work in 1600x900, so it keeps thinking you're a magic item until it goes away by itself, and won't teleport to town until it's expired. 1920x1080 works fine.
    Change: MouseClick("right",694,929) ;cancel archon

    With: MouseClick("right",Round(694*$x_ratio),Round(929* $y_ratio)) ;cancel archon

    Originally Posted by Tyman3 View Post
    Anyone know why my little gray box with all the info in it (magics, gems, tomes, gold, gold per hour) doesnt count the gold that I pick up??? Please pm me the answer or put it here!
    Make sure tesseract is installed properly

  6. #351
    tempperson34856's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oops can't believe I didnt check that - thanks!

  7. #352
    Scottiedk'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)
    Still waiting to hear from you/back from you chancity, or anyone up to helping. I am fairly certain I have everything set right, but my Wizard isn't using teleport to try and find the Cellar. She just runs a bit then when she runs into the first mob, casts a buncha stuff then TP's out.

  8. #353
    kaniaku's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i use this code to randomly cast spells, if it can be of any help :
    Code:
    Global $spellBind[4]
    $spellBind[0] = $DiamondSkin
    $spellBind[1] = $MirrorImage
    $spellBind[2] = $Teleport
    $spellBind[3] = $Hydra
     
     
     Func RandomOrder($chosenValue) 
    
       For $i = UBound($chosenValue) - 1  To 1 Step -1
    	  $j = random( 0, $i, 1)
    	  $temp = $chosenValue[$i]
    	  $chosenValue[$i] = $chosenValue[$j]
    	  $chosenValue[$j] = $temp
       Next
       
       Return $chosenValue ; return a array of the chosen array of value in a random order
    EndFunc
    
    Func SpellRandom( $waitCast ,$1, $2, $3 = -1, $4 = -1, $5 = -1, $6 = -1 ) ; randomly sort the spell hotkey succesion, e.g. : SpellRandom( 500, 3, 3, 0 ) will cast spell Hydra two time and spell DiamondSkin one time in a random order
       
       $s = 0
       Local $spellChosen[6]
       For $k = 0 to 5
    	  For $h = 0 To 3
    		 If $1 = $h Then
    			$spellChosen[$k] = $1
    			$1 = -1
    			$s += 1
    			ExitLoop
    		 ElseIf $2 = $h Then
    			$spellChosen[$k] = $2
    			$2 = -1
    			$s += 1
    			ExitLoop
    		ElseIf $3 = $h Then
    			$spellChosen[$k] = $3
    			$3 = -1
    			$s += 1
    			ExitLoop
    		 ElseIf $4 = $h Then
    			$spellChosen[$k] = $4
    			$4 = -1
    			$s += 1
    			ExitLoop
    		 ElseIf $5 = $h Then
    			$spellChosen[$k] = $5
    			$5 = -1
    			$s += 1
    			ExitLoop
    		 ElseIf $6 = $h Then
    			$spellChosen[$k] = $6
    			$6 = -1
    			$s += 1
    			ExitLoop
    		 EndIf
    	 Next
       Next
       
       ReDim $spellChosen[$s]
       
       $spellRandom = RandomOrder($spellChosen)
       
       For $d = 1 to UBound($spellRandom)
    	  CastSpell($spellRandom[$d-1])
    	  sleep(random( ($waitCast-($waitCast*0.25)), ($waitCast+($waitCast*0.25)) ))
       Next
    EndFunc
    
    Func CastSpell($spell)
       Send( ""&$spellBind[$spell]&"")
    EndFunc
    Last edited by kaniaku; 06-24-2012 at 03:51 AM.

  9. #354
    Shintr's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by feongr View Post
    Why doesn't the new one case Hydra in the cellar?
    i'd like to know this too. my dps is high enough to kill sark without it but still, with hydra it'd be safer. any one knows how to change that?

  10. #355
    kaniaku's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shintr View Post
    i'd like to know this too. my dps is high enough to kill sark without it but still, with hydra it'd be safer. any one knows how to change that?
    I bet it's because hydra could trigger the loot magic function, anyway archon got enough time left to kill them, just modify the $attackTime variable. But if you really want them back just uncomment lines 264 and 265
    Last edited by kaniaku; 06-22-2012 at 03:51 AM.

  11. #356
    catalyzer's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone can help me? thanks

    Originally Posted by catalyzer View Post
    i really like your script. well done chancity keep on going!
    i have few questions here.
    1. how come it didnt loot radiant gems(only loot the square gems)? i also noticed that ONLY green gems not sent to stash.
    2. i've tired running the script on desktop(i7) and laptop (i5), no problem with desktop;i can get about 159k gph hell mode. but for laptop, maybe bout 80k gph.. i noticed that 50% of the time it didnt tp till the cellar entrance, it just tp back to town. was that because of my slow laptop? is there any ini setting i need to change?
    3. what is SET ITEMS in ini file?

    thanks.

  12. #357
    airfreshjoe's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BASHKILLER View Post
    managed to install and put the bot to run, only to create the game, it uses the teleport, but when he opened the cellar ta caste skills opens the gate and leave the game, help me! do not know if it's because of lag here game with 300 ~ 400 ping, help me!

    Im having same trouble as this guy. What can i do? so change every sleep seconds to 1000?

  13. #358
    Shintr's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by airfreshjoe View Post
    Im having same trouble as this guy. What can i do? so change every sleep seconds to 1000?
    i get that quite a bit too on my other pc. where can i change "sleep" ? in the wiz.ini i couldnt find anything with "sleep". and which value do i have to change it to?

    also: today ive gotten a lot of "there was an error creating the game", when the bot tries to create the game that message pops up and nothing happens and it gets stuck. anyone knows what that's about and how to fix it`?

    thanks, appreciate it

  14. #359
    kaniaku's Avatar Corporal
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by catalyzer View Post
    anyone can help me? thanks
    1. You are running in hell, but the script is made for inferno, where it only drop square and square flawless square so the script has been made to look only for items with the suffix "square". However the script does include a customloot function, so you can add the radiant by yourself.
    2. It may be because you didn't refreshed all the files that come with the new version, imagesearch, tesseract, png ... But it's ultimately it's related to your laptop speed.
    3. SET, is a type of diablo 3 item, they are simply legendary items with green text that gain extra bonuses when worn in a group.
    Last edited by kaniaku; 06-22-2012 at 04:20 AM.

  15. #360
    airfreshjoe's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also another problem, accumulated Gold count is not working and it wont pick up any of the blue items except for Tome of Secret or whatever

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 07:20 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