Aion Bots - Auto Gathering Bot (Very Simple)
Posted: September 23rd, 2009, 5:34 pm
C+P
Okay found out how to make an ugly gather bot that works but isn't perfect.
You'll need auto hot key AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText more specifically the Autoscript recorder. Make sure you can record mouse movement. Aion removed game guard so this is way easier. Okay put the gather skill on your hot bar now press enter to make sure you can't move. Now hit record click the the gather point then the hot bar. Don't type it or it will be on the chat. Stop the recorder and remove the useless info up to winwait Aion and the exiting AION command. Then loop the commands after it.. what should happen is a buggy but mostly effective auto gathering action.
Enjoy..
Okay found out how to make an ugly gather bot that works but isn't perfect.
You'll need auto hot key AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText more specifically the Autoscript recorder. Make sure you can record mouse movement. Aion removed game guard so this is way easier. Okay put the gather skill on your hot bar now press enter to make sure you can't move. Now hit record click the the gather point then the hot bar. Don't type it or it will be on the chat. Stop the recorder and remove the useless info up to winwait Aion and the exiting AION command. Then loop the commands after it.. what should happen is a buggy but mostly effective auto gathering action.
Enjoy..
Code: Select all
Example Script [You clicks will be different]
WinWait, AION Client,
IfWinNotActive, AION Client, , WinActivate, AION Client,
WinWaitActive, AION Client,
loop, 80000 {
MouseClick, left, 459, 474
Sleep, 300
MouseClick, left, 524, 732
Sleep, 300
MouseClick, left, 408, 530
Sleep, 300
MouseClick, left, 524, 733
Sleep, 300
}