feat: add Pick placeholder for random selection from list

This commit is contained in:
2025-12-01 23:58:27 -06:00
parent a45b56fa93
commit cfef4fd73d
5 changed files with 88 additions and 64 deletions

View File

@@ -25,3 +25,7 @@ Get a random word from a WordList. can be used as a Macro or a Placeholder. Macr
### Shuffle
Shuffle a list of values. can be used as Placeholder only. Placeholder format: `%%Shuffle::Value1::Value2::Value3;;separator%%`. Example: `%%Shuffle::Value1::Value2::Value3;;, %%` will return `Value3, Value1, Value2`.
### Pick
Pick a random value from a list of values. can be used as Placeholder only. Placeholder format: `%%Pick::Value1::Value2::Value3%%`. Example: `%%Pick::Red::Blue::Green%%` will return one of `Red`, `Blue`, or `Green` randomly.