Back to "research materials" tags

Decode Research Materials into Tome by zerotokraken

Description: Just a quick script to decode bulk RMs into Lore Book in inventory. Adjust gump response if different skill is used.

1if findtype 'book' as lorebook backpack
2    while findtype 'research materials' as RM
3        dclick RM
4        wait 100
5        gumpresponse 2
6        while findtype 'parchment' as page
7            wait 650
8            lift page
9            wait 650
10            drop lorebook
11        endwhile
12    endwhile
13endif