Code: Select all
sub main()
#korabl
#NewFishing(353,179,6,2)
#Fenix House
NewFishing(290,160,5,3)
end sub
sub do_one_loop(x,y)
UO.Exec("usetype 0xDBF")
Wait(300)
UO.LClick(x,y)
Wait(3000)
end sub
sub NewFishing(startx, starty, dx, dy)
var i, j, x, y
while true
for j=0 to dx
x = startx - 24*j
y = starty + 22*j
for i=0 to dy
do_one_loop(x + 24*i ,y + 22*i)
next
next
wend
end sub