Back to "storage" tags

Magic Mushroom Maker w/Storage Shelf by Burger Beagle

Description: You will need your grimoire create food points so you can make magic mushrooms, and a storage shelf that has a lot of mandrake root. This script will keep your mandrake root topped off and will constantly fill up your shelf with magic mushrooms.

Also recommended is a quality wizard's satchel to save on regs. The script also requires you to have at least 90 int.

1if mana < 15
2    while mana < 90
3        if not findbuff "actively meditating" 
4            useskill 'meditation'
5        endif
6        wait 1000
7    endwhile
8elseif count 'Mandrake Root' > 10
9    cast 'create food'
10    wait 100
11elseif findtype "storage shelf" ground -1 -1 2 as shelf
12    menu shelf 0
13    wft 500
14    target self
15    wait 200
16    menu shelf 1
17    wait 200
18endif
19loop