[Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt] menu

User Tag List

Page 109 of 135 FirstFirst ... 959105106107108109110111112113 ... LastLast
Results 1,621 to 1,635 of 2011
  1. #1621
    Ailurophile's Avatar Active Member
    Reputation
    28
    Join Date
    Jun 2009
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sangmin22 View Post
    ok cool i know what causes the legendaries. the color of the table and the lantern sometimes makes the bot click on it and makes it think it has picked up a legendary. same as you, while monitoring the bot has never missed a single item under original settings.

    and also, Ailurophile, if you are good with codes, can you make it loot&stash level63 items from this script? [AutoIt] notares modified new loot analysis + ini - Pastebin.com (it is based on notares' script) i have tried it myself but the basic functions are different and it is too much for me to do
    Ah, thanks for the clarification on the lamp. Yes I am looking to implement ilvl 63 item stashing in to my script as well. So I will definitely give you my code should I be able to get it working.
    Gamer at heart, artist in soul.

    [Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt]
  2. #1622
    hhumpii's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if you guys can post a screenshot it would be easier to help. i was having that same problem when i was getting started.^^ i think it was around line 204 (entrance to the cellar) i changed the "y" number


    i also need some help. i am getting very inconsistent results. can someone please answer some questions?

    when my Demon Hunter enters the game. it misses the first mouse click. and goes straight to casting smoke screen.


    ;Start Run RandClick("middle", Round(500*$x_ratio), Round(250*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;starts the run [waypoint 1]
    Moving(1125)
    Send($skillSmokeScreen)
    thats what the script reads. but a lot of the time. it is skipping the first 2 lines and just smoke screening. causing it to screw up my whole run.

    i think its about 50/50 on if it does it properly or not.

    I have tried changing the load time in the script

    $loadtime = 3200 ; time in ms the script waits for the game to load before it starts pathfinding. Slow this down for slower hard drives
    i changed that all the way to 18000 at one point. but it is still the same inconsistent problem. any help would be appreciated thanks!

  3. #1623
    ExternalForce's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    http://img805.imageshack.us/img805/84/stuckv.png


    ----------------------------------------------------------------

    ;Start Run
    RandClick("middle", Round(500*$x_ratio), Round(250*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;starts the run [waypoint 1]
    Moving(1125)
    Send($skillSmokeScreen)
    Moving(440)
    RandClick("middle", 1, Round(370*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;waits ~1 second then [waypoint 2]
    Moving(1875)
    RandClick("middle", Round(400*$x_ratio), Round(600*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;middle of courtyard [waypoint 3]
    Moving(50)
    Send($skillSmokeScreen)
    Moving(25)
    Send($skillPreperation)
    Moving(750)
    Send($skillCaltrops)
    Sleep(300)
    RandMove(Round(200*$x_ratio),Round(180*$y_ratio), 2*$x_ratio, 20*$y_ratio) ;moves cursor over to the cellar so the proper blue pixel becomes highlighted

  4. #1624
    D3Ed's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes I did, and it still didn't seem to work.

  5. #1625
    LokiMadness's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hhumpii View Post
    if you guys can post a screenshot it would be easier to help. i was having that same problem when i was getting started.^^ i think it was around line 204 (entrance to the cellar) i changed the "y" number


    i also need some help. i am getting very inconsistent results. can someone please answer some questions?

    when my Demon Hunter enters the game. it misses the first mouse click. and goes straight to casting smoke screen.




    thats what the script reads. but a lot of the time. it is skipping the first 2 lines and just smoke screening. causing it to screw up my whole run.

    i think its about 50/50 on if it does it properly or not.

    I have tried changing the load time in the script



    i changed that all the way to 18000 at one point. but it is still the same inconsistent problem. any help would be appreciated thanks!
    a ; at the start of the codes means = Everything after this ; should be ignored... so editing things that are writen after ; is pointless because its only ment to be "comments" or code you want to dissable.

    Originally Posted by ExternalForce View Post
    Same problem here, can anyone please teach me how to edit the tmouse cursor? Thank you very much...
    *1* go download a better notepad that helps u edit stuff. Example ==> Notepad++ Home

    *2* Start Norepad++ drag in the .au3 file to edit it.

    *3* go down to line 175 there starts the codes once the character enters the game. (Lines can be seen if u use Notepad++)

    *4* at line 181 is written in code where the 1st mousclick is done.

    RandClick("middle", Round(500 * $x_ratio), Round(250 * $y_ratio), 2, 2) ;starts the run [waypoint 1]

    The first (500) number is how far to the left of the screen and the second number (250) is how far down the mouse movement will be.

    Ofc think the screen as there was 1600 wide = middle is at 800...
    And the screen is 1080 High = middle 540.

    so pixel 1,1 would be in the upper left corner..... I hope this explains hte basics of how to edit to move things.

    *5* Save the .au3 file

    *6* Right click the au3 file and compile it

    *7* Now its all down to trail and error, untill u get the bot working as you want it it. ... GL HF
    Last edited by LokiMadness; 06-28-2012 at 08:09 AM.

  6. #1626
    Moonwalkr's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else get error 3006 in game a bunch today? "There was an error loading the hero's data", pops up in middle of screen like a disconnect.

  7. #1627
    vodca12's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lazy leecher, yea thats me.. or more like a newb here

    can someone help me with script for 1360x768 resolution?
    thanks

  8. #1628
    sangmin22's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks man! i'm working on making other scripts in case sarkoth gets nerfed more. ill share that what i can

  9. #1629
    Zuelanda's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I start the bot, it easily finds the "resume game" button, but after that all it does it walk ~15 yards to the west and then teleports back to town, then leaves game->Rinse and repeat.

    Anyone know my problem?

  10. #1630
    LokiMadness's Avatar Corporal
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zuelanda View Post
    When I start the bot, it easily finds the "resume game" button, but after that all it does it walk ~15 yards to the west and then teleports back to town, then leaves game->Rinse and repeat.

    Anyone know my problem?
    Did u read all the instructions on the 1st page and all the links ?

  11. #1631
    AnotherBlowKid'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)
    Yeah I got the 3006 error alot. After every 5-10 runs does it.

  12. #1632
    AerobicTortoise's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am also having an issue with the script sometimes skipping the first couple lines. It will work properly sometimes, and others it will smokescreen in place and the entire run will be off.

  13. #1633
    AnotherBlowKid'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)
    Can there be a hotfix that searches for that ? just clicks okay?

  14. #1634
    skenderbeggar's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AnotherBlowKid View Post
    Yeah I got the 3006 error alot. After every 5-10 runs does it.
    same here in the beginning. Running well now through 60+ runs.

  15. #1635
    AnotherBlowKid'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)
    maybe ill just restart d3. How ever can there be a line added that searched for an image of the 3006 error everynow and then and just clicks it?

Similar Threads

  1. Replies: 113
    Last Post: 01-06-2014, 12:49 PM
  2. Replies: 36
    Last Post: 08-04-2012, 02:05 PM
  3. Need help [Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt]
    By heina in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 07-13-2012, 12:06 PM
  4. REQUEST: Shimizoki's Sarkoth DH Script [AutoIt] Pick up only itemlvl 63 rares.
    By ALWIN21 in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 07-10-2012, 07:10 PM
  5. [Gold/Item Farming] Shimizoki's Sarkoth DH Script [AutoIt]
    By Shimizoki in forum Diablo 3 Bots and Programs
    Replies: 403
    Last Post: 06-15-2012, 03:42 PM
All times are GMT -5. The time now is 08:48 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