04-11-2012, 01:48 PM
I got you covered bud.
,addobject box (target your lockbox)
,addobject key (target the key inside the lockbox)
I wrote this at work, so I don't have the lockpick object type off hand. You'll have to ,info it and enter it yourself. I wrote this up tonight for myself before leaving for work.
Code:
sub Lockpicking()
While UO.SkillVal("Lockpicking") < 1000
uo.exec("usetype LOCKPICKTYPEHERE")
uo.waittargetobject("box")
wait(4500)
uo.exec("useobject 'key'")
wait(500)
uo.waittargetobject("box")
wend
end sub
,addobject box (target your lockbox)
,addobject key (target the key inside the lockbox)
I wrote this at work, so I don't have the lockpick object type off hand. You'll have to ,info it and enter it yourself. I wrote this up tonight for myself before leaving for work.