NMY wrote:
Code:
UO.waitmenu
UO.usetype(0x1034,0)
СПС за подсказку ... нашёл ещё решение в automenu
Code:
sub Carpentry();
UO.automenu('Carpentry','Weapons')
UO.automenu('Weapons','fishing pole')
repeat
UO.usetype(0x1034,0)
while not UO.InJournal("You put the fishing") and not UO.InJournal("You fail to create the")
Wait(100)
wend
UO.DeleteJournal()
if (UO.Count('0x1BDD',0) < 50) then
uo.findtype("0x1BDD","0","ground")
if uo.FindCount() then
UO.grab("500","finditem")
endif
Wait(1000)
endif
if (UO.Count('0x0EED',0) > 0) then
uo.findtype("0x0EED","0","my")
UO.drop("-1","0","0","0","finditem")
Wait(100)
endif
until (UO.Count('0x1BDD',0) < 50)
UO.cancelmenu()
end sub