completelylost
Total Posts: 6 Joined: August 30th, 2012, 4:19 pm
|
This bot is going to farm an ore vein for you if you are on a overflow server. This means you have a very popular server and quests are reset quickly if you log out to make room for others to do them. This is an autoit script to farm either a vein or chest over and over again. Your game needs to be at 1920 by 1080 to work.
GW2 Ore Farming Bot Autoit 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
GW2 Chest Farm Bot Autoit Script
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 Full screen 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
- You need to equip a new Pick from time to time.
- Press y to start, x to pause and c to stop the script.
|
|