Home Migration Guide Getting Started With Scripts Commands Examples
BracketHandlers

Delegate

Builder to create a ‘Delegate’ loot condition.

A delegate loot condition defers checking to another loot condition directly, effectively acting as a simple wrapper around the delegated condition. This allows other conditions that may have been built prior to the construction of this builder to be referenced and used directly.

A ‘Delegate’ loot condition requires a delegate to be built.

Importing the class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

script.zs
import crafttweaker.api.loot.conditions.crafttweaker.Delegate;

Implemented Interfaces

Delegate implements the following interfaces. That means all methods defined in these interfaces are also available in Delegate

Methods

Sets the delegate to the loot condition created with the given LootConditionBuilder.

The builder must host a single loot condition. Builders with a different amount of conditions are not allowed. The builder will be used to generate a loot condition that will then be used as a delegate.

This parameter is required.

Returns: This builder for chaining.
Return Type: Delegate

script.zs
Delegate.withDelegate(builder as LootConditionBuilder) as Delegate
ParameterTypeDescription
Parameter
builder
Type
LootConditionBuilder
Description
The builder to create a single ILootCondition.

Sets the delegate loot condition.

This parameter is required.

Returns: This builder for chaining.
Return Type: Delegate

script.zs
Delegate.withDelegate(other as ILootCondition) as Delegate
ParameterTypeDescription
Parameter
other
Type
ILootCondition
Description
The delegate loot condition.