Vampy wrote:
sub resurectionscroll()
UO.say(",waitmenu 'Select what you want' 'Inscribe'")
UO.say(",waittargettype 0x0e34")
UO.say(",waitmenu 'Select a circle to inscribe' 'Circle 8 spells' 'Select a spell to inscribe' 'Resurrection'")
uo.exec("useskill Inscription")
end sub
this kind of action you written allowed only for automenu, not waitmenu.
because you used second waitmenu after first you cancel first.
so you need to use
Code:
UO.exec("waitmenu want Inscribe circle 8 spell Resurrection")
UO.waittargettype("0x0e34")
uo.useskill("Inscription")
or
Code:
UO.exec("automenu want Inscribe")
UO.exec("automenu circle 8")
UO.exec("automenu spell Resurrection")
UO.waittargettype("0x0e34")
uo.useskill("Inscription")
keep in mind automenu is enough to use once, waitmenu need be used each time before craftgump appears