Posted: 2007-02-13 20:18:38
SetScript at 23
Line 23: Variable undefined - ISMINING
Line 23: Variable undefined - ISMINING
Code: Select all
sub main()
var mx, my, mz, i, j
mx = UO.GetX("self")
my = UO.GetY("self")
mz = UO.GetZ("self")
While 1
for i = mx-4 to mx+4
for j = my-4 to my+4
UO.Waittargettile("1341", str(i), str(j), str(mz))
UO.Usetype('0x0F39') ; кирка
wait(4000)
next
next
wend
end sub