Dropping ore
Posted: 2004-07-30 07:48:12
I made a simple script to drop all ore from my pack except for blackrock.
All I want to know is how to move the ore to the ground, or use ,drop to drop it.. :/
P.S.: It is now all fixed and works perfectly.
Code: Select all
sub Findore()
VAR Ores = '0x19B9'
uo.findtype(Ores,-1,-1)
uo.click("finditem")
Wait(500)
If UO.InJournal("Blackrock")==0 Then
UO.Moveitem('finditem',-1,'ground')
endif
endsub
All I want to know is how to move the ore to the ground, or use ,drop to drop it.. :/
P.S.: It is now all fixed and works perfectly.