
Skript:
Code: Select all
sub main()
uo.deletejournal()
var mx, my, mz, i, j
mx = UO.GetX("self")
my = UO.GetY("self")
mz = UO.GetZ("self")
for i = mx-6 to mx+6
for j = my-6 to my+6
UO.Print("Now Fishing In: "+str(mx-i)+" "+str(my-j))
UO.Waittargettile("1341", str(i), str(j), str(mz))
UO.Usetype("0x0DBF")
uo.deletejournal()
while not UO.InJournal("You pull") and not UO.InJournal("location") and not UO.InJournal("no fish") and not UO.InJournal("fail") and not UO.InJournal("far away") and not UO.InJournal("in water") and not UO.InJournal("your pack")and not UO.InJournal("cannot")and not UO.InJournal("elsewhere")
wait(500)
wend
next
next
end sub