

кароче, есть скрипт на мининг с тотемом. крафт облетает по рб шахтыи сносит все в кастл. пишет под крышей дроп, тотем скидывает все на пол и улетает себе дальше копать. но итемов то которые он скидывает ( руда ) очень много. за ночь ОЧЕЕНЬ даже много


Code: Select all
sub Stack()
var GroundItem, PackItem, i, ruda
PackItem = ''
GroundItem = ''
ruda = '0x19B9'
Dim Ore[3]
Ore[1]= 0x0042 ; #цвет руды#
Ore[2]= 0x0602 ;
Ore[3]= 0x0000 ;
UO.exec('set distance 2')
UO.exec('set finddistance 2')
while uo.weight < 3000
UO.FindType(ruda,'-1','ground')
while UO.FindCount() > 5
for i=1 to 4
uo.FindType(ruda,Ore[i],'ground')
if UO.CountGround(ruda) then
PackItem = '^'+ruda
Uo.ignore('finditem')
uo.FindType(ruda,Ore[i],'ground')
if UO.CountGround(ruda) then
GroundItem = '~'+ruda
wait(500)
if ((PackItem <> '') and (GroundItem <> '')) then
UO.MoveItem(PackItem,STR(UO.GetQuantity(PackItem)),GroundItem,'0','0','0')
i = i + 1
wend
end if
end sub