BOD book combine

Share your guides, how-tos, FAQs, and so forth. This is not for support -- post questions in General Discussion.
Post Reply
fluffhead321
Posts: 762

BOD book combine

Post by fluffhead321 »

Hey, I've got about 40 books of 250 (so me a few more, some a few less) BOD reset. Anyone have a script (Steam or EUO) to combine the books to make them 500 each? I could also use a Tailor and Smith script to fill the resets. Thanks!!
User avatar
Bama
Bug Hunter
Posts: 4617

Re: BOD book combine

Post by Bama »

fluffhead321 wrote:Hey, I've got about 40 books of 250 (so me a few more, some a few less) BOD reset. Anyone have a script (Steam or EUO) to combine the books to make them 500 each? I could also use a Tailor and Smith script to fill the resets. Thanks!!

http://www.uogdemise.com/community/view ... =10&t=8743
Gabba Gabba Hey!!!

哈哈哈
fluffhead321 likes this.
Top
User avatar
Bama
Bug Hunter
Posts: 4617

Re: BOD book combine

Post by Bama »

fluffhead321 wrote:Hey, I've got about 40 books of 250 (so me a few more, some a few less) BOD reset. Anyone have a script (Steam or EUO) to combine the books to make them 500 each? I could also use a Tailor and Smith script to fill the resets. Thanks!!

http://www.uogdemise.com/community/view ... f=2&t=6292
Gabba Gabba Hey!!!

哈哈哈
fluffhead321 likes this.
Top
User avatar
Bama
Bug Hunter
Posts: 4617

Re: BOD book combine

Post by Bama »

fluffhead321 wrote:Hey, I've got about 40 books of 250 (so me a few more, some a few less) BOD reset. Anyone have a script (Steam or EUO) to combine the books to make them 500 each? I could also use a Tailor and Smith script to fill the resets. Thanks!!

http://www.uogdemise.com/community/view ... =10&t=9345
Gabba Gabba Hey!!!

哈哈哈
fluffhead321 likes this.
Top
User avatar
Tanya
Posts: 1796

Re: BOD book combine

Post by Tanya »

http://www.uogdemise.com/community/view ... =10&t=8461
(2 macros for combining any number of books (same type BODs) into one book, thanks MB for sharing this macro!)
Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
User avatar
Tanya
Posts: 1796

Re: BOD book combine

Post by Tanya »

Code: Select all

//COMBINE ALL SMITH BOOKS IN PACK
clearignorelist
promptalias 'book1'
ignoreobject 'book1'
while @findtype '0x2259' 'any' 'backpack'
  @setalias 'booktoempty' 'found'
  if @property 'Deeds in Book' 'booktoempty' > 0
    while @property 'Deeds in Book' 'booktoempty' > 0
      useobject 'booktoempty'
      waitforgump 0x54f555df 1500
      while @property 'Deeds in Book' 'booktoempty' > 0 and @property 'Contents' 'backpack' < 123
        if counttype 0x2258 1155 'backpack' > 0
          sysmsg 'Tailor Bods! Stopping!' 34
          stop
        endif
        replygump 0x54f555df 5
        waitforgump 0x54f555df 1500
      endwhile
      while counttype 0x2258 '1102' 'backpack' > 0
        movetype 0x2258 'backpack' 'book1' [(0 0 0)] 1102
        pause 100
      endwhile
      pause 550
    endwhile
  endif
  ignoreobject 'booktoempty'
endwhile

//COMBINE ALL TAILOR BOOKS IN PACK
clearignorelist
promptalias 'book1'
ignoreobject 'book1'
while @findtype '0x2259' 'any' 'backpack'
  @setalias 'booktoempty' 'found'
  if @property 'Deeds in Book' 'booktoempty' > 0
    while @property 'Deeds in Book' 'booktoempty' > 0
      useobject 'booktoempty'
      waitforgump 0x54f555df 1500
      while @property 'Deeds in Book' 'booktoempty' > 0 and @property 'Contents' 'backpack' < 123
        if counttype 0x2258 1102 'backpack' > 0
          sysmsg 'Blacksmith Bods! Stopping!' 34
          stop
        endif
        replygump 0x54f555df 5
        waitforgump 0x54f555df 1500
      endwhile
      while counttype 0x2258 '1155' 'backpack' > 0
        movetype 0x2258 'backpack' 'book1' [(0 0 0)] 1155
        pause 100
      endwhile
      pause 550
    endwhile
  endif
  ignoreobject 'booktoempty'
endwhile
Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
Post Reply