
KeyAll is an advanced per-player timed key distribution system for Minecraft servers. It tracks individual player playtime and automatically distributes keys or executes commands at specified intervals for each player independently.
KeyAll is an advanced per-player timed key distribution system for Minecraft servers. It tracks individual player playtime and automatically distributes keys or executes commands at specified intervals for each player independently.
plugins folderplugins/KeyAll/config.yml| Command | Description | Permission |
|---|---|---|
/keyall create <name> <interval> "<command>" [permission] |
Create a new KeyAll event | keyall.admin |
/keyall delete <name> |
Delete a KeyAll event | keyall.admin |
/keyall pause <name> |
Pause a KeyAll event | keyall.admin |
/keyall resume <name> |
Resume a paused KeyAll event | keyall.admin |
/keyall list |
List all KeyAll events | keyall.admin |
/keyall info <name> |
View detailed info about a KeyAll event | keyall.admin |
/keyall reload |
Reload the plugin configuration | keyall.admin |
# Create a common key that gives every hour
/keyall create common_key 60m "crates give key %playername% 1 commonkey"
# Create a rare key for VIP players every 3 hours
/keyall create rare_key 3h "crates give key %playername% 1 rarekey" keyall.vip
# Create a daily reward with multiple commands
/keyall create daily_reward 24h "eco give %playername% 5000" none
/keyall create daily_bonus 24h "give %playername% diamond 5" none
# Delete a KeyAll event
/keyall delete common_key
# Pause and resume
/keyall pause rare_key
/keyall resume rare_key
Use these suffixes for time intervals:
s = seconds (e.g., 30s = 30 seconds)m = minutes (e.g., 60m = 60 minutes)h = hours (e.g., 2h = 2 hours)d = days (e.g., 1d = 1 day)Requires PlaceholderAPI to be installed.
| Placeholder | Description | Example Output |
|---|---|---|
%keyall_time_<name>% |
Time remaining in formatted text | 1h 30m |
%keyall_seconds_<name>% |
Seconds remaining | 5400 |
%keyall_minutes_<name>% |
Minutes remaining | 90 |
%keyall_hours_<name>% |
Hours remaining | 1 |
Example Usage:
%keyall_time_common_key% → "45m 30s"
%keyall_time_rare_key% → "2h 15m"
%keyall_minutes_daily_reward% → "120"
keyalls:
keyall:
interval: 10s
commands:
- "crates give key %playername% 1 keyall"
- '[click] /warp Crates'
- '[message] &7You got a key! &5&lClick Here&r &7 to warp to crates area'
permission: none
paused: false
vip_key:
interval: "2h"
commands:
- "crates give key %playername% 1 vipkey"
- "broadcast &e%playername% &areceived a VIP key!"
permission: "keyall.vip"
paused: false
common_key interval is 1 hourkeyall.admin - Access to all KeyAll commands (default: op)Player data is stored in plugins/KeyAll/playerdata/<uuid>.yml and includes:
Data is automatically saved when players leave and persists across server restarts.
For issues, suggestions, or contributions:
KeyAll - Making key distribution fair and per-player! 🔑