Скрипт берет реагенты с земли и крафтит.
Code: Select all
sub Inscription()
var tmp=true,r1=0x0F8D,r2=0x0F8C,r3=0x0E34#реги и r3 - бланки
repeat
uo.deletejournal()
if tmp==true then
uo.findtype(r1,-1,'ground')
uo.grab(1,'finditem')
uo.findtype(r2,-1,'ground')
uo.grab(1,'finditem')
endif
uo.findtype(r3,-1,'ground')
uo.grab(1,'finditem')
repeat
tmp=true
wait(300)
until uo.count(r1)>0 && uo.count(r2)>0 && uo.count(r3)>0
uo.waitmenu('Spell Circles','First Circle','Spell Circle 1','Night Sight')
uo.useskill('Inscription')
repeat
wait(300)
until uo.injournal('Scroll in your pack') || uo.injournal('but fail to finish') || uo.injournal('You fail to inscribe the scroll')
if uo.injournal('Scroll in your pack')==false then
tmp=false
endif
until uo.dead()
endsub