взять с скрипта саваджа учись поиском ползоваца
Code:
;----------------Recal and Mark faded rune -------------
sub mrecal(rune)
repeat
UO.DeleteJournal()
UO.WaitTargetObject(rune)
UO.Cast('Recal')
wait(4000)
until NOT UO.InJournal("spell fizzles") ; mesage of fizzle spell
markrune:
If UO.InJournal("fades completely") then ; message of faded rune
UO.DeleteJournal()
UO.WaitTargetObject(rune)
UO.Cast('Mark')
endif
wait(4000)
If UO.InJournal("spell fizzles") then ; mesage of fizzle spell
goto markrune
endif
end sub