From 62c3261a00964dce811e418ca20da51da95825b9 Mon Sep 17 00:00:00 2001 From: BlitzOffline <52609756+BlitzOffline@users.noreply.github.com> Date: Sat, 24 Jul 2021 14:00:42 +0300 Subject: [PATCH 1/2] added changeoutput expansion placeholders --- wiki/Placeholders.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/wiki/Placeholders.md b/wiki/Placeholders.md index 1e86b82..976d71e 100644 --- a/wiki/Placeholders.md +++ b/wiki/Placeholders.md @@ -26,6 +26,7 @@ If the command itself isn't there and `NO DOWNLOAD COMMAND` instead is shown, th - ### **C** - **[CalculateNumbers](#calculatenumbers)** + - **[ChangeOutput](#changeoutput)** - **[CheckItem](#checkitem)** - **[CooldownBar](#cooldownbar)** @@ -522,6 +523,33 @@ A majority of these Expansions are maintained by the PlaceholderAPI team and can ---- +- ### **ChangeOutput** + > /papi ecloud download changeitem + + Alows you to change the output based on what other placeholders return + + ``` + %changeoutput_____% + ``` + + * \ + * equals - match the input exactly + * ignorecase - match the input while ignoring cases + * ignorecolor - match the input while ignoring colour codes + * contains - check if the match contains input + * \>= - check if the input is larger than or equal to the matcher + * \> - check if the input is larger than the matcher + * <= - check if the input is less than or equal to the matcher + * < - check if the input is less than the matcher + * \ - this is your text that you wish to replace + * \ - this is the text we will be looking for to meet the conditions + * \ - if the input meets the condition, this text will be displayed + * \ - if the input does not meet the condition, this text will be displayed instead + + *All arguments can be replaced with other placeholders, wrapped in* `{}` + +---- + - ### **CheckItem** > /papi ecloud download CheckItem From 33c309ee8e91e1efd8c6e93d133fb755cb2c20d5 Mon Sep 17 00:00:00 2001 From: BlitzOffline <52609756+BlitzOffline@users.noreply.github.com> Date: Sat, 24 Jul 2021 14:17:14 +0300 Subject: [PATCH 2/2] used inline code instead --- wiki/Placeholders.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wiki/Placeholders.md b/wiki/Placeholders.md index 976d71e..60b481b 100644 --- a/wiki/Placeholders.md +++ b/wiki/Placeholders.md @@ -532,7 +532,7 @@ A majority of these Expansions are maintained by the PlaceholderAPI team and can %changeoutput_____% ``` - * \ + * `` * equals - match the input exactly * ignorecase - match the input while ignoring cases * ignorecolor - match the input while ignoring colour codes @@ -541,10 +541,10 @@ A majority of these Expansions are maintained by the PlaceholderAPI team and can * \> - check if the input is larger than the matcher * <= - check if the input is less than or equal to the matcher * < - check if the input is less than the matcher - * \ - this is your text that you wish to replace - * \ - this is the text we will be looking for to meet the conditions - * \ - if the input meets the condition, this text will be displayed - * \ - if the input does not meet the condition, this text will be displayed instead + * `` - this is your text that you wish to replace + * `` - this is the text we will be looking for to meet the conditions + * `` - if the input meets the condition, this text will be displayed + * `` - if the input does not meet the condition, this text will be displayed instead *All arguments can be replaced with other placeholders, wrapped in* `{}`