[UOSteam] Basic BOD Sorter

If you make a Client-side script you can publish it here for other players to use
Post Reply
Sindall
Journeyman Scribe
Posts: 29
Joined: Sat Apr 21, 2018 9:39 am

[UOSteam] Basic BOD Sorter

Post 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
Snydly
Expert Scribe
Posts: 34
Joined: Wed Jul 27, 2011 2:27 am

Re: [UOSteam] Basic BOD Sorter

Post 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:
Pete10
Journeyman Scribe
Posts: 24
Joined: Thu Oct 04, 2018 12:02 am

Re: [UOSteam] Basic BOD Sorter

Post 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 ?
Post Reply