Я ни очими разбираюси в скриптах, но из скрипта тинкера зделал скрипт на химию, тока вот низнаю как паставити в скрипт штоб после чиво зделал бутылко он ио выпил , вот тип [uo.usetype("0x0F0E 0x0004"); butilka] , ишио ести такая праблема, он после некатороие время астанавливаитса, скрипт та работаит в заклатках тока бутылки ни делаит. Памагите если вам ни трудна
Code:
sub test()
if UO.InJournal("World save has been initiated.") then
UO.DeleteJournal()
UO.Click('self')
repeat
wait(500)
until UO.InJournal("Sqiman: Sqiman") #
end if
end sub
sub Alchemy()
VAR Exit=0, LastTimer
while Exit<>1
test()
UO.DeleteJournal()
LastTimer=UO.Timer()
UO.WaitMenu('Select the potion to create','agility potion')
wait(100)
UO.UseType(0x0F7B)
test()
while NOT UO.InJournal("You put") AND NOT UO.InJournal("You toss the failed mixture from the mortar")
wait(500)
wend
If UO.InJournal("You toss the failed mixture from the mortar") then
repeat
wait(100)
until UO.Timer()>=LastTimer+150
EndIf
wend
end sub