[AutoIT1920x1080] Overflow Ore Farming - semi AFK menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 22
  1. #1
    donotwant's Avatar Member
    Reputation
    6
    Join Date
    Jun 2009
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [AutoIT1920x1080] Overflow Ore Farming - semi AFK

    Hi

    Since everyone knows the "overflow"-exploit to farm ores and chests I've decided to share my very simple idea of an AutoIT script to farm ores and chests during peak times.

    Ore
    Code:
    HotKeySet("y","Leave")
    HotKeySet("x", "Pause")
    HotKeySet("c", "Stop")
    
    $default_resolutionX = 1920
    $default_resolutionY = 1080
    $x_ratio = @Desktopwidth / $default_resolutionX 
    $y_ratio = @Desktopheight / $default_resolutionY
    
    $go = True
    $Leave = False
    
    While $go
    if($Leave) then
    MouseClick("left",765,981,2) ;*1 DOUBLECLICK on your chosen characterslot / theyre written with a 2 at the end like xxx,xxx,2
    MouseClick("left",765,981,1) ;*1 just another click on the same coords cause it randomfixed an issue for me
    Sleep (10000) ;<- Adjust this value depending on your loading time
    Send("f")
    sleep (5000)
    Sleep (500)
    Send ("{ESC}")
    Send("f")
    Sleep (5000)
    Send("f")
    Sleep (5000)
    Send("f")
    Sleep (11000)
    Send("{ESC}")
    sleep (100)
    MouseClick("left",980,592,1) ;*2 click in the middle of "Logout"
    sleep (100)
    MouseClick("left",980,592,1) ;*2 click again to go back to "Character Selection"
    sleep (3000) ;<- Adjust this value depending on your loading time
    EndIF
    
    
    WEnd
    
    Func Pause()
       $Leave = False
    EndFunc
    
    Func Stop() ;to allow the script to stop
        Exit
    EndFunc 
     
    Func Leave()
        $Leave = True
     EndFunc
    Chest version
    Code:
    Global $Paused
    
    HotKeySet("y","Leave")
    HotKeySet("x", "Pause")
    HotKeySet("c", "Stop")
    
    $default_resolutionX = 1920
    $default_resolutionY = 1080
    $x_ratio = @Desktopwidth / $default_resolutionX 
    $y_ratio = @Desktopheight / $default_resolutionY
    
    $go = True
    $Leave = False
    
    While $go
    if($Leave) then
    MouseClick("left",765,981,2) ;*1 DOUBLECLICK on your chosen characterslot / theyre written with a 2 at the end like xxx,xxx,2
    MouseClick("left",765,981,1) ;*1 just another click on the same coords cause it randomfixed an issue for me
    Sleep (10000)
    Send("f")
    sleep (5000)
    Sleep (500)
    Send ("{ESC}")
    Sleep (500)
    Send("{ESC}")
    sleep (100)
    MouseClick("left",980,592,1) ;*2 click in the middle of "Logout"
    sleep (100)
    MouseClick("left",980,592,1) ;*2 click again to go back to "Character Selection"
    sleep (3000)
    EndIF
    
    
    WEnd
    
    Func Pause()
       $Leave = False
    EndFunc
    
    Func Stop() ;to allow the script to stop
        Exit
    EndFunc 
     
    Func Leave()
        $Leave = True
     EndFunc
    How to use it?
    Run GW2 in Windowed Fullscreen with an resolution of 1920x1080 and make sure to check "Autoloot" in your option window.
    Put the code into an .txt file and rename it to .au3
    Load with AutoIT
    Go to your favorite rich copper/iron/silver/whatsnot vein and start the script
    Watch a movie/series while your char keeps relogging and farming the your choosen vein.
    You need to equip a new Pick from time to time.

    Press y to start, x to pause and c to stop the script.
    Last edited by donotwant; 08-29-2012 at 09:27 PM.

    [AutoIT1920x1080] Overflow Ore Farming - semi AFK
  2. #2
    eigah's Avatar Sergeant
    Reputation
    2
    Join Date
    May 2012
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    going to give it a shot what does it do with mobs ? for example a mob is near a rich deposit?

  3. #3
    donotwant's Avatar Member
    Reputation
    6
    Join Date
    Jun 2009
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well as you can see in the code, everything it does is entering the world from the char screen, sending F (wich is the default gather key) a few times to log out afterwards. No checks for mobs or anything, but I thought about adding something similar (like logging out if below 50% hp) if this "exploit" keeps being useful in the near future.

    NOTE
    Since it uses different overflows it may get useless after running it for a longer time. Remember to equip new picks once in a while

  4. #4
    w4st3's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    According to my test and your script, instruction should ba as follow :
    "Run GW2 in Windowed Fullscreen with an resolution of 1920x1080 and make sure to check "Autoloot" in your option window.
    Put the code into an .txt file and rename it to .au3
    Load with AutoIT
    Go to your favorite rich copper/iron/silver/whatsnot vein
    Go back to char selection screen and start the script
    Watch a movie/series while your char keeps relogging and farming the your choosen vein.
    You need to equip a new Pick from time to time."

    Your script starts at character selection screen, not in front of the ore vein.

  5. #5
    d0p3's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty for the script but how i can make it that it runs 1440x900?


    i made it myself gj for the rest :P
    Last edited by d0p3; 08-29-2012 at 01:50 PM.

  6. #6
    w4st3's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I twicked the script to work with all resolutions, include a 15% random sleep and make it begin when you stand front of the ore :

    Code:
    HotKeySet("y","Leave")
    HotKeySet("x", "Pause")
    HotKeySet("c", "Stop")
    
    $default_resolutionX = 1920
    $default_resolutionY = 1080
    $x_ratio = @Desktopwidth / $default_resolutionX 
    $y_ratio = @Desktopheight / $default_resolutionY
    
    $go = True
    $Leave = False
    
    While $go
    if($Leave) then
    Send("f")
    randsleep (5000)
    Sleep (500)
    Send ("{ESC}")
    Send("f")
    randSleep (5000)
    Send("f")
    randSleep (5000)
    Send("f")
    randSleep (11000)
    Send("{ESC}")
    randsleep (300)
    MouseClick("left",980*$x_ratio,592*$y_ratio,1)
    randsleep (200)
    MouseClick("left",981*$x_ratio,592*$y_ratio,1)
    sleep (6000) ;<- Adjust this value depending on your loading time
    MouseClick("left",765*$x_ratio,981*$y_ratio,2)
    MouseClick("left",765*$x_ratio,981*$y_ratio,1)
    Sleep (20000) ;<- Adjust this value depending on your loading time
    EndIF
    
    
    WEnd
    
    func RandSleep($ms) 
       sleep($ms*random(.85,1.15))
    Endfunc
    
    Func Pause()
       $Leave = False
    EndFunc
    
    Func Stop() ;to allow the script to stop
        Exit
    EndFunc 
     
    Func Leave()
        $Leave = True
     EndFunc
    Kuddos and all credit to OP.

    Edit : OP feel free to add it into your script.
    Last edited by w4st3; 08-29-2012 at 04:13 PM.

  7. #7
    eigah's Avatar Sergeant
    Reputation
    2
    Join Date
    May 2012
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    started from char select, mined the ore and it had problems logging out, it took the tab out but it didnt press logout , waited 40 secs and nothing happened

  8. #8
    w4st3's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Happened to me once: i had pressed escape to get rid of the "overflow server message".

    While starting the script, if the Escape menu pops up while mining, press esc once. This should do the trick.

  9. #9
    UltimatePower's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've tinkered with your script a bit w4st3, I can't get it working properly at different resolutions, I'm no techie however so I haven't hit gold yet. Just a note. + the last line is faulty, it has a typ in it. Endfuncf

  10. #10
    w4st3's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Weird, it worked for me @1920x1080...

    Corrected the Endfucf, thanks.
    Well i'm no pro so hopefully the OP author will correct my mistakes.

  11. #11
    Tomatoes99's Avatar Sergeant CoreCoins Purchaser
    Reputation
    16
    Join Date
    Aug 2012
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by w4st3 View Post
    Weird, it worked for me @1920x1080...

    Corrected the Endfucf, thanks.
    Well i'm no pro so hopefully the OP author will correct my mistakes.
    It could be because they are confused about where to put in their resolution.
    You could make it:
    Code:
    $resolutionX = 1920 ;Change this number to your X resolution.
    $resolutionY = 1080 ;Change this number to your Y resolution.
    ;Don't touch this stuff.
    $x_ratio = $resolutionX /1920
    $y_ratio = $resolutionY /1080
    so it's more clear.

  12. #12
    donotwant's Avatar Member
    Reputation
    6
    Join Date
    Jun 2009
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Upcomming feature: Auto equipping new picks + a few random sleeps

    right now this will stay 1920x1080 only, but you can easily adjust the mouse clicks with coordinates similar to your resolution, so please adjust them yourselfes since im running a little low on time at the moment. To adjust the clicks, just use the AutoIT Au3Record from AutoIT -> Extras -> Au3Record. Use "Record" to record the mouse position and the clicks, youll need to change all of the marked coordinates to your new recorded coordinates.

    Note:
    It will get kind of useless when running it for a longer time, so dont think you'll get tons of stuff from using this method. Anyway, keep in mind that changing the location/vein may solve this for a short time.

    To any question of how "SAFE" this is: Use at own risk!
    But my personal thought is that this is kind of safe since the people dont care that much as this is not an event + you'll be gone after a few seconds and disappear into another overflow. So I'd say the change of getting reported is pretty low.
    Last edited by donotwant; 08-29-2012 at 09:34 PM.

  13. #13
    Drakendour's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For some reason it doesn't allow me to run the script, it just stays paused even after I press y

  14. #14
    critical88's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    79
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    which level u suggest to start doing this

  15. #15
    w4st3's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by donotwant View Post
    Upcomming feature: Auto equipping new picks + a few random sleeps.
    Nice. Try making the script click ok in the "Overflow server notification" instead of pressing ok, should let the script log out even when there's not such notification.
    Last edited by w4st3; 08-30-2012 at 05:24 AM.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Guide] Semi-AFK Felslate farm.
    By avavael in forum World of Warcraft Guides
    Replies: 3
    Last Post: 09-18-2016, 11:41 AM
  2. [Gold] Semi-AFK Spirit of Harmony farm. [Before 5.4 hit]
    By Cecu in forum World of Warcraft Guides
    Replies: 3
    Last Post: 08-21-2013, 01:56 PM
  3. Easy Iron/gold ore, mining 125-200, semi-afk
    By kennyo7 in forum World of Warcraft Exploits
    Replies: 47
    Last Post: 11-28-2010, 05:57 PM
  4. Mith ore Farming place
    By dibbs in forum World of Warcraft Guides
    Replies: 15
    Last Post: 05-30-2007, 09:18 AM
  5. The uberbasic picture guide to copper ore farming in elwynn forest
    By Billy in forum World of Warcraft Guides
    Replies: 13
    Last Post: 04-13-2007, 06:27 AM
All times are GMT -5. The time now is 04:29 PM. 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