-
Notifications
You must be signed in to change notification settings - Fork 15
Format Spec
[variable_name=initial_value1[]]
[power_level=5000[]].
[variable_name=initial_value[_] text]
His power level is [power_level=5000[_]].
[variable_name=initial_value[min..max,step2] text]
His power level is [power_level[5000..10000,1000]].
[variable_name=initial_value[0,1]text_0,text_1]
His power level is [power_level=0[0,1]less than 9000.,OVER 9000!!!]
[variable_name[expression]format_specifier text]
His power level is [power_level=5000[5000..10000,1000]]. If your power level is only 7000 his is [your_level[100 * (power_level / 7000)]%0.0 %] more!
[variable_name[condition] text]
His power level is [power_level=5000[5000..10000,1000]]. [warning[power_level > 9000] IT'S OVER 9000!!!]
[variable_name[condition_1,condition_2,...]text_1,text_2,...]
His power level is [power_level=5000[5000..10000,1000]]. It's [warning[(power_level < 8000),(power_level <= 9000),(power_level>9000)]low,almost 9000?!,OVER 9000!!!].
- If initial_value is not specified it will default to the minimum value or 0.
- If the step is not specified it will default to 1.