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

User Tag List

Page 22 of 53 FirstFirst ... 181920212223242526 ... LastLast
Results 316 to 330 of 793
  1. #316
    agnes94's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how can i get my own coordinates?

    [Goldfarming] [Barbarian] BlackSack's Sarkoth Script 360GPH [AutoIT] [1920x1080]
  2. #317
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For all the ones with problems with fastfind minimap screenshots in VMWare: Try the following:

    change

    FFSnapShot(1593 * $x_ratio, 62 * $y_ratio, 1880 * $x_ratio, 350 * $y_ratio, 0, $FFhWnd)

    To

    FFSnapShot(1593 * $x_ratio, 62 * $y_ratio, 1880 * $x_ratio, 350 * $y_ratio)

    Let me know if it worked, seems to work for me.

    cheers

    SwissTrade

  3. #318
    Jack187's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll give it a try... thx man

  4. #319
    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 Schmoggg View Post
    Hi,

    just to let you know. FastFind is not more demanding to the pc then the default PixelSearch Method.
    Another thing for the guys that cant seem to get the cellar find correct.
    Change Line 591 from Sleep(50) to SLeep(100).
    I guess on slow pcs with a framerate around 20 - 25 it can happen that the 2 pictures taken around these lines are identical. If thats the case the result is an entire black image -> no detection possible.

    Tomorrow i gonna release a version which is a little more bulletproof so crashes shouldnt occur anymore ( in regards to fastfind ) .
    I changed the delay but still have the same problem. My barb walks to first area and then seems to not find the cellar whether its open or not and just sits there indefinitely. It doesnt even port out. Any ideas on how I can troubleshoot?

  5. #320
    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 owned727 View Post
    I changed the delay but still have the same problem. My barb walks to first area and then seems to not find the cellar whether its open or not and just sits there indefinitely. It doesnt even port out. Any ideas on how I can troubleshoot?
    You could look at the log but i didnt put much debug info in there what is the last line written to the log before it freezes

  6. #321
    Dieri's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BlackSack im really interested in seeing ur gear cuz i barely reach 200% gf without getting killed

    Can u show me ur gear if possible ?

  7. #322
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another short improvement for the ones asking how to see their coordinates:

    Func TogglePause()
    $Paused = Not $Paused
    While $Paused
    Sleep(100)
    WinSetTitle($title, "", $title & $ver & " - Paused")
    Local $pos=MouseGetPos() ; add, actual mouse cursor position
    ToolTip('[PAUSED] - Deaths: ' & $deathCount & ' | Cellars: ' & $cellarCount & ' | x: ' & $pos[0] & ' | y: ' & $pos[1], 0, 0) ; add, enhance tooltip
    WEnd
    WinSetTitle($title, "", $title & $ver & " - Running")
    ToolTip("")
    EndFunc ;==>TogglePause

    Essentially you just need to add the two lines that are marked with :add. as soon as you pause your script, you can see the mouse coords in the tooltip in the upper left corner. For debugging, i recommend to put a TogglePause() wherever you need one in the run (e.g. before the functionality to detect the cellar is called - to verify that you ran far enough)

    cheers

    SwissTrade

  8. #323
    Jack187's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jack187 View Post
    I'll give it a try... thx man
    :-) this solved the problem for taking only one CellarMinimap image. This means, cellar detection seems to work now. But when I walk on after cellar is found, the script crashes without any Error message. Tried it with comiled exe and direct Go from script. I'll try to dig deeper into that now...

    Perhaps this is the same Error that PetjePuck discovered.

    Originally Posted by PetjePuck View Post
    tried it again on VM but it still doesn't work, it doesn't refresh the captures taken by FastFind. When i manage to get a open cellar at the first run after the VM reboot he trys to enter but then the script crashes with an error
    Attachment 8830
    bcuz it doesn't refresh the captures the bot keeps thinking he found a open cellar and crashes until i reboot the VM.

    ps. thanks for this awesome compilation of scripts and your nice work BlackSack. It runs smoothly on my realmachine(i7+8gb+ssd+560Ti)!

  9. #324
    PetjePuck's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Swisstrade View Post
    For all the ones with problems with fastfind minimap screenshots in VMWare: Try the following:

    change

    FFSnapShot(1593 * $x_ratio, 62 * $y_ratio, 1880 * $x_ratio, 350 * $y_ratio, 0, $FFhWnd)

    To

    FFSnapShot(1593 * $x_ratio, 62 * $y_ratio, 1880 * $x_ratio, 350 * $y_ratio)

    Let me know if it worked, seems to work for me.

    cheers

    SwissTrade

    Wow, nice find!
    Thx SwissTrade, fixed it so far for me - FastFind is taking a new screenshot every run now but when the cellar is found it still crashes with the screen a posted before...
    Originally Posted by PetjePuck View Post
    guess i have to use version 193h until i find a working fastfind version for me

  10. #325
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i'll look into that in a couple of mins ... atm i work on using the same script for my monk and warr, on optimizing the no cellar run times (14.5 secs atm, must be possible faster .-))

  11. #326
    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 Dieri View Post
    BlackSack im really interested in seeing ur gear cuz i barely reach 200% gf without getting killed

    Can u show me ur gear if possible ?


    Whats killing you its not that hard to make a high GF build with damage and health?? with this gear I havent died a single time it gives me 32K health and i have another 8% GF from my follower

    @Swisstrade Thanks for helping these people out
    Attached Thumbnails Attached Thumbnails [Goldfarming] [Barbarian] BlackSack's Sarkoth Script 360GPH [AutoIT] [1920x1080]-untitled-picture-jpg  
    Last edited by BlackSack; 07-01-2012 at 06:52 PM.

  12. #327
    croceveneziana's Avatar Member
    Reputation
    7
    Join Date
    Jun 2012
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just observed my Barb vendoring a set item and a unique item.
    Some other unique items have been properly stashed - it seems rather arbitrarily.. and suggestions ?

    I've been testing it with iLvl63 and without.. currently it's on "false".
    My pc is pretty fast.

    any idea, blacksack?

  13. #328
    michael8's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks BlackSack. With the new fastfind the scrip runs very reliable on my pc.

  14. #329
    Swisstrade's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Jun 2012
    Posts
    88
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fix for the crash as mentioned earlier:

    ; take 2 snapshots and black out everything that did not change
    ;FFSnapShot($x1 * $x_ratio, $y1 * $y_ratio, $x2 * $x_ratio, $y2 * $y_ratio, 2, $FFhWnd)
    FFSnapShot($x1 * $x_ratio, $y1 * $y_ratio, $x2 * $x_ratio, $y2 * $y_ratio, 2)
    Sleep(50)
    ;FFSnapShot($x1 * $x_ratio, $y1 * $y_ratio, $x2 * $x_ratio, $y2 * $y_ratio, 3, $FFhWnd)
    FFSnapShot($x1 * $x_ratio, $y1 * $y_ratio, $x2 * $x_ratio, $y2 * $y_ratio, 3)

    In essence, remove the $FFhWnd parameter in the function calls. These can be found in Func(EnhancedFind)

    Let me know if this fixed your issues.

    cheers

    SwissTrade

  15. #330
    Dieri's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks BlackSack!

    Im still getting stuck at this part tho :/

    RandClick("middle", Round(80 * $x_ratio), Round(830 * $y_ratio), 1, 1) ;moves to doorway leading to rare inside cellar
    walktime(Round(80 * $x_ratio), Round(830 * $y_ratio), 700)

    I tried -100 / 100 / 500 / 700

    Getting stuck everytime

    EDIT : it first moves back to the exit and then moves towards the door...

Page 22 of 53 FirstFirst ... 181920212223242526 ... LastLast

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 12:27 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