[Goldfarming] [Barbarian] BlackSack's Sarkoth Script 360GPH [AutoIT] [1920x1080] menu

User Tag List

Page 49 of 53 FirstFirst ... 454647484950515253 LastLast
Results 721 to 735 of 793
  1. #721
    BlackSack's Avatar Knight-Lieutenant
    Reputation
    56
    Join Date
    Jun 2012
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by croceveneziana View Post
    Hey BlackSack, I'm not sure if you remember, but..

    ..I seemed to fix my stashing problem by turning on "Letterbox" and "Anti-Aliasing". Before, the stashin always seemed to be some pixels off item, now it's working perfectly.
    Another problem I encountered, which has nothing to do with the script:
    After some minutes in VM Workstation 8, the VM shuts down because of some nvidia-driver-problem.. any info on that? I have a gtx 560 TI, quad core, 8gig ram with 2gig dedicated to the VM.

    If you can give me any input, i'd be glad, if not: thanks for the script and the time you put into it, everyone!
    Yea this happens to me too like every 2 days.. its really annoying dont know of any fix atm thou

    [Goldfarming] [Barbarian] BlackSack's Sarkoth Script 360GPH [AutoIT] [1920x1080]
  2. #722
    BlackSack's Avatar Knight-Lieutenant
    Reputation
    56
    Join Date
    Jun 2012
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Swisstrade View Post
    Black, interested in including in the framework

    a) my Monk routines
    b) functionality to stash blue ilvl 61 up GF and MF rings and amulets

    ?

    cheers

    SwissTrade
    Yea sure I think we should start a new thread for this framework thou all the main authors can check their routines because I will not be able to test the monk code on my account

  3. #723
    BlackSack's Avatar Knight-Lieutenant
    Reputation
    56
    Join Date
    Jun 2012
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by baysic View Post
    Log summarizer

    Code:
    ;Time Function	
        $trt = TimerDiff($t)	
    	$hours = Floor((($trt / 1000) / 60) / 60)
    	$minutes = (($trt / 1000) / 60)
    	$sec = ($trt / 1000)
    	If $minutes > 60 Then
    		While $minutes > 60
    			$minutes -= 60
    		WEnd
    	EndIf
    	If $sec > 60 Then
    		While $sec > 60
    			$sec -= 60
    		WEnd
    	EndIf
    ;Gold Function
    	$mondelt = Number($mon) - Number($monold)
    	If $monstart = 0 Then $monstart = Number($mon) - $mondelt
    ;Item Function
    	$Totalpick = $LegendaryCount + $SetCount + $RareCount + $MagicCount
    ;Log Printer
    	Call("AddLog", "=============== iLog Zummarizer Start xD ===============")
    	Call("AddLog", 'Total Runtime: ' & $hours & ":" & Ceiling($minutes) & ":" & Ceiling($sec))
    	Call("AddLog", '=================================================')
    	Call("AddLog", 'Current Gold: ' & $mon & ", Total Gold Gain: " & Number($mon) - $monstart )
    	Call("AddLog", 'Gold Per Hour: ' & Ceiling((Number($mon) - $monstart) / ($trt / 3600000)) & ', Gold Per Trip: ' & Ceiling((Number($mon) - $monstart)/$run ))
    	Call("AddLog", 'Total Items Pick: ' & $Totalpick & ', Per Hour: ' & Ceiling(($Totalpick) / ($trt / 3600000)) & ', Per Trip: ' & $Totalpick / $cellarCount)
    	;enable these 4 lines below if you wants detailed item picks
    	;Call("AddLog", 'Total Items Pick: ' & $LegendaryCount & ', Per Hour: ' & Ceiling(($LegendaryCount) / ($trt / 3600000)) & ', Per Trip: ' & $LegendaryCount / $cellarCount)
    	;Call("AddLog", 'Total Items Pick: ' & $SetCount & ', Per Hour: ' & Ceiling(($SetCount) / ($trt / 3600000)) & ', Per Trip: ' & $SetCount / $cellarCount)
    	;Call("AddLog", 'Total Items Pick: ' & $RareCount & ', Per Hour: ' & Ceiling(($RareCount) / ($trt / 3600000)) & ', Per Trip: ' & $RareCount / $cellarCount)
    	;Call("AddLog", 'Total Items Pick: ' & $MagicCount & ', Per Hour: ' & Ceiling(($MagicCount) / ($trt / 3600000)) & ', Per Trip: ' & $MagicCount / $cellarCount)
    	;more stuff soon
    	Call("AddLog", 'Total Gems Pick: ' & $GemCount & ', Per Hour: ' & Ceiling(($GemCount) / ($trt / 3600000)) & ', Per Trip: ' & $GemCount / $cellarCount)
    	Call("AddLog", 'Total Tomes Pick: ' & $TomeCount & ', Per Hour: ' & Ceiling(($TomeCount) / ($trt / 3600000)) & ', Per Trip: ' & $TomeCount / $cellarCount)
    	Call("AddLog", '=================================================')
    	Call("AddLog", 'Cellar freq. (success/total runs): ' & $cellarCount & '/' & $run & ' = ' & ( $cellarCount / $run ) * 100 & ' %')
    	Call("AddLog", 'Trips Per Hour: ' & ((Number($run)) / ($trt / 3600000)) & ', Success runs: ' & $cellarCount & ', Fail runs: ' & Number($run) - $cellarCount )
    	Call("AddLog", '=================================================')
    	Call("AddLog", 'Deaths total: ' & $deathCount & ', Deaths Per Hour: ' & Number($deathCount) / ($trt / 3600000))
    	Call("AddLog", "=============== End of Log Summary ===============")
    The code will summerize your bot session and put these values at the end of log file.
    out put gonna be something like this

    Code:
    05/07/2012 07:43:00: =============== X Pressed Stopping Bot ===============
    05/07/2012 07:43:00: =============== iLog Zummarizer Start xD ===============
    05/07/2012 07:43:00: Total Runtime: 4:41:33
    05/07/2012 07:43:00: =================================================
    05/07/2012 07:43:00: Current Gold: 1847137, Total Gold Gain: 1730606
    05/07/2012 07:43:00: Gold Per Hour: 370124, Gold Per Trip: 
    05/07/2012 07:43:00: Total Items Pick: 631, Per Hour: 135, Per Trip: 2.75545851528384
    05/07/2012 07:43:00: Total Gems Pick: 407, Per Hour: 88, Per Trip: 1.77729257641921
    05/07/2012 07:43:00: Total Tomes Pick: 22, Per Hour: 5, Per Trip: 0.0960698689956332
    05/07/2012 07:43:00: =================================================
    05/07/2012 07:43:00: Cellar freq. (success/total runs): 229/451 = 50.7760532150776 %
    05/07/2012 07:43:00: Trips Per Hour: 96.4549839341157, Success runs: 229, Fail runs: 222
    05/07/2012 07:43:00: =================================================
    05/07/2012 07:43:00: Deaths total: 0, Deaths Per Hour: 0
    05/07/2012 07:43:00: =============== End of Log Summary ===============
    install instruction

    Code:
    Func Stop() ;to allow the script to stop
    
                          <----------------------------------------------- Paste my code here
    
            Exit
    EndFunc   ;==>Stop
    more function coming soon hopefully :P

    ***havn't test with wizard hybrid code***
    Awesome I gave it a try and it works perfectly on the hybrid script

  4. #724
    impsty's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BlackSack when bot be works perfectly because i dont have so much time to farm, can you just make new update or help me with my problem?

  5. #725
    owned727's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by L3g0 View Post
    Hi,

    can someone create a Build with skills required for Wizard? Would be nice.

    grz

    Adrian
    There's about 6 wizard scripts on this forum.

  6. #726
    BlackSack's Avatar Knight-Lieutenant
    Reputation
    56
    Join Date
    Jun 2012
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LATM View Post
    Blacksackkkkk get in vent, I'll give you the DH code for an optimized walk and kill routine, and perhaps you can help me with one little thingie
    Lol, I would but i posted that at about 2am dont forget our 8 hour of so time offset

  7. #727
    L3g0'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 owned727 View Post
    There's about 6 wizard scripts on this forum.

    hi,

    i dont´t want a script, just an example how to skill the wizzard in-Game. like this one ->

    Barbarian - Game Guide - Diablo III

    grz

  8. #728
    BlackSack's Avatar Knight-Lieutenant
    Reputation
    56
    Join Date
    Jun 2012
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by L3g0 View Post
    hi,

    i dont´t want a script, just an example how to skill the wizzard in-Game. like this one ->

    Barbarian - Game Guide - Diablo III

    grz
    Here you are:
    Wizard - Game Guide - Diablo III

  9. #729
    L3g0'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 BlackSack View Post
    thx, n1, I will test the hybrid.

    grz

  10. #730
    baysic's Avatar Sergeant
    Reputation
    5
    Join Date
    Aug 2010
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BlackSack View Post
    Awesome I gave it a try and it works perfectly on the hybrid script
    nice nice
    glad to hear that

  11. #731
    ikki9394's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I got a question here... are there anyway I can make it vendor the common items? It seems that sometimes it will pick up common loots by mistake and it wasnt vendored when talk to merch. The loots will stay in bag till full.

    Any solution?

  12. #732
    TMichael's Avatar Knight-Lieutenant
    Reputation
    29
    Join Date
    Jul 2012
    Posts
    346
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ikki9394 View Post
    I got a question here... are there anyway I can make it vendor the common items? It seems that sometimes it will pick up common loots by mistake and it wasnt vendored when talk to merch. The loots will stay in bag till full.

    Any solution?
    Just change this line in your settings to True:

    Code:
    $vendorAll = True ;True if you want to right click all items when talking to vendor
    It takes a little longer than the default setting because it will click every square in your inventory. I updated my code so that it calls this every 4th run, vendoring normally for the other three.

  13. #733
    BlackSack's Avatar Knight-Lieutenant
    Reputation
    56
    Join Date
    Jun 2012
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TMichael View Post
    Just change this line in your settings to True:

    Code:
    $vendorAll = True ;True if you want to right click all items when talking to vendor
    It takes a little longer than the default setting because it will click every square in your inventory. I updated my code so that it calls this every 4th run, vendoring normally for the other three.
    Thats a nice idea, adding it to next version

  14. #734
    sebkovy'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)
    your resolution is good but your display is not,choose : WINDOWED ( Fullscreen )

  15. #735
    ikki9394's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, thanks for reply.

    I've changed the setting a bit,

    I skipped on gems and blues; just picking up gold and rares.
    Changed the circle timing to 50 successful run then store rares and repair.

    Gives me average 500k GPH with 27.5 sec average per run. Is it a good idea or should I pick up blues as well? which would optimise gold gain u reckon?

Similar Threads

  1. Replies: 763
    Last Post: 11-09-2013, 08:51 AM
  2. Replies: 564
    Last Post: 07-27-2012, 07:49 AM
  3. Replies: 195
    Last Post: 07-25-2012, 11:28 PM
  4. Replies: 65
    Last Post: 06-11-2012, 11:07 AM
  5. Replies: 207
    Last Post: 06-11-2012, 10:50 AM
All times are GMT -5. The time now is 01:52 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