Page 1 of 1

BOD Sorting

Posted: Thu Mar 10, 2022 10:27 pm
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.

Re: BOD Sorting

Posted: Fri Mar 11, 2022 6:29 am
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 ...

Re: BOD Sorting

Posted: Fri Mar 11, 2022 7:21 am
by Zalia
Drop your weapon when it gets low and try punching the beetle. A crappy weapon might help

Re: BOD Sorting

Posted: Fri Jan 03, 2025 7:54 pm
by Zalia
Still offering a BOD sorting service. :)

Re: BOD Sorting

Posted: Sun Jan 05, 2025 10:50 am
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

Re: BOD Sorting

Posted: Sun Jan 05, 2025 2:25 pm
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.

Re: BOD Sorting

Posted: Sun Jan 05, 2025 5:56 pm
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.

Re: BOD Sorting

Posted: Sun Jan 05, 2025 7:59 pm
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.

:)

Re: BOD Sorting

Posted: Mon Jan 06, 2025 3:09 pm
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.

Re: BOD Sorting

Posted: Mon Jan 06, 2025 6:28 pm
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]

Re: BOD Sorting

Posted: Wed Jan 15, 2025 12:51 am
by Zalia
Just the Taming BODs