Atm no use, fixing it! - The Siege of Bastion's Keep A:3 Q:1 [Any Res] [AutoIt] menu

Shout-Out

User Tag List

Page 6 of 14 FirstFirst ... 2345678910 ... LastLast
Results 76 to 90 of 210
  1. #76
    keebs750's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    scratch that. I figured out what was wrong. The templar companion ****s up a click how he runs. I was wondering why iw asn't making it. Removed him and BAM everything works as posted. THank you so much Shimizoki!

    Atm no use, fixing it! - The Siege of Bastion's Keep A:3 Q:1 [Any Res] [AutoIt]
  2. #77
    Shimizoki's Avatar Knight-Lieutenant
    Reputation
    32
    Join Date
    Jun 2012
    Posts
    358
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by keebs750 View Post
    Works like a charm now! What would I do to make my toon wait like 2 seconds longer near the meteor? Or at least run all the way to where it hits.
    Well to wait a few seconds longer you would need to add another sleep(...) in the appropriate location. If you want to run all the way to where the meteor is, then you need to add another click/sleep combination.

  3. #78
    BipolarBearr's Avatar Member
    Reputation
    3
    Join Date
    May 2012
    Posts
    42
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome work j0achim, +rep.

    Also thanks Aurel1 for the tip.

    Fyi,

    ConsoleWrite(PixelChecksum($wpos[0]+116,$wpos[1]+608,$wpos[0]+120,$wpos[1]+612))
    ConsoleWrite(" ")

    only starts working after you've joined into a game. So add that code, resume game, and the numbers should pop up.

    Next, do the same thing except use

    ConsoleWrite(PixelChecksum($wpos[0]+76,$wpos[1]+258,$wpos[0]+80,$wpos[1]+262))
    ConsoleWrite(" ")

    This code works while you're in the character screen, so it should start repeating off the bat. Replace your number with the corresponding number.
    Last edited by BipolarBearr; 06-08-2012 at 11:48 PM.

  4. #79
    Shimizoki's Avatar Knight-Lieutenant
    Reputation
    32
    Join Date
    Jun 2012
    Posts
    358
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Glad I can be of service Keebs, and thanks BipolarBearr... if you were like 10 minutes earlier with that you would have saved the day. :P

  5. #80
    blankasf3's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry new here but do you need to be a certain lvl to do this? I'm trying this on my lvl 3 wiz and shes dieng every run am i doing something wrong?

  6. #81
    Mrtypr02's Avatar Corporal
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shimizoki View Post
    Did you try the most recent one that ended up fixing it for fieldy? Turns out we were looking at the wrong set of pixels for the menu... that was entirely my fault.


    I did try it, but was not sure if I was editing it correctly

    This is what mine looks like:

    while 1
    While $toggle = True
    Check()
    $wpos = WinGetPos("Diablo III")
    ConsoleWrite(PixelChecksum($wpos[0]+116,$wpos[1]+608,$wpos[0]+120,$wpos[1]+612))
    ConsoleWrite(" ")
    If PixelChecksum($wpos[0]+385,$wpos[1]+382,$wpos[0]+389,$wpos[1]+86) = 3014526114 Then ;Error message.
    Click(385,382)
    MouseMove(Random(10,45),Random(30,40),0)
    Sleep(50)
    ElseIf PixelChecksum($wpos[0]+76,$wpos[1]+258,$wpos[0]+80,$wpos[1]+262) = 225904426 Then ;Were in character menu.
    Click(76,25
    MouseMove(Random(10,45),Random(30,40),0)
    Sleep(50)
    ElseIf PixelChecksum($wpos[0]+116,$wpos[1]+608,$wpos[0]+120,$wpos[1]+612) = 225904426 Then ;Were ingame.
    ConsoleWrite("=== STARTING NEW GAME ===" & @CRLF)
    ConsoleWrite("Run #: " & $r & @crlf)

    $rt = TimerInit()
    Sleep(Random(120,130))
    ControlSend("Diablo III","","","{SPACE}")
    Sleep(Random(550,600))
    Click(757,605,"Left",2)
    Sleep(Random(1900,1950))
    Click(493,333)
    Sleep(Random(700,900))

  7. #82
    Shimizoki's Avatar Knight-Lieutenant
    Reputation
    32
    Join Date
    Jun 2012
    Posts
    358
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mrtypr, try doing the latest fix. BipolarBear summed it up really nicely a few posts above yours. use the checksum from the "Were in character menu" line instead.


    Originally Posted by blankasf3 View Post
    Sorry new here but do you need to be a certain lvl to do this? I'm trying this on my lvl 3 wiz and shes dieng every run am i doing something wrong?
    No, the code provided by the OP causes you to die at low levels. A few edits can slow that down or even stop it completely. I personally made it to where I run back through the door rather than just standing there.
    Last edited by Shimizoki; 06-08-2012 at 11:04 PM.

  8. #83
    blankasf3's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just to be clear this is where i should start the script right? Atm no use, fixing it! - The Siege of Bastion's Keep A:3 Q:1 [Any Res] [AutoIt]-dwun9i-jpg

  9. #84
    Shimizoki's Avatar Knight-Lieutenant
    Reputation
    32
    Join Date
    Jun 2012
    Posts
    358
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blankasf3 View Post
    Just to be clear this is where i should start the script right?
    Start it at the menu

  10. #85
    blankasf3's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah at the menu but thats where i need to be right?

  11. #86
    blankasf3's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tried your edits but i ran back into the portal before i got any xp, and yours didnt attack at all, it just ran back??? am i missing something?

  12. #87
    Tier539's Avatar Corporal
    Reputation
    6
    Join Date
    May 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I like teh script and it looks promising for alot of people. But I have set my window to be as small as possible, and I start it on the character selection screen, but it does nothing. I tried starting it in game, but nothing happened either.

  13. #88
    adiosbro's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the only thing missing to me is that the bot dont click the resume game button, it tried to check the forum, but i would need more information about it, plz its the only thing missing and it work ty
    Last edited by adiosbro; 06-08-2012 at 11:22 PM.

  14. #89
    Mrtypr02's Avatar Corporal
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tier539 View Post
    I like teh script and it looks promising for alot of people. But I have set my window to be as small as possible, and I start it on the character selection screen, but it does nothing. I tried starting it in game, but nothing happened either.
    Still Same issue for me as well

    Mines not an issue like the others where it plays but just doesnt click resume, mine just wont do anything

    Im about to give up, Cant seem to fix it

    Have tried what other ppl have suggested, and thanks, but it just still wont do anything

    It only works for desktop, but Id like to play my other account and bot on my second account on laptop if possible

  15. #90
    AJ989's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    guys, have blizzard changed something?

    now, the meteor comes at the beginning, and the mobs are not coming down the stairs.

    So the char is doing AOE in front of stairs without mobs,

    ho can I tell (modify the code) the char to go up the stairs, make an AOE (the mobs are always at the top of the stairs) and the run back to the door?

Page 6 of 14 FirstFirst ... 2345678910 ... LastLast

Similar Threads

  1. [Guide] Using Fraps in the Correct way (picture guide)
    By [ Prototype ] in forum World of Warcraft Guides
    Replies: 34
    Last Post: 01-27-2008, 09:04 PM
  2. How to use Eagle Eye the same way as Farsight (HUNTERS!)
    By Dvveh in forum World of Warcraft Exploration
    Replies: 17
    Last Post: 12-27-2007, 08:02 PM
  3. How do I execute updates & fixes into the sql
    By PRIMO12 in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 11-30-2007, 12:44 PM
  4. Fix for the NCDB 2.2 secondary skills
    By *TraPStaR* in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 11-03-2007, 10:47 PM
  5. How to use Mounts in the Eastern Kingdoms
    By godofwar in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 09-30-2007, 02:22 AM
All times are GMT -5. The time now is 07:01 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