Lector de cadena MCImmutable

Link to lector-de-cadena-mcimmutable

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.MCImmutableStringReader;

Name: canRead

Return Type: boolean

ZenScript
Copy
// MCImmutableStringReader.canRead() as boolean

myMCImmutableStringReader.canRead();

Name: canRead

Return Type: boolean

ZenScript
Copy
MCImmutableStringReader.canRead(arg0 as int) as boolean
ParameterTypeDescription
Parameter
arg0
Type
int
Description
No Description Provided

Name: getCursor

Return Type: int

ZenScript
Copy
// MCImmutableStringReader.getCursor() as int

myMCImmutableStringReader.getCursor();

Name: getRead

Return Type: string

ZenScript
Copy
// MCImmutableStringReader.getRead() as string

myMCImmutableStringReader.getRead();

Name: getRemaining

Return Type: string

ZenScript
Copy
// MCImmutableStringReader.getRemaining() as string

myMCImmutableStringReader.getRemaining();

Link to getRemainingLength

Name: getRemainingLength

Return Type: int

ZenScript
Copy
// MCImmutableStringReader.getRemainingLength() as int

myMCImmutableStringReader.getRemainingLength();

Name: getString

Return Type: string

ZenScript
Copy
// MCImmutableStringReader.getString() as string

myMCImmutableStringReader.getString();

Name: getTotalLength

Return Type: int

ZenScript
Copy
// MCImmutableStringReader.getTotalLength() as int

myMCImmutableStringReader.getTotalLength();

Name: peek

Return Type: char

ZenScript
Copy
// MCImmutableStringReader.peek() as char

myMCImmutableStringReader.peek();

Name: peek

Return Type: char

ZenScript
Copy
MCImmutableStringReader.peek(arg0 as int) as char
ParameterTypeDescription
Parameter
arg0
Type
int
Description
No Description Provided