()
| 45 | } |
| 46 | |
| 47 | async function write () { |
| 48 | const [book] = bot.inventory.items().filter(({ name }) => name === 'writable_book') |
| 49 | if (!book) { |
| 50 | bot.chat("I don't have a book.") |
| 51 | return |
| 52 | } |
| 53 | await bot.writeBook(book.slot, pages) |
| 54 | print() |
| 55 | } |
| 56 | |
| 57 | function print () { |
| 58 | const [book] = bot.inventory.items().filter(({ name }) => name === 'writable_book') |