Page 1 of 1

[UOSteam] Basic BOD Sorter

Posted: Sun Apr 05, 2020 9:46 am
by Sindall
I've been working on trying to get some scripts up and running to make the gathering and sorting of Bulk Order Deeds easier. Still having some challenges with getting the BODS, but I have a working script to sort BODs of all the different types into different books.

I found it useful to have for my alt accounts that pretty much just do BOD running right now, and if you're looking to make some quick money, people definitely buy "junk" BODs at 300-1000 gold a piece.

Code: Select all

//You will need to have 5 BOD books named BS, Carp, Bow, Tame, and Tailor
//They can be in your main pack, or even in a pack inside that but the bag should be open
//Now go get some BODS!
while @findtype 0x2259 'any' 'backpack'
  waitforproperties 'found' 2000
  if @property 'BS' 'found'
    //msg a
    setalias 'BS' 'found'
    ignoreobject 'found'
  elseif @property 'Carp' 'found'
    //msg a
    setalias 'Carp' 'found'
    ignoreobject 'found'
  elseif @property 'Bow' 'found'
    //msg a
    setalias 'Bow' 'found'
    ignoreobject 'found'
  elseif @property 'Tame' 'found'
    //msg a
    setalias 'Tame' 'found'
    ignoreobject 'found'
  else
    setalias 'Tailor' 'found'
    ignoreobject 'found'
  endif
endwhile
while @findtype 0x2258 1102 'backpack'
  @moveitem 'found' 'BS'
endwhile
while @findtype 0x2258 1155 'backpack'
  @moveitem 'found' 'Tailor'
endwhile
while @findtype 0x2258 458 'backpack'
  @moveitem 'found' 'Tame'
endwhile
while @findtype 0x2258 48 'backpack'
  @moveitem 'found' 'Carp'
endwhile
while @findtype 0x2258 88 'backpack'
  @moveitem 'found' 'Bow'
endwhile
pause 1500
clearignorelist

Re: [UOSteam] Basic BOD Sorter

Posted: Sun Apr 05, 2020 5:15 pm
by Snydly
As an Avid Bod Gatherer, I give this UOSteam Script an A+ rating. You saved my arm a lot of pain today and into the future. :woot:

Re: [UOSteam] Basic BOD Sorter

Posted: Sun Jun 21, 2020 1:27 pm
by Pete10
Thanks for the macro !
I look for such a helpfull macro too but for me it would be enough if the BODs land in the main backpack, ill sort them in later. So how would the macro look, if it only shall get the BODs from the NPC into the main backpack ?