MCCommandDispatcher

Link to mccommanddispatcher

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

Name: equals

Return Type: boolean

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

Name: execute

Return Type: int

ZenScript
Copy
MCCommandDispatcher.execute(parse as MCParseResults) as int
ParameterTypeDescription
Parameter
parse
Type
MCParseResults
Description
No Description Provided

Name: execute

Return Type: int

ZenScript
Copy
MCCommandDispatcher.execute(input as string, source as MCCommandSource) as int
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided
Parameter
source
Type
MCCommandSource
Description
No Description Provided

Name: findAmbiguities

Return Type: void

ZenScript
Copy
MCCommandDispatcher.findAmbiguities(consumer as MCAmbiguityConsumer) as void
ParameterTypeDescription
Parameter
consumer
Type
MCAmbiguityConsumer
Description
No Description Provided

Name: findNode

Return Type: MCCommandNode

ZenScript
Copy
MCCommandDispatcher.findNode(path as Collection<string>) as MCCommandNode
ParameterTypeDescription
Parameter
path
Type
Collection<string>
Description
No Description Provided

Name: getAllUsage

Return Type: string[]

ZenScript
Copy
MCCommandDispatcher.getAllUsage(node as MCCommandNode, source as MCCommandSource, restricted as boolean) as string[]
ParameterTypeDescription
Parameter
node
Type
MCCommandNode
Description
No Description Provided
Parameter
source
Type
MCCommandSource
Description
No Description Provided
Parameter
restricted
Type
boolean
Description
No Description Provided

Link to getCompletionSuggestions

Name: getCompletionSuggestions

Return Type: MCSuggestions

ZenScript
Copy
MCCommandDispatcher.getCompletionSuggestions(parse as MCParseResults) as MCSuggestions
ParameterTypeDescription
Parameter
parse
Type
MCParseResults
Description
No Description Provided

Link to getCompletionSuggestions

Name: getCompletionSuggestions

Return Type: MCSuggestions

ZenScript
Copy
MCCommandDispatcher.getCompletionSuggestions(parse as MCParseResults, cursor as int) as MCSuggestions
ParameterTypeDescription
Parameter
parse
Type
MCParseResults
Description
No Description Provided
Parameter
cursor
Type
int
Description
No Description Provided

Name: getPath

Return Type: Collection<string>

ZenScript
Copy
MCCommandDispatcher.getPath(target as MCCommandNode) as Collection<string>
ParameterTypeDescription
Parameter
target
Type
MCCommandNode
Description
No Description Provided

Name: getRoot

Return Type: MCRootCommandNode

ZenScript
Copy
// MCCommandDispatcher.getRoot() as MCRootCommandNode

myMCCommandDispatcher.getRoot();

Name: getSmartUsage

Return Type: string[MCCommandNode]

ZenScript
Copy
MCCommandDispatcher.getSmartUsage(node as MCCommandNode, source as MCCommandSource) as string[MCCommandNode]
ParameterTypeDescription
Parameter
node
Type
MCCommandNode
Description
No Description Provided
Parameter
source
Type
MCCommandSource
Description
No Description Provided

Name: hashCode

Return Type: int

ZenScript
Copy
// MCCommandDispatcher.hashCode() as int

myMCCommandDispatcher.hashCode();

Name: parse

Return Type: MCParseResults

ZenScript
Copy
MCCommandDispatcher.parse(command as string, source as MCCommandSource) as MCParseResults
ParameterTypeDescription
Parameter
command
Type
string
Description
No Description Provided
Parameter
source
Type
MCCommandSource
Description
No Description Provided

Name: register

Return Type: MCLiteralCommandNode

ZenScript
Copy
MCCommandDispatcher.register(command as MCLiteralArgumentBuilder) as MCLiteralCommandNode
ParameterTypeDescription
Parameter
command
Type
MCLiteralArgumentBuilder
Description
No Description Provided

Name: setConsumer

Return Type: void

ZenScript
Copy
MCCommandDispatcher.setConsumer(consumer as MCResultConsumer) as void
ParameterTypeDescription
Parameter
consumer
Type
MCResultConsumer
Description
No Description Provided

Name: toString

Return Type: string

ZenScript
Copy
// MCCommandDispatcher.toString() as string

myMCCommandDispatcher.toString();

Name: EQUALS

ZenScript
Copy
myMCCommandDispatcher == o as Object