100k-200k/hr Bastion Farming, No combat needed.  Easy to script. menu

User Tag List

Page 4 of 11 FirstFirst 12345678 ... LastLast
Results 46 to 60 of 151
  1. #46
    wawsteris's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for sharing!
    Last edited by wawsteris; 06-11-2012 at 06:07 AM.

    100k-200k/hr Bastion Farming, No combat needed.  Easy to script.
  2. #47
    c4monkey04's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    should be put in the elite section..itll get nerfed if it gets out :/

  3. #48
    Alumix's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My try at the macro. The coords are for 1366x768. It has build-in ratio converter but that doesnt work as it should. Maybe if someone wants to fix it, go for it.
    If you have another ressolution and want to try it anyway just start the macro, it automaticly uses whatever res the game uses.
    One more thing, you have to run in fullscreen windowed otherwise the pixel reading is off sometimes.
    If you want to change the coords here is a small one to get the coords of your mouse
    Code:
    Opt("PixelCoordMode", 0)
    $delay = 3000
    WinActivate("Diablo III")
    WinWaitActive("Diablo III") 
    sleep($delay)
    $mPos =MouseGetPos()
    MsgBox(0,"Mouse is at...","x:" & $mPos[0]&"     y: "&$mPos[1])
    Code:
    #include <Color.au3>
    Opt("PixelCoordMode", 0)
    
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    ;; Tested with quest act3.7.1
    ;;  Chose the quest, start the macro.
    ;;
    ;;  !!!Use Fullscreen-Window!!!
    ;; 
    ;; Hotkeys: 
    ;;			M : exit program
    ;;			B : pause
    ;
    ; do you want to use a skill? 
    $buff=1 ;1= yes 0= no
    $skill="q" ; key , must be in " "
     
    ;sleep times in milliseconds: 1000=1sec
    $sleepShort= 300 ; used for random start + inbetween pickup and wait for the leave menu to open.
    $sleepMed= 1000 ;only used on first run to be sure the start/resume button is visible.
    $sleepMove1= 2000 ; time it takes to get to first position
    $sleepMove2= 1500 ; time from first position to chest
    $sleepVar= 50 ; time gets added/substracted from the ones above to create random times 
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    HotKeySet("m", "_quit")
    HotKeySet("b", "_pause")
    $paused = False
    $firstTime = True
    
    $gameWindowSize=WinGetClientSize("Diablo III")
    $gameX=$gameWindowSize[0]
    $gameY=$gameWindowSize[1]
    $defaultResolutionX = 1366 ;res in which the coordinates/waypoints are taken
    $defaultResolutionY = 768 ; 
    $ratioX= $gameX / $defaultResolutionX
    $ratioY= $gameY / $defaultResolutionY
    ;;Coordinates
       ;login button 
       $loginMinX= 63  ;left 63
       $loginMaxX= 265 ;right 265
       $loginMinY= 285 ;top 285
       $loginMaxY= 305 ;bottom 305
       ;color of login button at random position on the start/resume button. dont change
       $colLoginX=Random($loginMinX,$loginMaxX)
       $colLoginY=Random($loginMinY,$loginMaxY)
       $colLogin=""
       ;hp field, whole area must be red
       $hpMinX= 380 ;left 380
       $hpMaxX= 400 ;right 400
       $hpMinY= 694 ;top 694
       $hpMaxY= 726 ;bottom 694
       ;leave game button
       $leaveMinX= 589 ;left 589
       $leaveMaxX= 772 ;right 772
       $leaveMinY= 405 ;top 405
       $leaveMaxY= 419 ;bottom 419
       ;move
       ;1
       $move1X=121 ;121
       $move1Y=129 ;129
       ;2-chest
       $move2X=91 ; 96  91  108  91
       $move2Y=322 ;320 316 335 322
       ;3-pickup
       $move3X=600 ;600
       $move3Y=470 ;470
       ;random pixel var 
       $moveRndPixel= 20 ;number of pixels added in random movement
    
    While 1
       if($firstTime) Then 
    	  WinActivate("Diablo III")
    	  WinWaitActive("Diablo III") ; wait for the d3 window to load
    	  ;sleepMED sleep to be sure the button is visible
    	  Sleep(Random($sleepMed-$sleepVar, $sleepMed+$sleepVar))
    	  ; get a reference color if it is the first loop
    	  $colLogin= PixelGetColor( $colLoginX*$ratioX, $colLoginY*$ratioY) 
    	  $firstTime=False
       EndIf
       ; wait till the start/resume button is visible
       While (PixelGetColor($colLoginX*$ratioX, $colLoginY*$ratioY) <> $colLogin) 
       WEnd; -> start/resume button is visible
       ;click the start game button at a random position
       MouseClick("Left", Random($loginMinX,$loginMaxX)*$ratioX, Random($loginMinY,$loginMaxY)*$ratioY, 1)
       ;wait until the hp ball is visible
       While Not _isRed(Random($hpMinX,$hpMaxX)*$ratioX, Random($hpMinY, $hpMaxY)*$ratioY)
       WEnd ; -> hp is visible, char is in game
       ;use buff if activated $buff=1
       If($buff=1)Then 
    	  Sleep(Random($sleepShort-$sleepVar, $sleepShort+$sleepVar))
    	  Send($skill)
       EndIf
       ; sleepShort random sleep so it doesnt start at the same time
       Sleep(Random($sleepShort-$sleepVar, $sleepShort+$sleepVar)) 
       ; get random move pixel:
       $move1xRnd= Random($move1X-$moveRndPixel, $move1X+$moveRndPixel) ; x-axis
       $move1yRnd= Random($move1Y-$moveRndPixel, $move1Y+$moveRndPixel) ; y-axis
       ; get coord difference from center pixel:
       $move1xDif= $move1X - $move1xRnd ; x-axis
       $move1yDif= $move1Y - $move1yRnd ; y-axis
       ; click to move to first position
       MouseClick("left",$move1xRnd*$ratioX, $move1yRnd*$ratioY,1) 
       ;sleepMove1 time to reach the position
       Sleep(Random($sleepMove1-$sleepVar,$sleepMove1+$sleepVar)) 
       ;get coords of the chest :
       $move2xFinal= $move2X + $move1xDif ; x-axis
       $move2yFinal= $move2Y + $move1yDif ; y-axis
       ;click chest/move to 2nd position
       MouseClick("left",$move2xFinal*$ratioX, $move2yFinal*$ratioY) 
       ;sleepMove2  wait to move and open
       Sleep(Random($sleepMove2-$sleepVar, $sleepMove2+$sleepVar)) 
       ;move a bit to pickup the gold
       MouseClick("left", Random($move3X-$moveRndPixel, $move3X+$moveRndPixel)*$ratioX, Random($move3Y-$moveRndPixel, $move3Y+$moveRndPixel)*$ratioY)
       ;sleepShort wait for the gold pick up
       Sleep(Random($sleepShort-$sleepVar, $sleepShort+$sleepVar))
       ;open menu
       Send("{ESC}")
       ; sleepShort  wait for the menu
       Sleep(Random($sleepShort-$sleepVar, $sleepShort+$sleepVar)) 
       ; click leave game
       MouseClick("left", Random($leaveMinX, $leaveMaxX)*$ratioX, Random($leaveMinY, $leaveMaxY) *$ratioY)
    WEnd
    
    Func _quit() 
    Exit
    EndFunc
    
    Func _pause()
       $paused = Not $paused
       while $paused
    	  sleep(10)
       WEnd
    EndFunc
    
    Func _isRed(Const $coord_x,Const $coord_y)
       $colorDec=PixelGetColor($coord_x,$coord_y) 
       $colorHex ="0x00"& Hex($colorDec,6)
       $colRGB= _ColorGetRGB($colorHex)
       $red=$colRGB[0]
       $green=$colRGB[1]
       $blue=$colRGB[2]
       $redMin=100
       $greenMax=50
       $blueMax=50
       If($red>$redMin And $green<$greenMax And $blue<$blueMax) Then
    	  Return True
       Else
    	  Return False
       EndIf
    EndFunc

  4. #49
    pigorhen's Avatar Member
    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)
    the above code shows up color RGB line 135 after resuming the game, was running the full screen windowed mode : (
    Last edited by pigorhen; 06-11-2012 at 07:13 AM.

  5. #50
    hanz2'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)
    Hello,

    I am new to AutoIT. I´ve copied the first code (running on 1680x1050) and enterd it on a new script file. After that Ive resumed to the game but nothing happend (I dont know if I have to start the script somehow but it was already running as far as I could tell). I even pressed go but still nothing happend.

    Could someone make a quick tutorial on how to use this tool + the provided codes?

    thx in advance.

  6. #51
    c4monkey04's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    press "y" to start the script. it will hit resume game and go about its thing. that is if you have the coordinates right for where the mouse clicks should go. thats the rough part.

  7. #52
    hanz2'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)
    Ah,

    your script does work but unfortunately not with my wizard and my specs (1680x1050). So which parts do I have to modify? (13%movementspeed)

    edit: Ok its working for me now. The last step is to include teleport to get some exta time)
    Last edited by hanz2; 06-11-2012 at 08:47 AM.

  8. #53
    sinjako's Avatar Member
    Reputation
    4
    Join Date
    Jan 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nerfed in EU, only getting 100-200g per ches wih 130% gf.

  9. #54
    hanz2'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)
    Have 250% GF gear and got around 20k in 10min (some stacks are around 2200)

  10. #55
    c4monkey04's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hanz2 View Post
    Have 250% GF gear and got around 20k in 10min (some stacks are around 2200)
    very nice..im slowly working on my gf set :/

  11. #56
    Tearik's Avatar Member
    Reputation
    8
    Join Date
    Nov 2008
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how recently are people trying this. I'm only getting about 200g per chest?

  12. #57
    c4monkey04's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tearik View Post
    how recently are people trying this. I'm only getting about 200g per chest?
    whats your gf? mode?
    I'm at 193gf and sometimes i get 5, 500, 1k. just kinda random.

  13. #58
    Tearik's Avatar Member
    Reputation
    8
    Join Date
    Nov 2008
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by c4monkey04 View Post
    whats your gf? mode?
    I'm at 193gf and sometimes i get 5, 500, 1k. just kinda random.
    185 GF
    inferno act 4 part 4.
    highest i've gotten is 700 now.

  14. #59
    Gnome01'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)
    Can someone post a 1440x900 version of any of the working scripts?

  15. #60
    hanz2'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)
    100k-200k/hr Bastion Farming, No combat needed.  Easy to script.-screenshot000-jpg


    there you go

Page 4 of 11 FirstFirst 12345678 ... LastLast

Similar Threads

  1. [Buying] Bulk gold 100k-200k on any server
    By Trigger22 in forum World of Warcraft Buy Sell Trade
    Replies: 7
    Last Post: 10-01-2012, 09:26 PM
  2. [Buying] The Bastion US - $12/m need 2.2m
    By Jaerin in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 2
    Last Post: 09-22-2012, 10:32 PM
  3. [Selling] Gold US - 2.5$/100k Private Seller - Legit Farmed
    By RandomKid12 in forum Diablo 3 Buy Sell Trade
    Replies: 5
    Last Post: 05-28-2012, 09:08 PM
  4. [Selling] DIABLO 3 EU GOLD 4,5€/100k private seller, hand farming NO BOTS ETC......
    By lawgru in forum Diablo 3 Buy Sell Trade
    Replies: 1
    Last Post: 05-23-2012, 07:00 AM
  5. Farm Vazruden/Nazan (need lock)
    By ZOMG in forum World of Warcraft Exploits
    Replies: 17
    Last Post: 08-15-2007, 03:03 PM
All times are GMT -5. The time now is 05:08 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