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.MCSuggestion;
반환 자료형암묵적
반환 자료형
string
암묵적
true

Name: apply

Return Type: string

ZenScript
Copy
MCSuggestion.apply(input as string) as string
ParameterTypeDescription
Parameter
input
Type
string
Description
No Description Provided

Name: compareTo

Return Type: int

ZenScript
Copy
MCSuggestion.compareTo(o as MCSuggestion) as int
ParameterTypeDescription
Parameter
o
Type
MCSuggestion
Description
No Description Provided

Link to compareToIgnoreCase

Name: compareToIgnoreCase

Return Type: int

ZenScript
Copy
MCSuggestion.compareToIgnoreCase(b as MCSuggestion) as int
ParameterTypeDescription
Parameter
b
Type
MCSuggestion
Description
No Description Provided

Name: equals

Return Type: boolean

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

Name: expandWith

Return Type: MCSuggestion

ZenScript
Copy
MCSuggestion.expandWith(command as string, range as MCStringRange) as MCSuggestion
ParameterTypeDescription
Parameter
command
Type
string
Description
No Description Provided
Parameter
range
Type
MCStringRange
Description
No Description Provided

Name: getRange

Return Type: MCStringRange

ZenScript
Copy
// MCSuggestion.getRange() as MCStringRange

myMCSuggestion.getRange();

Name: getText

Return Type: string

ZenScript
Copy
// MCSuggestion.getText() as string

myMCSuggestion.getText();

Name: getTooltip

Return Type: string

ZenScript
Copy
// MCSuggestion.getTooltip() as string

myMCSuggestion.getTooltip();

Name: hashCode

Return Type: int

ZenScript
Copy
// MCSuggestion.hashCode() as int

myMCSuggestion.hashCode();

Name: toString

Return Type: string

ZenScript
Copy
// MCSuggestion.toString() as string

myMCSuggestion.toString();

Name: EQUALS

ZenScript
Copy
myMCSuggestion == o as Object