[UOSteam] Basic BOD Sorter
Posted: Sun Apr 05, 2020 9:46 am
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.
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