Expressions Provider

⭐ — (9 endorsements) 📥 2,250 downloads 📌 v2.0.0 📅 3/22/2023
🟠 Updated over a year ago

By 4drian3d · fabric

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 9/13/2025 📅 Created: 3/22/2023

🔍 Analysis

  • 👍 0.4% endorsement rate
  • 🏆 #78 of 99 fabric mods in this game by downloads

📋 About This Mod

# Expressions-Provider Add MiniPlaceholders placeholders for complex mathematical and text expressions. ## Installation - Install MiniPlaceholders - Install this project in the mods or plugins folder, depending on the platform you use ## Placeholders ### Basic Operations - **Addition** | `<expr_add:n1:n2:...:nX>` - `<expr_add:5:2:3>` == 10 - **Subtraction** | `<expr_sub:n1:n2>` - `<expr_sub:10:3>` == 7 - **Multiplication** | `<expr_mul:n1:n2:...:nX>` - `<expr_mul:5:2:3:6>` == 180 - **Division** | `<expr_div:n1:n2>` - `<expr_div:10:5>` == 2 - **Division remainder** `<expr_mod:n1:n2>` - `<expr_mod:5:2>` == 1 - **Negation** | `<expr_neg:n>` - `<expr_neg:5>` == -5 - `<expr_neg:-5>` == 5 ### Round - **Round down to integer** | `<expr_floor:n>` - `<expr_floor:5.05>` == 5 - `<expr_floor:2.9>` == 2 - **Round to nearest integer** | `<expr_round:n>` - `<expr_floor:5.05>` == 5 - `<expr_floor:2.9>` == 3 - **Round up to integer** | `<expr_ceil:n>` - `<expr_floor:5.05>` == 6 - `<expr_floor:2.9>` == 3 - **Get the lowest-valued number** | `<expr_min:n1:n2:...:nX>` - `<expr_min:5:10:15:2:500:9:69>` == 2 - **Get the highest-valued number** | `<expr_max:n1:n2:...:nX>` - `<expr_max:5:10:15:2:500:9:69>` == 500 - **A random number from 0 to 1** | `<expr_random>` | Acts like `<expr_random:0:1:0.01>` - `<expr_random>` == 0.15 - **A random integer from `min` to `max`** | `<expr_random:min:max>` | Acts like `<expr_random:min:max:1>` - `<expr_random:1:100>` == 69 - **A random number from `min` to `max` with a step of `step`** | `<expr_random:min:max:step>` - `<expr_random:50:10:0.25>` == 68.75 ### String Operations - **Concat strings** | `<expr_concat:s1:s2:...:sN>` - `<expr_concat:hello:_:world>` == "hello_world" - **Create a substring of `s` from `n1` to `n2` character** | `<expr_substring:s:n1:n2>` - `<expr_substring:hello:2:4>` == "ll" - **Get length of the string** | `<expr_length:s>` - `<expr_length:hello>` == 5 - **Format a string using (https://www.javatpoint.com/java-string-format)** | `<expr_format:format:arg1:arg2:...:argX>` | *It may be useful for (#User-expressions)* - `<expr_format:'%s is not a %s':4drian3d:fruit>` == "4drian3d is not a fruit" - **Displays `r1` if `o1` and `o2` are same. Otherwise, displays `rs`** | `<expr_if:o1:o2:r1:r2>` - `<expr_if:1:2:Equals:NotEquals>` == "NotEquals" - **Sets `text` placeholders for a player with `uuid`.** | `<expr_player:uuid:text>` - `<expr_player:4drian3dUUID:<player_name>>` == 4drian3d - **Sets `text` placeholders for a player with `name`.** | `<expr_player:name:text>` - `<expr_player:4drian3d:<player_ping>>` == 42 - **Expand to a (#User-expressions)** | `<expr_user:name:arg1:arg2:...:argX>` ## User expressions You can create your own expression shortcut in expressions.properties using our Expression Provider Language (EPL): `add_and_multiply=<expr_add:"<arg1>":"<expr_mul:'<arg2>':'<arg3>'>">` means `<expr_user:add_and_multiply:arg1:arg2:arg3>` will be evaluated to `arg1 + (arg2 * arg3)`. So, `<expr_user:add_and_multiply:2:3:4>` evaluates to `<expr_add:2:'<expr_mul:3:4>'>`, which is `2 + (3 * 4) = 14` ### Example user expressions - `<expr_user:remove_first:s:n>` - Remove `n` first characters from `s` (`hello`, `2` -> `llo`), EPL: `remove_first=<expr_substring:"<arg1>":"<arg2>":"<expr_length:'<arg1>'>">` - `<expr_user:remove_last:s:n>` - Remove `n` last characters from `s` (`hello`, `2` -> `hel`), EPL: `remove_last=<expr_substring:"<arg1>":0:"<expr_sub:'<expr_length:"<arg1>">':'<arg2>'>">` - `<expr_user:decimals:n:decimals>` - format a number (`1.234567`, `2` -> `1.23`), EPL: `decimals=<expr_format:"<expr_concat:'%.0':'<arg2>':'f'>":"<arg1>">` - `<expr_user:pad_integer:n:length>` - pad an integer with zeros (`12`, `3` -> `012`), EPL: `pad_integer=<expr_format:"<expr_concat:'%0':'<arg1>':'d'>":"<arg2>">` ## Nesting Expressions can be nested. Try `/miniplaceholders parse me <expr_add:1:"<expr_add:1:'<expr_add:1:"<expr_add:1:'<expr_add:1:0>'>">'>">` ## Downloads (https://raw.githubusercontent.com/Prospector/badges/master/modrinth-badge-72h-padded.png)](https://modrinth.com/plugin/expressions-expansion) (https://www.bisecthosting.com/partners/custom-banners/6fa909d5-ad2b-42c2-a7ec-1c51f8b6384f.webp)](https://www.bisecthosting.com/4drian3d)

