CommandSource
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.command.CommandSource;
Description
Represents a source of a command execution, such as anEntity
or the MinecraftServer
. Members
Getter
Checks if the commands from this source should return failure messagesscript.zs
// CommandSource.acceptsFailure as boolmyCommandSource.acceptsFailure
Return Type:
bool
acceptsFailure() as bool
Checks if the commands from this source should return failure messagesscript.zs
Returns: True if the commands from this source should return failure messages, false otherwise.
// CommandSource.acceptsFailure() as bool;myCommandSource.acceptsFailure();
Return Type:
bool
Getter
Checks if the commands from this source should return successful messagesscript.zs
// CommandSource.acceptsSuccess as boolmyCommandSource.acceptsSuccess
Return Type:
bool
acceptsSuccess() as bool
Checks if the commands from this source should return successful messagesscript.zs
Returns: True if the commands from this source should return successful messages, false otherwise.
// CommandSource.acceptsSuccess() as bool;myCommandSource.acceptsSuccess();
Return Type:
bool
Getter
Checks if the command source always accepts.script.zs
// CommandSource.alwaysAccepts as boolmyCommandSource.alwaysAccepts
Return Type:
bool
alwaysAccepts() as bool
Checks if the command source always accepts.script.zs
Returns: True if the command source always accepts, false otherwise.
// CommandSource.alwaysAccepts() as bool;myCommandSource.alwaysAccepts();
Return Type:
bool
Getter
Checks if the commands from this source should inform admins.script.zs
// CommandSource.shouldInformAdmins as boolmyCommandSource.shouldInformAdmins
Return Type:
bool
shouldInformAdmins() as bool
Checks if the commands from this source should inform admins.script.zs
Returns: True if the commands from this source should inform admins, false otherwise.
// CommandSource.shouldInformAdmins() as bool;myCommandSource.shouldInformAdmins();
Return Type:
bool