i tryed the script for blacksmith posted in this section and the crafting it's very good!
but where i play i have an house with forge and some chest what i would to do is to pick up from the FIRST chest the Ingotz inside and than put the crafted item on the SECOND chest
but i cannot take the ingotz or drop the crafted items cause with the function uo.findtype i cannot find the ingotz (maybe because i dunno witch is the serial of the container or what to do for search an item inside a container....)
tnks for ur attention i post here the screen of what i would to do and the script that i am using (it's just the one on this section but for lazy ppl i will post it also

Code: Select all
sub BlacksmithyIM()
VAR Exit=0, LastTimer
while Exit<>1
UO.DeleteJournal()
LastTimer=UO.Timer()
UO.UseType(0x1BEF)
UO.WaitMenu('Blacksmithing','Armature','Armature','Corazza di piastre','Corazza di piastre','platemail gorget')
while NOT UO.InJournal("You put") AND NOT UO.InJournal("Hai Sbagliato")
wait(500)
wend
If UO.InJournal("You have failed") then
repeat
wait(100)
until UO.Timer()>=LastTimer+100
EndIf
UO.FindType('0x0F51',-1,'backpack')
wait(500)
If UO.GetQuantity('finditem') then
UO.WaitTargetObject('finditem')
UO.UseObject(0x4012B5AC)
Endif
UO.FindType('0x1BEF',-1,'backpack')
If UO.GetQuantity('finditem')<10 then
UO.FindType('0x1BEF','0x0000','0x4004CAE1')
UO.Grab('1000','finditem')
Endif
wait(1000)
wend
end sub
http://img372.imageshack.us/my.php?imag ... n01wr8.jpg