BOD Sorting
BOD Sorting
Do you have too many BODs and no motivation to sort them? Drop me a PM in game and I'll get them organised.
Re: BOD Sorting

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 ...
Re: BOD Sorting
Drop your weapon when it gets low and try punching the beetle. A crappy weapon might help
Re: BOD Sorting
Still offering a BOD sorting service. 

Re: BOD Sorting
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.

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
Re: BOD Sorting
thank you! eremite this is ideal for alts collecting bods and pretty easy to set up with a quick cut & paste of books id.
Re: BOD Sorting
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.
Re: BOD Sorting
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.

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 (151.82 KiB) Viewed 8669 times
Re: BOD Sorting
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
Re: BOD Sorting
Thank you very much!
one example is worth more than whole UOSteam pdf manual.
one example is worth more than whole UOSteam pdf manual.
Eremite wrote: ↑Mon Jan 06, 2025 3:09 pmYeah, 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]