Originally Posted by evanxxxm
Archer leveler for scatter
Auto controlclick to the direction of the mobs
No need to right click anymore, all u need to do is jump around
Even your mouse is on the right side, jumping right side, the controlclick will still help u to scatter left side (assuming the mobs are only appear on left side)
Examples of usage:
Leave it afk in a spawn (bask, labs if u can, etc..)
Normal hunting
Scattering right side, but normal attacking a mob/player on left side
Instructions:
1. F1-Arrows, F2-Pots and turn on the Show Name
2. Set up timer and Auto Pot+DC
ScreenShots:
[Only registered and activated users can see links. Click Here To Register...]
Video Samples
pay attention to my mouse positions, i never press a right click also
[Only registered and activated users can see links. Click Here To Register...]
And this is an example of backshooting
[Only registered and activated users can see links. Click Here To Register...]
Codes-ahk
Code:
#Persistent
Menu, Tray, Icon, Shell32.dll, 44
Gui, +toolwindow
Gui, Add, Text,x10 y12 w80 h20, Log off after:
Gui, Add, Edit, x80 y10 w28 h20 vTime,60
Gui, Add, Text,x110 y12 w80 h20, mins
Gui, Add, Radio, x10 vmode, Auto Pot + DC
Gui, Add, Button, x10 y72 w80 h20 vButton gStart, >Ok<
Gui, Show, x1 y1 h100 w150, CO Archer
return
GuiClose:
ExitApp
Gui, Show
return
Start:
Gui, Submit, Hide
WinGet,id, ID,[Conquer2.0]
EnvMult, Time, 60
xx=0
if mode=1
{
note=ON
msgbox, Auto Pot+DC: ON`nLog off after %Time% seconds.`n`nCtrl+P:Pause, Ctrl+R:Reload`nCtrl+M:AutoPotDC ON/OFF
}
else
{
note=OFF
msgbox, Auto Pot+DC: OFF`nLog off after %Time% seconds.`n`nCtrl+P:Pause, Ctrl+R:Reload`nCtrl+M:AutoPotDC ON/OFF
}
loop
{
xx++
xy=%xx%
EnvMult, xy, 10
Menu, Tray, Tip,Auto Pot+DC: %note%`n%xy%/%Time%
if xy>=%Time%
{
winkill, ahk_id %id%
msgbox, Times up, Done!
reload
}
If mode=1
{
note=ON
PixelSearch, outx, outy, 10, 720, 65, 720,0x8088C,10,Fast
if ErrorLevel
{
ControlClick, x160 y740,ahk_id %id%,,RIGHT
sleep 1000
PixelSearch, outx, outy, 10, 720, 65, 720,0x8088C,10,Fast
if ErrorLevel
{
ControlClick, x160 y740,ahk_id %id%,,RIGHT
winkill, ahk_id %id%
reload
}
else
{
sleep 10
}
}
else
{
sleep 10
}
}
else
{
note=OFF
}
loop 10
{
PixelSearch, outx, outy, 100, 100, 900, 600,0x0303B8,,Fast
if ErrorLevel
{
sleep 1000
}
else
{
EnvAdd, outy, 30
ControlClick, x%outx% y%outy%,ahk_id %id%,,RIGHT
sleep 500
ControlClick, x%outx% y%outy%,ahk_id %id%,,RIGHT
sleep 500
}
}
ControlClick, x110 y740,ahk_id %id%,,RIGHT
}
^r::reload
^q::pause
^m::
{
if mode=1
{
mode=0
note=OFF
}
else
{
mode=1
note=ON
}
return
}
Notes
ControlClick does not work with vista
Ctrl+P: Pause, Ctrl+R: Reload, Ctrl+M: AutoPot/DC ON/OFF
move mouse to the trayicon to check mode and time left
Download Link:
[Only registered and activated users can see links. Click Here To Register...]
|