Запускаем и выбираем труп который хотим обчистить.
Отпишитесь каких вещей еще не хватает для лута - добавлю...
#############################################################
### by Xeon ####################################################
#############################################################
sub loot_sebya()
uo.addobject('Corpse');
var numitems = 39
dim items[39];
var n; ### Golds ###
items[1]='0x0eed'; Gold Coins
### Armor ###
# Chain #
items[2]='0x13bb'; Coif
items[3]='0x13c4'; Tunic
items[4]='0x13c3'; Leggins
items[5]='0x13ef'; Sleeves
items[6]='0x13f2'; Gloves
# Plates #
items[7]='0x1412'; Helm
items[8]='0x1413'; Gorget
items[9]='0x1416'; Breastplate
items[10]='0x141a'; Legs
items[11]='0x1410'; Sleeves
items[12]='0x1414'; Gloves
items[13]='0x1b76'; Heater Shield
### Weapons ###
items[14]='0x13ff'; Katana
items[15]='0x1400'; Kryss
items[16]='0x1400'; Crossbow
items[17]='0x1400'; Heavy Crossbow
items[18]='0x1400'; Bow
### Regs ###
items[19]='0x0F7A'; Black Pearls
items[20]='0x0F85'; Ginsengs
items[21]='0x0F8D'; Spider's Silks
items[22]='0x0F84'; Garlics
items[23]='0x0F88'; Nightshades
items[24]='0x0F7B'; Blood Mosss
items[25]='0x0F8C'; Sulfurous Ashs
items[26]='0x0F86'; Mandrake Roots
### Bolts&Arrows$other ###
items[27]='0x1BFB'; Bolts
items[28]='0x0F3F'; Arrows
items[29]='0x108A'; Ring
items[30]='0x1086'; Bracelet
items[31]='0x0e21'; Bandages
items[32]='0x0f0b'; a Stam Potions
items[33]='0x0f0b'; a Heal Potions
items[34]='0x0F7D'; Vials of Blood
items[35]='0x0F8F'; Volcanic Ashs
items[36]='0x0F80'; Daemon Bones
items[37]='0x0F91'; Wyrm's Hearts
items[38]='0x0f21'; Star sapphires
items[39]='0x1bd1'; Feathers
###########################################
while uo.targeting()
wait(500)
wend
uo.useobject('Corpse');
wait(500)
for n=1 to numitems
uo.findtype(items[n], -1, 'Corpse');
while uo.findcount()
uo.findtype(items[n], -1, 'Corpse');
uo.moveitem('finditem', 0);
wait(250)
wend
next
uo.findtype('0x0E76', '0x0482');
if uo.findcount() then
uo.unsetcatchbag();
endif
end sub