The event is not cancelable.

The event does not have a result.

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.

ZenScript
Copy
import crafttweaker.api.event.MCEvent;

Name: cancel

Cancels the event. Same as setCanceled(true)

Return Type: void

ZenScript
Copy
// MCEvent.cancel() as void

myMCEvent.cancel();

Name: hasResult

Return Type: boolean

ZenScript
Copy
// MCEvent.hasResult() as boolean

myMCEvent.hasResult();

Name: isCancelable

Return Type: boolean

ZenScript
Copy
// MCEvent.isCancelable() as boolean

myMCEvent.isCancelable();

Name: isCanceled

Return Type: boolean

ZenScript
Copy
// MCEvent.isCanceled() as boolean

myMCEvent.isCanceled();

Name: setAllow

sets the event's result to allow

Return Type: void

ZenScript
Copy
// MCEvent.setAllow() as void

myMCEvent.setAllow();

Name: setCanceled

Return Type: void

ZenScript
Copy
MCEvent.setCanceled(cancel as boolean) as void
参数类型描述
参数
cancel
类型
布尔值
描述
No Description Provided

Name: setDefault

sets the event's result to default

Return Type: void

ZenScript
Copy
// MCEvent.setDefault() as void

myMCEvent.setDefault();

Name: setDeny

sets the event's result to deny

Return Type: void

ZenScript
Copy
// MCEvent.setDeny() as void

myMCEvent.setDeny();
名称类型可获得可设置描述
名称
cancelable
类型
布尔值
可获得
true
可设置
false
描述
No Description Provided
名称
canceled
类型
布尔值
可获得
true
可设置
true
描述
No Description Provided
名称
hasResult
类型
布尔值
可获得
true
可设置
false
描述
No Description Provided