Script Details
Condition
quantity _tool2 < maxQuantity _tool2
Action
call player_combineQuantity; _condition = damage _tool2;
What is this?
The condition and action scripts are bits of code used by the game to handle more complicated mechanics than can be expressed by just providing components and results.
The condition script adds restrictions on when a recipe can be crafted. If the expression in the condition evaluates to false, the recipe isn't available.
The action script allows the recipe to handle more complex inputs and outputs. For example, it's used when combining stacks of items to allow stacks of any sizes to be merged together.
No comments yet!
No screenshots yet!