generated from FabricMC/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 30
Variable Flags
Jakob edited this page Feb 27, 2023
·
5 revisions
The wiki has moved!
New Page: https://customhud.dev/v2/references/variable_flags
Variable flags are flags that can be put in the variable's {} that changes the output of the variable.
| Flag | Flag (long) | Description | Example (In) | Example (Out) |
|---|---|---|---|---|
| -uc | -uppercase | Makes the result uppercase | {dimention -uc} | THE_NETHER |
| -lc | -lowercase | Makes the result lowercase | {dimention -lc} | the_nether |
| -tc | -titlecase | Capitalizes the first letter of each word, lowercases the rest | {dimention -tc} | The_Nether |
| -sc | -smallcaps | Turns all lowercase characters to small caps | {dimention -tc -sc} | Tʜᴇ_Nᴇᴛʜᴇʀ |
| -nd | -nodashes | Replaces dashes and underscores with spaces | {dimention -tc -nd} | The Nether |
| Flag | Description |
|---|---|
| -p<precision> | How many digits after the period |
| -s<scale> | How much to scale the value by |
| Example (In) | Example (Out) |
|---|---|
| {x} | 156.378 |
| {x -p2} | 156.37 |
| {x -p0} | 156 |
| {stat:walk_one_cm} | 5000 |
| {stat:walk_one_cm -s0.001} | 5 |
| {stat:walk_one_cm -s1/100} | 5 |
| Flag | Flag (long) | Description | Example (In) | Example (Out) |
|---|---|---|---|---|
| -f | -formatted | Uses the formatter for that stat used in the Statistics Screen | {stat:walk_one_cm -f} | 5 km |
v3.0
v2.1
v1.2.3