PlayerAdvancements
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.PlayerAdvancements;
Members
award(advancement as AdvancementHolder, criteria as string) as bool
Awards an advancement to the player.script.zs
Returns: Whether the advancement was awarded.
myPlayerAdvancements.award(myAdvancementHolder, myString);
Parameters:
criteria: string
Type: string
- The criteria to award.
Return Type:
bool
flushDirty(player as ServerPlayer)
Updates the advancements on the clientscript.zs
myPlayerAdvancements.flushDirty(myServerPlayer);
Parameters:
getOrStartProgress(advancement as AdvancementHolder) as AdvancementProgress
Gets the progress of an advancement.script.zs
Returns: The progress of the advancement.
myPlayerAdvancements.getOrStartProgress(myAdvancementHolder);
Parameters:
Return Type:
AdvancementProgress
revoke(advancement as AdvancementHolder, criteria as string) as bool
Revokes an advancement from the player.script.zs
Returns: Whether the advancement was revoked.
myPlayerAdvancements.revoke(myAdvancementHolder, myString);
Parameters:
criteria: string
Type: string
- The criteria to revoke.
Return Type:
bool