CommandSource
Link to commandsource
Импорт класса
Link to импорт-класса
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 Copyimport crafttweaker.api.command.CommandSource;
Методы
Link to методы
Name: acceptsFailure
Return Type: boolean
ZenScript Copy// CommandSource.acceptsFailure() as boolean
myCommandSource.acceptsFailure();
Name: acceptsSuccess
Return Type: boolean
ZenScript Copy// CommandSource.acceptsSuccess() as boolean
myCommandSource.acceptsSuccess();
Name: alwaysAccepts
Return Type: boolean
ZenScript Copy// CommandSource.alwaysAccepts() as boolean
myCommandSource.alwaysAccepts();
Name: sendMessage
ZenScript CopyCommandSource.sendMessage(component as Component)
Параметр | Тип |
---|---|
Параметр component | Тип Component |
Name: shouldInformAdmins
Return Type: boolean
ZenScript Copy// CommandSource.shouldInformAdmins() as boolean
myCommandSource.shouldInformAdmins();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название acceptsFailure | Тип boolean | Имеет Getter true | Имеет Setter false |
Название acceptsSuccess | Тип boolean | Имеет Getter true | Имеет Setter false |
Название alwaysAccepts | Тип boolean | Имеет Getter true | Имеет Setter false |
Название shouldInformAdmins | Тип boolean | Имеет Getter true | Имеет Setter false |