AdvancementProgress
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.advancement.AdvancementProgress;
Implements
Undocumented Interfaces
Comparable<AdvancementProgress>
Members
Getter
Gets the completed criteria for the advancementscript.zs
// AdvancementProgress.completedCriteria as List<string>myAdvancementProgress.completedCriteria
Return Type:
List<string>
Getter
Checks if the advancement is donescript.zs
// AdvancementProgress.done as boolmyAdvancementProgress.done
Return Type:
bool
getCriterion(criterionName as string) as CriterionProgress
Gets the criterion progress for the advancementscript.zs
Returns: The criterion progress, or null if it doesn't exist
myAdvancementProgress.getCriterion(myString);
Parameters:
criterionName: string
Type: string
- The name of the criterion to get progress for
Return Type:
CriterionProgress
grantProgress(criterionName as string) as bool
Grants progress to the advancementscript.zs
Returns: true if the progress was granted, false otherwise
// AdvancementProgress.grantProgress(criterionName as string) as bool;myAdvancementProgress.grantProgress(myString);
Parameters:
criterionName: string
Type: string
- The name of the criterion to grant progress to
Return Type:
bool
Getter
Checks if the advancement has progressscript.zs
// AdvancementProgress.hasProgress as boolmyAdvancementProgress.hasProgress
Return Type:
bool
Getter
Gets the percentage of the advancement that is completescript.zs
// AdvancementProgress.percent as floatmyAdvancementProgress.percent
Return Type:
float
Getter
Gets the remaining criteria for the advancementscript.zs
// AdvancementProgress.remainingCriteria as List<string>myAdvancementProgress.remainingCriteria
Return Type:
List<string>
revokeProgress(criterionName as string) as bool
Revokes progress from the advancementscript.zs
Returns: true if the progress was revoked, false otherwise
// AdvancementProgress.revokeProgress(criterionName as string) as bool;myAdvancementProgress.revokeProgress(myString);
Parameters:
criterionName: string
Type: string
- The name of the criterion to revoke progress from
Return Type:
bool