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

Name: addChild

Return Type: void

ZenScript
Copy
MCCommandNode.addChild(node as MCCommandNode) as void
ParameterTypeDescription
Parameter
ノード
Type
MCCommandNode
Description
No Description Provided

Name: canUse

Return Type: boolean

ZenScript
Copy
MCCommandNode.canUse(source as MCCommandSource) as boolean
ParameterTypeDescription
Parameter
ソース
Type
MCCommandSource
Description
No Description Provided

Name: createBuilder

Return Type: MCArgumentBuilder

ZenScript
Copy
// MCCommandNode.createBuilder() as MCArgumentBuilder

myMCCommandNode.createBuilder();

Name: equals

Return Type: boolean

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

Name: findAmbiguities

Return Type: void

ZenScript
Copy
MCCommandNode.findAmbiguities(consumer as MCAmbiguityConsumer) as void
ParameterTypeDescription
Parameter
コンシューマー
Type
MCAmbiguityConsumer
Description
No Description Provided

Name: getChild

Return Type: MCCommandNode

ZenScript
Copy
MCCommandNode.getChild(name as string) as MCCommandNode
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: getChildren

Return Type: Collection<MCCommandNode>

ZenScript
Copy
// MCCommandNode.getChildren() as Collection<MCCommandNode>

myMCCommandNode.getChildren();

Name: getCommand

Return Type: MCCommand

ZenScript
Copy
// MCCommandNode.getCommand() as MCCommand

myMCCommandNode.getCommand();

Name: getExamples

Return Type: Collection<string>

ZenScript
Copy
// MCCommandNode.getExamples() as Collection<string>

myMCCommandNode.getExamples();

Name: getName

Return Type: string

ZenScript
Copy
// MCCommandNode.getName() as string

myMCCommandNode.getName();

Name: getRedirect

Return Type: MCCommandNode

ZenScript
Copy
// MCCommandNode.getRedirect() as MCCommandNode

myMCCommandNode.getRedirect();

Link to getRedirectModifier

Name: getRedirectModifier

Return Type: MCRedirectModifier

ZenScript
Copy
// MCCommandNode.getRedirectModifier() as MCRedirectModifier

myMCCommandNode.getRedirectModifier();

Link to getRelevantNodes

Name: getRelevantNodes

Return Type: Collection<MCCommandNode>

ZenScript
Copy
MCCommandNode.getRelevantNodes(input as string) as Collection<MCCommandNode>
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided

Name: getRequirement

Return Type: Predicate<MCCommandSource>

ZenScript
Copy
// MCCommandNode.getRequirement() as Predicate<MCCommandSource>

myMCCommandNode.getRequirement();

Name: getUsageText

Return Type: string

ZenScript
Copy
// MCCommandNode.getUsageText() as string

myMCCommandNode.getUsageText();

Name: hashCode

Return Type: int

ZenScript
Copy
// MCCommandNode.hashCode() as int

myMCCommandNode.hashCode();

Name: isFork

Return Type: boolean

ZenScript
Copy
// MCCommandNode.isFork() as boolean

myMCCommandNode.isFork();

Name: listSuggestions

Return Type: MCSuggestions

ZenScript
Copy
MCCommandNode.listSuggestions(context as MCCommandContext, builder as MCSuggestionsBuilder) as MCSuggestions
ParameterTypeDescription
Parameter
context
Type
MCCommandContext
Description
No Description Provided
Parameter
ビルダー:
Type
MCSuggestionsBuilder
Description
No Description Provided

Name: parse

Return Type: void

ZenScript
Copy
MCCommandNode.parse(input as string, contextBuilder as MCCommandContextBuilder) as void
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided
Parameter
contextBuilder
Type
MCCommandContextBuilder
Description
No Description Provided

Name: toString

Return Type: string

ZenScript
Copy
// MCCommandNode.toString() as string

myMCCommandNode.toString();

Name: COMPARE

ZenScript
Copy
myMCCommandNode < o as MCCommandNode

Name: EQUALS

ZenScript
Copy
myMCCommandNode == o as Object