BOD Sorting

Buying, selling, searching for, looking for help with...
Post Reply
Zalia
Legendary Scribe
Posts: 236
Joined: Sat Jul 03, 2010 1:47 am

BOD Sorting

Post by Zalia »

Do you have too many BODs and no motivation to sort them? Drop me a PM in game and I'll get them organised.
sarmatian
Grandmaster Scribe
Posts: 99
Joined: Fri May 29, 2020 10:55 am

Re: BOD Sorting

Post by sarmatian »

:-)
just finished sorting my BOD , Taming and other ...
3 books of Taming BOD ...
do you have some hint how to handle taming those creatures which must be subjugated first?
they are so fragile ...
Zalia
Legendary Scribe
Posts: 236
Joined: Sat Jul 03, 2010 1:47 am

Re: BOD Sorting

Post by Zalia »

Drop your weapon when it gets low and try punching the beetle. A crappy weapon might help
Zalia
Legendary Scribe
Posts: 236
Joined: Sat Jul 03, 2010 1:47 am

Re: BOD Sorting

Post by Zalia »

Still offering a BOD sorting service. :)
User avatar
Eremite
Elder Scribe
Posts: 130
Joined: Sat Jan 28, 2023 7:20 pm

Re: BOD Sorting

Post by Eremite »

For UOSteam users, this is how I sort mine. Could probably expand on it to sort large/small separately based on the item name, but I didn't want to have to double the number of books I carry around. :P

Code: Select all

// Set these to the ID of a unique BOD book.
@setalias 'fletchingBODs' 0x416e4dc9
@setalias 'tamingBODs' 0x45292696
@setalias 'carpentryBODs' 0x416e4974
@setalias 'tailorBODs' 0x416e439b
@setalias 'smithyBODs' 0x452923a4
// Move BOD items into the appropriate book based on color.
while @findtype 0x2258 88 'backpack' 'any' 0
  @moveitem 'found' 'fletchingBODs'
  pause 600
endwhile
while @findtype 0x2258 458 'backpack' 'any' 0
  @moveitem 'found' 'tamingBODs'
  pause 600
endwhile
while @findtype 0x2258 1102 'backpack' 'any' 0
  @moveitem 'found' 'smithyBODs'
  pause 600
endwhile
while @findtype 0x2258 1155 'backpack' 'any' 0
  @moveitem 'found' 'tailorBODs'
  pause 600
endwhile
while @findtype 0x2258 48 'backpack' 'any' 0
  @moveitem 'found' 'carpentryBODs'
  pause 600
endwhile
culichi
Legendary Scribe
Posts: 646
Joined: Fri Aug 22, 2014 9:04 pm

Re: BOD Sorting

Post by culichi »

thank you! eremite this is ideal for alts collecting bods and pretty easy to set up with a quick cut & paste of books id.
sarmatian
Grandmaster Scribe
Posts: 99
Joined: Fri May 29, 2020 10:55 am

Re: BOD Sorting

Post by sarmatian »

Eremite wrote:
Sun Jan 05, 2025 10:50 am
For UOSteam users, this is how I sort mine. Could probably expand on it to sort large/small separately based on the item name, but I didn't want to have to double the number of books I carry around. :P
I carry only one book for each type. I sort @home when they are full.

And here is my UOSteam question:
Is it possible to sort by material, number of items or type of product? yes, For Iron I have so many books, for non-iron only by exceptional and number of items.

I have seen in the internet a script sorting by properties, but cannot find it.
Zalia
Legendary Scribe
Posts: 236
Joined: Sat Jul 03, 2010 1:47 am

Re: BOD Sorting

Post by Zalia »

Being a bit of a Luddite, sorting manually works for me. I separate by type, 10/15/20 and have books where I store BODs to give away.

The pic attached is just the Taming section I know I will never get around to filling. I've narrowed what I bother with across most types.

I sorted 10k taming BODs for Junobo - that was quite zen.

:)
Attachments
BODs.PNG
BODs.PNG (151.82 KiB) Viewed 8665 times
User avatar
Eremite
Elder Scribe
Posts: 130
Joined: Sat Jan 28, 2023 7:20 pm

Re: BOD Sorting

Post by Eremite »

sarmatian wrote:
Sun Jan 05, 2025 5:56 pm
And here is my UOSteam question:
Is it possible to sort by material, number of items or type of product? yes, For Iron I have so many books, for non-iron only by exceptional and number of items.
Yeah, you wanna use the @property command to check for the existence of a property on the item:

Code: Select all

// property ('name') (serial) [operator] [value]
@setalias bodtest '0x9999999`  // For testing 
if @property 'Small Bulk Order' bodtest
  headmsg "This BOD is small."
endif
if @property 'Yumi' bodtest
  headmsg "Yumi BOD"
endif
if @property 'Must Be Crafted With Ebony Wood' bodtest
  headmsg "Ebony Materials."
endif
Etc, etc. You can go wild with this, but I've never had enough BODs to worry about it, lol.
sarmatian
Grandmaster Scribe
Posts: 99
Joined: Fri May 29, 2020 10:55 am

Re: BOD Sorting

Post by sarmatian »

Thank you very much!
one example is worth more than whole UOSteam pdf manual.
Eremite wrote:
Mon Jan 06, 2025 3:09 pm
Yeah, you wanna use the @property command to check for the existence of a property on the item:

Code: Select all

// property ('name') (serial) [operator] [value]
@setalias bodtest '0x9999999`  // For testing 
if @property 'Small Bulk Order' bodtest
Etc, etc.  You can go wild with this, but I've never had enough BODs to worry about it, lol.
[/quote]
Zalia
Legendary Scribe
Posts: 236
Joined: Sat Jul 03, 2010 1:47 am

Re: BOD Sorting

Post by Zalia »

Just the Taming BODs
Attachments
BODs.PNG
BODs.PNG (190.27 KiB) Viewed 8200 times
Post Reply