0.6 in some days. It will work on WoM first, and then i will add new servers. First i need to rewrite the bot. Only one thing is missing.
Works fine in my theory :rolleyes:Quote:
0.6 in some days. It will work on WoM first, and then i will add new servers. First i need to rewrite the bot. Only one thing is missing.
$Range = 200
$BaseX = 50
$BaseY = 50
If $CurrentX > $BaseX +$Range Or $CurrentX < $BaseX -$Range Then
ElseIf $CurrentY > $BaseY +$Range Or $CurrentY < $BaseY -$Range Then
EndIf
$Range = 200
$Base = MouseGetPos()
While 1
$Current = MouseGetPos()
If $Current[0] > $Base[0] +200 Or $Current[0] < $Base[0] -200 Then
Beep(1000, 250)
ElseIf $Current[1] > $Base[1] +200 Or $Current[1] < $Base[1] -200 Then
Beep(1000, 250)
EndIf
WEnd