MCSuggestionContext
Link to mcsuggestioncontext
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 Copyimport crafttweaker.api.commands.custom.MCSuggestionContext;
Casters
Link to casters
반환 자료형 | 암묵적 |
---|---|
반환 자료형 string | 암묵적 true |
Methods
Link to methods
Name: equals
Return Type: boolean
ZenScript CopyMCSuggestionContext.equals(o as Object) as boolean
Parameter | Type | Description |
---|---|---|
Parameter o | Type Object | Description No Description Provided |
Name: getParent
Return Type: MCCommandNode
ZenScript Copy// MCSuggestionContext.getParent() as MCCommandNode
myMCSuggestionContext.getParent();
Name: getStartPos
Return Type: int
ZenScript Copy// MCSuggestionContext.getStartPos() as int
myMCSuggestionContext.getStartPos();
Name: hashCode
Return Type: int
ZenScript Copy// MCSuggestionContext.hashCode() as int
myMCSuggestionContext.hashCode();
Name: toString
Return Type: string
ZenScript Copy// MCSuggestionContext.toString() as string
myMCSuggestionContext.toString();
연산자
Link to 연산자
Name: EQUALS
ZenScript CopymyMCSuggestionContext == o as Object