MCCommandContext
Link to mccommandcontext
Importare la Classe
Link to importare-la-classe
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.commands.custom.MCCommandContext;
Caster
Link to caster
Tipo Risultato | Implicito |
---|---|
Tipo Risultato string | Implicito sì |
Metodi
Link to metodi
Name: copyFor
Return Type: MCCommandContext
ZenScript CopyMCCommandContext.copyFor(source as MCCommandSource) as MCCommandContext
Parametro | Tipo | Descrizione |
---|---|---|
Parametro sorgente | Tipo MCCommandSource | Descrizione No Description Provided |
Name: equals
Return Type: boolean
ZenScript CopyMCCommandContext.equals(o as Object) as boolean
Parametro | Tipo | Descrizione |
---|---|---|
Parametro o | Tipo Object | Descrizione No Description Provided |
Name: getArgument
Return Type: string
ZenScript CopyMCCommandContext.getArgument(name as string) as string
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione No Description Provided |
Name: getChild
Return Type: MCCommandContext
ZenScript Copy// MCCommandContext.getChild() as MCCommandContext
myMCCommandContext.getChild();
Name: getCommand
Return Type: MCCommand
ZenScript Copy// MCCommandContext.getCommand() as MCCommand
myMCCommandContext.getCommand();
Name: getInput
Return Type: string
ZenScript Copy// MCCommandContext.getInput() as string
myMCCommandContext.getInput();
Name: getLastChild
Return Type: MCCommandContext
ZenScript Copy// MCCommandContext.getLastChild() as MCCommandContext
myMCCommandContext.getLastChild();
Name: getNodes
Return Type: stdlib.List<MCParsedCommandNode>
ZenScript Copy// MCCommandContext.getNodes() as stdlib.List<MCParsedCommandNode>
myMCCommandContext.getNodes();
Name: getRange
Return Type: MCStringRange
ZenScript Copy// MCCommandContext.getRange() as MCStringRange
myMCCommandContext.getRange();
Name: getRedirectModifier
Return Type: MCRedirectModifier
ZenScript Copy// MCCommandContext.getRedirectModifier() as MCRedirectModifier
myMCCommandContext.getRedirectModifier();
Name: getRootNode
Return Type: MCCommandNode
ZenScript Copy// MCCommandContext.getRootNode() as MCCommandNode
myMCCommandContext.getRootNode();
Name: getSource
Return Type: MCCommandSource
ZenScript Copy// MCCommandContext.getSource() as MCCommandSource
myMCCommandContext.getSource();
Name: hasNodes
Return Type: boolean
ZenScript Copy// MCCommandContext.hasNodes() as boolean
myMCCommandContext.hasNodes();
Name: hashCode
Return Type: int
ZenScript Copy// MCCommandContext.hashCode() as int
myMCCommandContext.hashCode();
Name: isForked
Return Type: boolean
ZenScript Copy// MCCommandContext.isForked() as boolean
myMCCommandContext.isForked();
Name: toString
Return Type: string
ZenScript Copy// MCCommandContext.toString() as string
myMCCommandContext.toString();
Operators
Link to operators
Name: EQUALS
ZenScriptCopymyMCCommandContext == o come oggetto