Item Id?
Posted: 2010-04-29 22:56:25
I need an Item Identification script that itemid a rune place in runebook then again out from runebook and repeat.
I have already a script but it fails when i get messagne "Im not sure" then the runebooks opens up without the rune and the script cannot continue to work.
Please help!!
I have already a script but it fails when i get messagne "Im not sure" then the runebooks opens up without the rune and the script cannot continue to work.
Please help!!
sub main()
while UO.life > 0
Var rune='0x1F14'
VAR runebook ='0x41efe022'
start:
UO.Useskill('Item Identification')
UO.waittargettype(rune)
wait(500)
If UO.InJournal("Im not sure") then #this doenst works as I like it, script fails!!!
wait(8100)
goto start
Endif
goto start1
start1:
IF uo.lastmessage()=="This is a normal item." then
UO.DeleteJournal()
UO.FindType(rune)
UO.MoveItem('finditem',0,runebook)
wait(500)
End if
goto start2
start2:
UO.LClick(143,499)
wait(1000)
UO.LClick(350,16)
wait(1000)
UO.LClick(69,119)
wait(1000)
goto start
wend
end sub