%deltagcat_count_<category>%
Returns the amount of owned tags in that specific category.
Example if placeholder is %deltagcat_count_rare%
DeluxeTagCategories/config.yml
categories:
Rare:
- "example1"
- "example2"
In this situation, it would return "2" owned tags if the player owned 2 tags.
%deltagcat_total%
Returns the amount of total tags.
Example if placeholder is %deltagcat_total%
DeluxeTagCategories/config.yml
categories:
Epic:
- "epictag1"
- "epictag2"
Rare:
- "example1"
- "example2"
It would return "rare" & "epic" tags, meaning the number 4.
%deltagcat_total_<category>%
Returns the amount of total tags in that specific category.
Example if placeholder is %deltagcat_total_epic%
It would only return "epic" tags, meaning the number 2.
%deltagcat_progress%
Returns the progress in a x/x format.
Example if placeholder is %deltagcat_progress% & the player has 2 tags
It would then return 2/4 as the placeholder.
%deltagcat_progress_<category>%
Returns the progress in a x/x format.
Example if placeholder is %deltagcat_progress_rare% & the player has 1 tag
It would then return ½ as the placeholder.
%deltagcat_progress_locked%
Returns the amount of locked tags in the progress format.
Example if placeholder is %deltagcat_progress_locked%
It would return 2 as the placeholder if the player does not own either tags.
%deltagcat_progress_locked_<category>%
Returns the amount of locked tags in the progress format.
Example if placeholder is %deltagcat_progress_locked_rare%
It would return 2 as the placeholder.
%deltagcat_percent_<category>%
Return the amount in percent form to how many unlocked tags are in that category.
Example if placeholder is %deltagcat_percent_rare% & the player owns 1 tag
It would return 50% as the placeholder.