#Using stages to unlock recipes with progression

1 messages · Page 1 of 1 (latest)

opaque compass
#

I'm trying to lock recipes behind stages that I plan to grant with ftb quest, I've had no problems giving the stages so far, I can see and understand how to give players stages, but I can't find anything human generated to help lock the recipes behind them.

This is the code I'm using to try to figure this out.

    event.shapeless(
        Item.of('minecraft:diamond', 1),
        [
            'minecraft:rotten_flesh'
        ]
    ).stage('locked_age')

})```

Unfortunately it's giving me access to the recipe regardless of if I have the stage 'locked_age' or not.
static irisBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

opaque compass
opaque compass
#

or maybe an alternative way to lock a recipes behind progression. I'm not wanting add arbitrary items or just unlocking a large supply after the event that would unlock it. The vanilla system works to an extent for me, but I am looking to lock create's brass recipe which can't be locked that way. . .

quiet knoll
#

I think you're looking for AStages. (wiki)
There is an addon mod called Machine Stages that allows you to restrict autocrafting from a few mods too. (the blocks remember who placed them down and can only craft if that player has the right stage)

#

Sadly seems like Recipe Machine Stages isn't available for 1.21 yet though

opaque compass
#

The mod itself has been updated and works to lock recipes using vanilla methods. It's has an external addon that allows locking modded recipe methods which is not updated. . . So I can now lock 2/3 recipes I've been looking to lock.

opaque compass