Home Migration Guide Getting Started With Scripts Commands Examples
BracketHandlers

Not

Builder to create a ‘Not’ condition.

The sub-condition added to a ‘Not’ condition will be passed through the equivalent of a NOT gate, effectively inverting the result of the query. This makes this loot condition effectively a clone of Inverted at the moment. This ensures a more coherent experience in case vanilla’s behavior changes in the future, while also allowing the user to specify the logic gate directly.

A ‘Not’ condition requires a sub-condition 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.Not;

Implemented Interfaces

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

Methods

Sets the negated condition to the one 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 sub-condition.

This parameter is required.

Returns: This builder for chaining.
Return Type: Not

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

Sets the loot condition to negate.

This parameter is required.

Returns: This builder for chaining.
Return Type: Not

script.zs
Not.withCondition(condition as ILootCondition) as Not
ParameterTypeDescription
Parameter
condition
Type
ILootCondition
Description
The condition to negate.

Creates and builds the sub-condition that will then be negated.

Returns: This builder for chaining.
Return Type: Not

script.zs
Not.withCondition<T : ILootConditionTypeBuilder>(lender as Consumer<T>) as Not
ParameterTypeDescription
Parameter
lender
Type
Consumer<T>
Description
A consumer that allows configuration of the created condition.
Parameter
T
Type
ILootConditionTypeBuilder
Description
The known type of the condition itself.