MCCommandContext

Link to mccommandcontext

Импорт класса

Link to импорт-класса

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;
Тип результатаЯвляется неявным
Тип результата
string
Является неявным
true

Name: copyFor

Return Type: MCCommandContext

ZenScript
Copy
MCCommandContext.copyFor(source as MCCommandSource) as MCCommandContext
ПараметрТипОписание
Параметр
источник
Тип
Источник MCCommandSource
Описание
No Description Provided

Name: equals

Return Type: boolean

ZenScript
Copy
MCCommandContext.equals(o as Object) as boolean
ПараметрТипОписание
Параметр
o
Тип
Object
Описание
No Description Provided

Name: getArgument

Return Type: string

ZenScript
Copy
MCCommandContext.getArgument(name as string) as string
ПараметрТипОписание
Параметр
name
Тип
string
Описание
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();

Операторы

Link to операторы

Name: EQUALS

ZenScript
Copy
myMCCommandContext == o как объект