MCParseResults

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.

script.zs
import crafttweaker.api.commands.custom.MCParseResults;

Casters

Result typeIs Implicit
Result type
string
Is Implicit
true

Methods

Return Type: boolean

script.zs
MCParseResults.equals(o as Object) as boolean
ParameterTypeDescription
Parameter
o
Type
Object
Description
No Description Provided

Return Type: MCCommandContextBuilder

script.zs
// MCParseResults.getContext() as MCCommandContextBuilder
myMCParseResults.getContext();

Return Type: Exception[MCCommandNode]

script.zs
// MCParseResults.getExceptions() as Exception[MCCommandNode]
myMCParseResults.getExceptions();

Return Type: MCImmutableStringReader

script.zs
// MCParseResults.getReader() as MCImmutableStringReader
myMCParseResults.getReader();

Return Type: int

script.zs
// MCParseResults.hashCode() as int
myMCParseResults.hashCode();

Return Type: string

script.zs
// MCParseResults.toString() as string
myMCParseResults.toString();

Operators

script.zs
myMCParseResults == o as Object