I need advice for what I should make the final quest's reward. (Create Mod)
1 member has voted
1. I'm making a mod pack for my friends and I to play on, and i have quests. The last quest in the Create Mod category is very difficult and requires 71 quests prior but I need a reward.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
BooleanProperty does work so I thought IntegerProperty works the same way. Is there something I am missing? This is how I tried using it:
public static final IntegerProperty P_COUNT = IntegerProperty.create("pCo",0,5);
public CCCBlock(Properties properties) { super(properties); this.registerDefaultState(this.defaultBlockState().setValue(P_COUNT, 0)); }
protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> pBuilder) { pBuilder.add(P_COUNT); }
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.