PlayerInteractEntity

Link to playerinteractentity

The PlayerInteractEntity Event is fired whenever a player interacts with an Entity. It can be canceled to prevent the interaction from taking place. If the event is canceled, a specific result of success, fail or pass can be provided. By default, the result is pass.

Класс события

Link to класс-события

You will need to cast the event in the function header as this class:
crafttweaker.event.PlayerInteractEntityEvent
You can, of course, also import the class before and use that name then.

Наследование от интерфейсов событий

Link to наследование-от-интерфейсов-событий

PlayerInteractEntity Events implement the following interfaces and are able to call all of their methods/getters/setters as well:

ZenGetters & ZenSetters

Link to zengetters--zensetters

Следующая информация может быть получена от события:

ZenGetterZenSettersВозвращаемый тип
ZenGetter
player
ZenSetters
Возвращаемый тип
IPlayer
ZenGetter
target
ZenSetters
Возвращаемый тип
IEntity
ZenGetter
cancellationResult
ZenSetters
cancellationResult
Возвращаемый тип
string ("success" / "pass" / "fail")
  • event.cancel() sets the event as cancelled.