-
Notifications
You must be signed in to change notification settings - Fork 0
PlaceholderAPI
This feature require server install PREMIUM version of UltimateShop or MythicTotem or MythicPrefixes or MythicChanger to active!
EconomyLimit includes built-in PlaceholderAPI expansion support.
If PlaceholderAPI is installed, the plugin will automatically register its placeholders without requiring a separate expansion download.
These placeholders can be used in:
- Scoreboards
- TAB
- Holograms
- Chat formats
- GUI text
- Any other plugin that supports
PlaceholderAPI
-
Vaultinstalled -
PlaceholderAPIinstalled -
EconomyLimitinstalled
If PlaceholderAPI is not installed on the server, these placeholders will not work.
EconomyLimit automatically checks for PlaceholderAPI when the plugin loads.
If PlaceholderAPI is found, the expansion is registered automatically.
You do not need to run:
/papi ecloud download ...
/papi reload
In most cases, restarting the server or reloading EconomyLimit is enough.
%economylimit_bank_balance%
%economylimit_bank%
Returns the player's current virtual bank balance.
%economylimit_rule_<ruleId>_name%
Examples:
%economylimit_rule_daily_name%
%economylimit_rule_weekly_name%
Returns the rule display name.
If your rule uses:
display-name: "{lang:rules.daily.name}"then this placeholder will return different text depending on the player's selected language.
%economylimit_rule_<ruleId>_earned%
%economylimit_rule_<ruleId>_progress%
%economylimit_rule_<ruleId>_current%
Example:
%economylimit_rule_daily_earned%
Returns how much the player has earned in the current cycle of that rule.
%economylimit_rule_<ruleId>_limit%
Example:
%economylimit_rule_daily_limit%
Returns the player's current earning cap for that rule.
If that rule is unlimited for the player, it returns status.unlimited from the language file.
%economylimit_rule_<ruleId>_remaining%
Example:
%economylimit_rule_daily_remaining%
Returns how much the player can still earn in the current cycle of that rule.
%economylimit_rule_<ruleId>_next_reset%
%economylimit_rule_<ruleId>_reset%
Examples:
%economylimit_rule_daily_next_reset%
%economylimit_rule_weekly_reset%
Returns the next reset time of that rule.
If the rule does not reset, it returns status.never from the language file.
The <ruleId> in placeholders is the rule node name from your config.yml.
Example:
rules:
daily:
display-name: "{lang:rules.daily.name}"
weekly:
display-name: "{lang:rules.weekly.name}"The rule IDs here are:
dailyweekly
- Money placeholders use the plugin's internal money formatting, such as
1000,1000.5, or1000.55 - Time placeholders use this format:
yyyy-MM-dd HH:mm
Example:
2026-03-15 00:00
- Unlimited rules return
status.unlimited - Rules that never reset return
status.never
If you want players using different languages to see different rule names, configure it like this:
rules:
daily:
display-name: "{lang:rules.daily.name}"rules:
daily:
name: "Daily earnings"rules:
daily:
name: "每日收益"Then:
%economylimit_rule_daily_name%
will return different content depending on the player's language.
Bank: %economylimit_bank_balance%
Daily earned: %economylimit_rule_daily_earned%
Daily remaining: %economylimit_rule_daily_remaining%
Daily reset: %economylimit_rule_daily_next_reset%
%player_name%
Bank: %economylimit_bank%
Daily earnings: %economylimit_rule_daily_progress% / %economylimit_rule_daily_limit%
If a placeholder does not return anything, check:
- Whether
PlaceholderAPIis installed - Whether
EconomyLimitis enabled correctly - Whether the rule ID matches
config.ymlexactly - Whether the placeholder name is spelled correctly
- Whether the target plugin supports
PlaceholderAPI
%economylimit_bank_balance%
%economylimit_bank%
%economylimit_rule_<ruleId>_name%
%economylimit_rule_<ruleId>_earned%
%economylimit_rule_<ruleId>_progress%
%economylimit_rule_<ruleId>_current%
%economylimit_rule_<ruleId>_limit%
%economylimit_rule_<ruleId>_remaining%
%economylimit_rule_<ruleId>_next_reset%
%economylimit_rule_<ruleId>_reset%