Help is there a script for auto looting MULTI corpse?
Posted: 2008-07-26 04:55:08
I'm looking if theres a script or command to auto loot multiple corpses?
maybe something like this
sub All corpse opened()
UO.FindType('0x0EED',"-1",'allcorpse')
If UO.FindCount() > 0 then
repeat
UO.Grab(0, "finditem")
UO.FindType('0x0EED',"-1",'allcorpse')
until UO.FindCount() == 0
wait(500)
UO.Print(' You have ' + Str( UO.Count('0x0EED','0x0000') ) + ' Gold' )
EndIf
end sub
maybe something like this
sub All corpse opened()
UO.FindType('0x0EED',"-1",'allcorpse')
If UO.FindCount() > 0 then
repeat
UO.Grab(0, "finditem")
UO.FindType('0x0EED',"-1",'allcorpse')
until UO.FindCount() == 0
wait(500)
UO.Print(' You have ' + Str( UO.Count('0x0EED','0x0000') ) + ' Gold' )
EndIf
end sub