# Expressions-Provider Add MiniPlaceholders placeholders for complex mathematical and text expressions.

## Installation - Install MiniPlaceholders - Install this project in the mods or plugins folder, depending on the platform you use

## Placeholders ### Basic Operations - Addition | `` - `` == 10 - Subtraction | `` - `` == 7 - Multiplication | `` - `` == 180 - Division | `` - `` == 2 - Division remainder `` - `` == 1 - Negation | `` - `` == -5 - `` == 5 ### Round - Round down to integer | `` - `` == 5 - `` == 2 - Round to nearest integer | `` - `` == 5 - `` == 3 - Round up to integer | `` - `` == 6 - `` == 3 - Get the lowest-valued number | `` - `` == 2 - Get the highest-valued number | `` - `` == 500 - A random number from 0 to 1 | `` | Acts like `` - `` == 0. 15 - A random integer from `min` to `max` | `` | Acts like `` - `` == 69 - A random number from `min` to `max` with a step of `step` | `` - `` == 68. 75

### String Operations - Concat strings | `` - `` == "hello_world" - Create a substring of `s` from `n1` to `n2` character | `` - `` == "ll" - Get length of the string | `` - `` == 5 - *Format a string using (https://www.javatpoint.com/java-string-format)** | `` | It may be useful for (#User-expressions) - `` == "4drian3d is not a fruit" - Displays `r1` if `o1` and `o2` are same. Otherwise, displays `rs` | `` - `` == "NotEquals" - Sets `text` placeholders for a player with `uuid`. | `` - `>` == 4drian3d - Sets `text` placeholders for a player with `name`. | `` - `>` == 42 - Expand to a (#User-expressions) | ``

## User expressions You can create your own expression shortcut in expressions.properties using our Expression Provider Language (EPL):

`add_and_multiply=":"':''>">` means `` will be evaluated to `arg1 + (arg2 arg3)`. So, `` evaluates to `'>`, which is `2 + (3 * 4) = 14`

### Example user expressions - `` - Remove `n` first characters from `s` (`hello`, `2` -> `llo`), EPL: `remove_first=":"":"'>">` - `` - Remove `n` last characters from `s` (`hello`, `2` -> `hel`), EPL: `remove_last=":0:"">':''>">` - `` - format a number (`1. 234567`, `2` -> `1. 23`), EPL: `decimals=':'f'>":"">` - `` - pad an integer with zeros (`12`, `3` -> `012`), EPL: `pad_integer=':'d'>":"">`

## Nesting Expressions can be nested. Try `/miniplaceholders parse me '>">'>">`

## Downloads [![](https://raw.githubusercontent.com/Prospector/badges/master/modrinth-badge-72h-padded.png)](https://modrinth.com/plugin/expressions-expansion)

[![](https://www.bisecthosting.com/partners/custom-banners/6fa909d5-ad2b-42c2-a7ec-1c51f8b6384f.webp)](https://www.bisecthosting.com/4drian3d)

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
4drian3d
Version
2.0.0
Downloads
2,250
Endorsements
9
Category
fabric
Created
3/22/2023
Updated
9/13/2025
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
Tags
utility

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does Expressions Provider support?

The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of Expressions Provider?

Version 2.0.0, published 2025-09-13 with 2,250 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More fabric 👤 More by 4drian3d 🔎 Similar Mods 🌐 Best fabric (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods