Posted: 2005-05-18 05:16:21
Ваще грязные бинты мыть должен нормальный скрипт.
sub AlchemyPoison()
var Exit=0, LastTimer, TryToPoison
while Exit<>1
uo.DeleteJournal()
uo.FindType('0x0F0E',-1,'backpack') ; Бутылки
if uo.GetQuantity('finditem')<10 then
uo.FindType('0x0F0E','0x0000','0x400DBFDA') ; Контейнер с бутылками (bottle, container)
wait(1000)
uo.Grab('500','finditem')
wait(100)
end if
uo.FindType('0x0F88','0x0000','backpack') ; Найт шейд
if uo.GetQuantity('finditem')<20 then
uo.FindType('0x0F88','0x0000','0x400DBFDA') ; Найт шейд , Контейнер
wait(1000)
uo.Grab('1000','finditem')
wait(500)
end if
LastTimer=uo.Timer()
uo.WaitMenu('What','(last)') ; Меню
uo.UseType(0x0F88) ; Найт Шейд
while not uo.InJournal("You put") and not uo.InJournal("You toss the failed")
wait(500)
wend
if uo.InJournal("You toss the failed") then
repeat
wait(100)
until uo.Timer()>=LastTimer+100 ; Время создания даггера
else
TryToPoison=1
repeat
uo.FindType('0x0F0E','0x0998','my')
if uo.GetQuantity('finditem')>0 then
uo.UseSkill('Poisoning')
uo.WaitTargetObject('0x40082E05','finditem') ; Даггер
wait(4000)
else
TryToPoison=0
end if
end if
uo.UseSkill('Spirit Speak')
wait(3000)
wend
end sub