Code: Select all
sub main()
While UO.Count('bag')<300000
UO.Exec("waitmenu 'make' 'Paper items' ' make' (1)")
UO.Exec("waittargettype '0x1BDD'")
UO.Exec("usetype '0x1EBC'")
Wait(4000)
wend
end subModerators: Murderator+, Murderator
Code: Select all
sub main()
While UO.Count('bag')<300000
UO.Exec("waitmenu 'make' 'Paper items' ' make' (1)")
UO.Exec("waittargettype '0x1BDD'")
UO.Exec("usetype '0x1EBC'")
Wait(4000)
wend
end subCode: Select all
var itemtype = '0x0000' # прописать objtype бросаемых вещей
....
if uo.count(itemtype) > 0 then
uo.drophere('^'+itemtype)
endif
Code: Select all
var itemtype = '0x0000' # прописать objtype бросаемых вещей
....
if uo.count(itemtype) > 0 then
uo.moveitem('^'+itemtype,'-1','ground') # вместо 'ground' можно написать серийник контейнера какого-нить, например урны.
endif