MCCommandContext

Link to mccommandcontext

Importing the class

Link to importing-the-class

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.commands.custom.MCCommandContext;
Result typeIs Implicit
Result type
string
Is Implicit
true

Name: copyFor

Return Type: MCCommandContext

ZenScript
Copy
MCCommandContext.copyFor(source as MCCommandSource) as MCCommandContext
ParameterTypeDescription
Parameter
source
Type
MCCommandSource
Description
No Description Provided

Name: equals

Return Type: boolean

ZenScript
Copy
MCCommandContext.equals(o as Object) as boolean
ParameterTypeDescription
Parameter
o
Type
Object
Description
No Description Provided

Name: getArgument

Return Type: string

ZenScript
Copy
MCCommandContext.getArgument(name as string) as string
ParameterTypeDescription
Parameter
name
Type
string
Description
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();

Link to getRedirectModifier

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();

Name: EQUALS

ZenScript
Copy
myMCCommandContext == o as Object