1. У  тебя чар будет искать логи везде, в том числе и на земле, а это не нужно, значит добавляем в findtype - 'my'.
2. drop производится без проверки нашел ли findtype что-то или нет, а если логов такого типа в паке нет, то что он выбрасывать будет?
3. Какой-то "левый" end if в середине... он к чему?
Попробуй так:
Code:
if uo.weight > 260 then 
  uo.print('Бросаем это дело!') 
  uo.findtype('0x1BDD', '0x0000', 'my') 
  if uo.findcount() then
    uo.drophere('finditem') 
    wait(2000)
  endif
  uo.findtype('0x1BDD', '0x0362', 'my')
  if uo.findcount() then
    uo.drophere('finditem') 
    wait(2000)
  endif
  uo.findtype('0x1BDD', '0x010D', 'my')
  if uo.findcount() then
    uo.drophere('finditem') 
    wait(2000)
  endif
  uo.findtype('0x1BDD', '0x0094', 'my')
  if uo.findcount() then
    uo.drophere('finditem') 
    wait(2000) 
  endif
  uo.findtype('0x1BDD', '0x01A2', 'my')
  if uo.findcount() then
    uo.drophere('finditem') 
    wait(2000) 
  endif
  uo.findtype('0x1BDD', '0x01B0', 'my') 
  if uo.findcount() then
    uo.drophere('finditem') 
    wait(2000) 
  endif
endif