From 1217af1824e3a3c4374ea6e24e1fa9595459c2f6 Mon Sep 17 00:00:00 2001 From: wilderop <60115247+wilderop@users.noreply.github.com> Date: Fri, 22 Nov 2024 09:38:22 -0800 Subject: [PATCH] Add advanced placeholder examples in README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fa0aef..f5dc73a 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,12 @@ e.g. ```yml placeholderapi-placeholders: allowflight: "%player_allow_flight%" + spawnx: "%math_{player_x}<501%" + spawnz: "%math_{player_z}<501%" + spawnnegx: "%math_{player_x}>-501%" + spawnnegz: "%math_{player_z}>-501%" ``` > allowflight=true -___ \ No newline at end of file +___