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

User Tag List

Page 5 of 11 FirstFirst 123456789 ... LastLast
Results 61 to 75 of 151
  1. #61
    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
    185 GF
    inferno act 4 part 4.
    highest i've gotten is 700 now.
    hmm ive gotten almost 1k (950-something-ish) with just 137 gf. random but i saw it a few times. getting more piles of gold with 193gf (hell)

    100k-200k/hr Bastion Farming, No combat needed.  Easy to script.
  2. #62
    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)
    using mouse recorder, got it set up gonna let it go for an hour and see what happens.

  3. #63
    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)
    ugh nvm trial will only repeat 5 times

  4. #64
    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
    ugh nvm trial will only repeat 5 times
    i feel ya. i tried with ahk and its recording software but i couldnt get that to work for me :/

  5. #65
    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)
    got only 13k in 20 mins. which is still 312,000 in 8 hours. so i won't complain about making 300k while i sleep

  6. #66
    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)
    My request got slightly buried. Someone help me out with a 1440x900 auto script for this?

  7. #67
    Fyne101'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)
    Edit: I was able to get the script to work, but it is clicking slightly too far to the right and missing the chest. How do I adjust this?
    Last edited by Fyne101; 06-11-2012 at 12:58 PM.

  8. #68
    darkphantum's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This will probably get nerfed if enough people find out about it. Low income but its better than nothing while sleeping.

  9. #69
    LordBroJob'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)
    Hey guys, I keep dcing randomly. My script can hardly run for more than 2 hrs. What is the problem? Too much lag or the script is off? I can have good stretches, or sometimes DC in 15 mins. I really want to be able to sleep through the night with it running.

  10. #70
    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)
    Originally Posted by Alumix View Post
    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
    Did not work for me? Click away from chest everytime.

  11. #71
    killadotz's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have recently made a pretty smart script for this that uses alot of pixel recognition between clicks that allows it to flow better aka not get out of sync. I also incorporated a reconnect feature for DC's. Let me know if this interests anyone. its for 800x600 res and wizard because it uses teleport.

  12. #72
    sapsap's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dont do it! blizz is swinging the ban hammer atm

  13. #73
    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)
    eh im doing this stuff cause i really could care less if i get banned lol. this game is just awful and blizz is turning it into a joke.

  14. #74
    Xadaver's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    31
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by c4monkey04 View Post
    eh im doing this stuff cause i really could care less if i get banned lol. this game is just awful and blizz is turning it into a joke.
    You couldn't care less*.

  15. #75
    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 Xadaver View Post
    You couldn't care less*.
    that either..

Page 5 of 11 FirstFirst 123456789 ... 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:00 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