[Goldfarming] AFK 150k-200k Gold Per Hour [AutoIT Script] [1920x1080] [made for DH] menu

User Tag List

Page 2 of 50 FirstFirst 123456 ... LastLast
Results 16 to 30 of 750
  1. #16
    fukker's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2010
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where do you ppl start this script in town or at Menus ?

    EDIT: don't mind this im an idiot didnt read first post carefully
    Last edited by fukker; 06-05-2012 at 11:48 AM.

    [Goldfarming] AFK 150k-200k Gold Per Hour [AutoIT Script] [1920x1080] [made for DH]
  2. #17
    Fen666's Avatar Sergeant
    Reputation
    6
    Join Date
    May 2012
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could you modify/Edit it for 1680x1050 ? cause i cant get my screen to that res you have there, thanks

  3. #18
    romeotikz's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    -Deleted-

    Some problems i have fixed
    Last edited by romeotikz; 06-05-2012 at 12:06 PM.

  4. #19
    chronic24's Avatar Member
    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)
    whats best way to edit it to 1600x900

  5. #20
    mackus101's Avatar Sergeant
    Reputation
    24
    Join Date
    May 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chronic24 View Post
    whats best way to edit it to 1600x900
    This is a great tool I found that pops open a GUI that maps the X and Y and color of where your mouse is at all times. so just move your mouse copy down coordinates.

    Code:
    ; include some constants we use, like $GUI_EVENT_CLOSE or $WS_EX_TOOLWINDOW
    #include <GUIConstantsEx.au3> 
    #include <WindowsConstants.au3>
    
    ; Create a GUI window
    ; title will be 'Cursor nfo'
    ; width = 160, height = 40. The two -1 means the window will be centered on screen (this is AutoIt's doing,
    ; it's like we haven't specified WHERE we want the window exactly, so it just puts it in the middle)
    ; $WS_EX_TOOLWINDOW + $WS_EX_TOPMOST - these are two constants - variables with predefined values, that
    ; tell the GUI to draw a windows with small border and always on top
    GUICreate("Cursor nfo", 160, 40, -1, -1, -1, $WS_EX_TOOLWINDOW + $WS_EX_TOPMOST)
    
    ; Create two labels, don't worry about text being empty for now, the  reset is left, right, width, height
    $label1 = GUICtrlCreateLabel("", 5, 5, 150, 15)
    $label2 = GUICtrlCreateLabel("", 5, 20, 150, 15)
    
    ; helper variables, storing last known cursor position and color
    $ox = -1
    $oy = -1
    $oc = -1
    
    ; show our GUI window
    GUISetState(@SW_SHOW)
    
    ; In Infinite Loop do
    While True
        ; check GUI Messages (what windows sends to us) for possible events
    	Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE ; in the event user click the close button
                Exit
    	EndSwitch
    		
    	; call function MousePos
    	MousePos()	
    	; sleep for 25ms, this is here just so we don't read the cursor every processor tick
    	Sleep(25)
    
    WEnd
    	
    ; Function that reads the cursor
    Func MousePos()
        ; get the mouse cursor position, absolute
    	$pos = MouseGetPos()
    	; get pixel color
    	$col = PixelGetColor($pos[0], $pos[1])
    	; if anything changed (i.e. any saved value is not the same as current value)
    	If ($ox <> $pos[0] OR $oy <> $pos[1] OR $oc <> $col) Then
    		; save the current value
    		$ox = $pos[0]
    		$oy = $pos[1]
    		$oc = $col
    		; update the labels with the current readings
    		SetLabels($pos[0], $pos[1], $col)
    	EndIf
        
    EndFunc
    
    ; set label text
    Func SetLabels($x, $y, $col)
    	; construct the text
    	$textPos = "Mouse pos x:" & $x & " y:" & $y
    	$textCol = "Color: " & Hex($col, 6)
    	; set the text to the labels
    	GUICtrlSetData($label1, $textPos)
    	GUICtrlSetData($label2, $textCol)
    EndFunc

  6. #21
    chaosisme's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm having issues while running this. If I start it in town it opens up the way point, clicks, and starts using abilities. If I run it at the check point by the cellar it will run back a bit then misclick and start using abilities. Not sure if my reading comprehension is awful, or I am just getting a weird error. Any help would be appreciated.

  7. #22
    Bangsley'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)
    Is there a wiz using this script that could modify it to our skills, ex tele-wormhole, venom hydra etc etc?
    This script is running great for my brother, but even running through these packs just gets me 1 shot in all of my MF and GF gear. Tele-wormhole right to the entrance would save a lot of time and deaths for me atleast.
    Thanks so much though for the awesome script.

  8. #23
    chronic24's Avatar Member
    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)
    anychance you list what all the pixel cords are used for so i can easily change them

  9. #24
    CuT's Avatar Contributor
    Reputation
    184
    Join Date
    Jan 2007
    Posts
    629
    Thanks G/R
    7/18
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I wouldn't use AutoIT until the new warden modules are analyzed. Not sure if this has been done as of it being "activated" a day ago (?) I haven't checked blizzhackers.

    Be warned no one has mentioned it in this thread yet so I thought I would.

  10. #25
    fukker's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2010
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaosisme View Post
    I'm having issues while running this. If I start it in town it opens up the way point, clicks, and starts using abilities. If I run it at the check point by the cellar it will run back a bit then misclick and start using abilities. Not sure if my reading comprehension is awful, or I am just getting a weird error. Any help would be appreciated.
    I had same problem, when u select Act 1 Legacy of Cain make sure to select Eplore Cellar there, then run once u must get a checkpoint before the cellar, do one run, leave, resume poress =

  11. #26
    fukker's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2010
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This scripts runs amazingly well, except when it goes in town to repair, after repair it thinks that i juist started a script and my toon is in old ruins so its bugging out in town after repair

    edit: another thing i noticed is sometimes when i see cellar is opened it thinks its closed and teleports
    Last edited by fukker; 06-05-2012 at 12:40 PM.

  12. #27
    chaosisme's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fukker View Post
    I had same problem, when u select Act 1 Legacy of Cain make sure to select Eplore Cellar there, then run once u must get a checkpoint before the cellar, do one run, leave, resume poress =
    Alright, so I got the checkpoint by Adria's hut, then I run to the dank cellar, but when I quit and resume it still does the same thing. Any other ideas? I appreciate the help.

  13. #28
    Bangsley'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)
    Originally Posted by chaosisme View Post
    Alright, so I got the checkpoint by Adria's hut, then I run to the dank cellar, but when I quit and resume it still does the same thing. Any other ideas? I appreciate the help.
    Wrong cellar lol.. Do the cain quest but instead of going down, run North west as soon as u get off the WP. That will give u a new CPoint and then keep running North west and there be a little house. It spawns the Dank cellar most of the time.

  14. #29
    chaosisme's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bangsley View Post
    Wrong cellar lol.. Do the cain quest but instead of going down, run North west as soon as u get off the WP. That will give u a new CPoint and then keep running North west and there be a little house. It spawns the Dank cellar most of the time.
    Boy do I feel stupid. Thanks for the help.

  15. #30
    fukker's Avatar Active Member
    Reputation
    17
    Join Date
    Nov 2010
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chaosisme View Post
    Alright, so I got the checkpoint by Adria's hut, then I run to the dank cellar, but when I quit and resume it still does the same thing. Any other ideas? I appreciate the help.
    Here i made a screenshot for you [Goldfarming] AFK 150k-200k Gold Per Hour [AutoIT Script] [1920x1080] [made for DH]-160am9i-jpg and also make sure u select Explore Cellar when u select quest and do one run by yourself get that chepoint kill elite, leave game, resume and u should be at that checkpoint all the time when u resume then press = to start running a script

Page 2 of 50 FirstFirst 123456 ... LastLast

Similar Threads

  1. [Gold] 7,000 - 21,000 Gold Per Hour : Essence Of Water - needed for Tome of Illusion
    By studenalbatroz in forum World of Warcraft Guides
    Replies: 9
    Last Post: 08-02-2016, 04:43 AM
  2. ArcheBuddy Plugin - Auto Farm fully AFK earn 100++ Gold per Hour
    By Slangin_Games in forum ArcheAge Bots and Programs
    Replies: 4
    Last Post: 12-30-2014, 04:14 AM
  3. [Selling] ArcheBuddy Plugin - Auto Farm fully AFK earn 100++ Gold per Hour
    By Slangin_Games in forum ArcheAge Buy Sell Trade
    Replies: 6
    Last Post: 12-30-2014, 04:13 AM
  4. Replies: 739
    Last Post: 06-11-2012, 09:05 AM
  5. Replies: 253
    Last Post: 06-06-2012, 09:19 AM
All times are GMT -5. The time now is 02:44 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