@@ -19,98 +19,98 @@ defineProps({
1919})
2020</script >
2121
22- - ` top_name `
23- - ** Format** :
24- - ` {{ globalPrefix }}<holder>;top_name;<position>{{ globalSuffix }} `
25- - ** Description:** The name of the player at the specified position.
26- - ** Argument:**
27- - ` <holder> ` : The name of the Holder
28- - ` <position> ` : The position of the player in the Holder
29- - ** Example:**
30- - ` {{ globalPrefix }}money;top_name;1{{ globalSuffix }} `
31- - Retrieve the name of the player at the first position in the Top Holder named ` money `
22+ ### ` top_name `
23+ - ** Format** :
24+ - ` {{ globalPrefix }}<holder>;top_name;<position>{{ globalSuffix }} `
25+ - ** Description:** The name of the player at the specified position.
26+ - ** Argument:**
27+ - ` <holder> ` : The name of the Holder
28+ - ` <position> ` : The position of the player in the Holder
29+ - ** Example:**
30+ - ` {{ globalPrefix }}money;top_name;1{{ globalSuffix }} `
31+ - Retrieve the name of the player at the first position in the Top Holder named ` money `
3232
33- - ` top_key `
34- - ** Format** :
35- - ` {{ globalPrefix }}<holder>;top_key;<position>{{ globalSuffix }} `
36- - ** Description:** The UUID of the player at the specified position.
37- - ** Argument:**
38- - ` <holder> ` : The name of the Holder
39- - ` <position> ` : The position of the player in the Holder
40- - ** Example:**
41- - ` {{ globalPrefix }}money;top_key;1{{ globalSuffix }} `
42- - Retrieve the UUID of the player at the first position in the Top Holder named ` money `
33+ ### ` top_key `
34+ - ** Format** :
35+ - ` {{ globalPrefix }}<holder>;top_key;<position>{{ globalSuffix }} `
36+ - ** Description:** The UUID of the player at the specified position.
37+ - ** Argument:**
38+ - ` <holder> ` : The name of the Holder
39+ - ` <position> ` : The position of the player in the Holder
40+ - ** Example:**
41+ - ` {{ globalPrefix }}money;top_key;1{{ globalSuffix }} `
42+ - Retrieve the UUID of the player at the first position in the Top Holder named ` money `
4343
44- - ` top_value `
45- - ** Format** :
46- - ` {{ globalPrefix }}<holder>;top_value;<position>{{ globalSuffix }} `
47- - ` {{ globalPrefix }}<holder>;top_value;<position>;<format>{{ globalSuffix }} `
48- - ** Description:** The value of the player at the specified position.
49- - ** Argument:**
50- - ` <holder> ` : The name of the Holder
51- - ` <position> ` : The position of the player in the Holder
52- - ` <format> ` : A number format pattern, see [ Value Display] ( /topper/extra/value_display/ ) for more details on how to apply a format
53- - ** Example:**
54- - ` {{ globalPrefix }}money;top_value;1{{ globalSuffix }} `
55- - Retrieve the value of the player at the first position in the Top Holder named ` money `
56- - ` {{ globalPrefix }}money;top_value;1;#,###{{ globalSuffix }} `
57- - Retrieve the formatted value of the player at the first position in the Top Holder named ` money ` , in the format of ` #,### `
44+ ### ` top_value `
45+ - ** Format** :
46+ - ` {{ globalPrefix }}<holder>;top_value;<position>{{ globalSuffix }} `
47+ - ` {{ globalPrefix }}<holder>;top_value;<position>;<format>{{ globalSuffix }} ` (optional ` <format> ` )
48+ - ** Description:** The value of the player at the specified position.
49+ - ** Argument:**
50+ - ` <holder> ` : The name of the Holder
51+ - ` <position> ` : The position of the player in the Holder
52+ - ` <format> ` * (optional) * : A number format pattern, see [ Value Display] ( /topper/extra/value_display/ ) for more details on how to apply a format
53+ - ** Example:**
54+ - ` {{ globalPrefix }}money;top_value;1{{ globalSuffix }} `
55+ - Retrieve the value of the player at the first position in the Top Holder named ` money `
56+ - ` {{ globalPrefix }}money;top_value;1;#,###{{ globalSuffix }} `
57+ - Retrieve the formatted value of the player at the first position in the Top Holder named ` money ` , in the format of ` #,### `
5858
59- - ` top_value_raw `
60- - ** Format** :
61- - ` {{ globalPrefix }}<holder>;top_value_raw;<position>{{ globalSuffix }} `
62- - ** Description:** The raw value of the player at the specified position.
63- - ** Argument:**
64- - ` <holder> ` : The name of the Holder
65- - ` <position> ` : The position of the player in the Holder
66- - ** Example:**
67- - ` {{ globalPrefix }}money;top_value_raw;1{{ globalSuffix }} `
68- - Retrieve the raw value of the player at the first position in the Top Holder named ` money `
59+ ### ` top_value_raw `
60+ - ** Format** :
61+ - ` {{ globalPrefix }}<holder>;top_value_raw;<position>{{ globalSuffix }} `
62+ - ** Description:** The raw value of the player at the specified position.
63+ - ** Argument:**
64+ - ` <holder> ` : The name of the Holder
65+ - ` <position> ` : The position of the player in the Holder
66+ - ** Example:**
67+ - ` {{ globalPrefix }}money;top_value_raw;1{{ globalSuffix }} `
68+ - Retrieve the raw value of the player at the first position in the Top Holder named ` money `
6969
70- - ` top_rank `
71- - ** Format** :
72- - ` {{ globalPrefix }}<holder>;top_rank{{ globalSuffix }} `
73- - ` {{ globalPrefix }}<holder>;top_rank;<format>{{ globalSuffix }} `
74- - ** Description:** The rank of the player.
75- - ** Argument:**
76- - ` <holder> ` : The name of the Holder
77- - ` <format> ` : A number format pattern (e.g., ` #,### ` for thousands separator)
78- - ** Example:**
79- - ` {{ globalPrefix }}money;top_rank{{ globalSuffix }} `
80- - Retrieve the rank of the player in the Top Holder named ` money `
81- - ` {{ globalPrefix }}money;top_rank;#,###{{ globalSuffix }} `
82- - Retrieve the formatted rank of the player in the Top Holder named ` money `
70+ ### ` top_rank `
71+ - ** Format** :
72+ - ` {{ globalPrefix }}<holder>;top_rank{{ globalSuffix }} `
73+ - ` {{ globalPrefix }}<holder>;top_rank;<format>{{ globalSuffix }} ` (optional ` <format> ` )
74+ - ** Description:** The rank of the player.
75+ - ** Argument:**
76+ - ` <holder> ` : The name of the Holder
77+ - ` <format> ` * (optional) * : A number format pattern (e.g., ` #,### ` for thousands separator)
78+ - ** Example:**
79+ - ` {{ globalPrefix }}money;top_rank{{ globalSuffix }} `
80+ - Retrieve the rank of the player in the Top Holder named ` money `
81+ - ` {{ globalPrefix }}money;top_rank;#,###{{ globalSuffix }} `
82+ - Retrieve the formatted rank of the player in the Top Holder named ` money `
8383
84- - ` top_size `
85- - ** Format** :
86- - ` {{ globalPrefix }}<holder>;top_size{{ globalSuffix }} `
87- - ** Description:** The amount of entries in the Top Holder.
88- - ** Argument:**
89- - ` <holder> ` : The name of the Holder
90- - ** Example:**
91- - ` {{ globalPrefix }}money;top_size{{ globalSuffix }} `
92- - Retrieve the amount of entries in the Top Holder named ` money `
84+ ### ` top_size `
85+ - ** Format** :
86+ - ` {{ globalPrefix }}<holder>;top_size{{ globalSuffix }} `
87+ - ** Description:** The amount of entries in the Top Holder.
88+ - ** Argument:**
89+ - ` <holder> ` : The name of the Holder
90+ - ** Example:**
91+ - ` {{ globalPrefix }}money;top_size{{ globalSuffix }} `
92+ - Retrieve the amount of entries in the Top Holder named ` money `
9393
94- - ` value `
95- - ** Format** :
96- - ` {{ playerPrefix }}<holder>;value{{ playerSuffix }} `
97- - ` {{ playerPrefix }}<holder>;value;<format>{{ playerSuffix }} `
98- - ** Description:** The value of the player.
99- - ** Argument:**
100- - ` <holder> ` : The name of the Holder
101- - ` <format> ` : A number format pattern, see [ Value Display] ( /topper/extra/value_display/ ) for more details on how to apply a format
102- - ** Example:**
103- - ` {{ playerPrefix }}money;value{{ playerSuffix }} `
104- - Retrieve the raw value of the player in the Top Holder named ` money `
105- - ` {{ playerPrefix }}money;value;#,###{{ playerSuffix }} `
106- - Retrieve the formatted value of the player in the Top Holder named ` money `
94+ ### ` value `
95+ - ** Format** :
96+ - ` {{ playerPrefix }}<holder>;value{{ playerSuffix }} `
97+ - ` {{ playerPrefix }}<holder>;value;<format>{{ playerSuffix }} ` (optional ` <format> ` )
98+ - ** Description:** The value of the player.
99+ - ** Argument:**
100+ - ` <holder> ` : The name of the Holder
101+ - ` <format> ` * (optional) * : A number format pattern, see [ Value Display] ( /topper/extra/value_display/ ) for more details on how to apply a format
102+ - ** Example:**
103+ - ` {{ playerPrefix }}money;value{{ playerSuffix }} `
104+ - Retrieve the value of the player in the Top Holder named ` money `
105+ - ` {{ playerPrefix }}money;value;#,###{{ playerSuffix }} `
106+ - Retrieve the formatted value of the player in the Top Holder named ` money `
107107
108- - ` value_raw `
109- - ** Format** :
110- - ` {{ playerPrefix }}<holder>;value_raw{{ playerSuffix }} `
111- - ** Description:** The raw value of the player.
112- - ** Argument:**
113- - ` <holder> ` : The name of the Holder
114- - ** Example:**
115- - ` {{ playerPrefix }}money;value_raw{{ playerSuffix }} `
116- - Retrieve the raw value of the player in the Top Holder named ` money `
108+ ### ` value_raw `
109+ - ** Format** :
110+ - ` {{ playerPrefix }}<holder>;value_raw{{ playerSuffix }} `
111+ - ** Description:** The raw value of the player.
112+ - ** Argument:**
113+ - ` <holder> ` : The name of the Holder
114+ - ** Example:**
115+ - ` {{ playerPrefix }}money;value_raw{{ playerSuffix }} `
116+ - Retrieve the raw value of the player in the Top Holder named ` money `
0 commit comments