⚡ Engage your players! Auto-run server-wide micro-challenges. Beautiful Visuals & No Setup Required. [1.20+]
Stop player boredom and ignite the competitive spirit on your server!
PulseQuest is a fully automated, server-wide micro-event system designed to keep players active and engaged. Instead of complex event plugins that require manual setup, PulseQuest runs quietly in the background and periodically challenges your players to quick, fun competitions.
"Who can mine the most blocks in 3 minutes?"
"Who can catch the most fish?"
"Who can run the furthest distance?"
With beautiful BossBars, real-time ActionBars, and a robust reward system, PulseQuest turns ordinary gameplay into an exciting event.
/pq start Starts a random quest immediately. pulsequest.admin
/pq start
/pq stop Forces the current quest to end. pulsequest.admin
/pq reload Reloads the configuration and messages. pulsequest.admin
Aliases: /pulsequest, /quest, /pq
PulseQuest is designed to be "Plug & Play", but every aspect is configurable to fit your server's economy.
# =============================================================================
# PulseQuest - Configuration
# Version: 1.0.0
#
# Engage your players with Instant Micro-Challenges!
# =============================================================================
# -----------------------------------------------------------------------------
# [Settings] General Plugin Settings
# -----------------------------------------------------------------------------
settings:
# How many seconds between automatic quests?
# (900 = 15 min)
auto-start-interval: 900
# Minimum players required to start an auto-quest.
min-players: 2
# -----------------------------------------------------------------------------
# [Database] Storage Settings
# -----------------------------------------------------------------------------
database:
# Storage Type: "sqlite" (Local file) or "mysql" (External DB)
type: "sqlite"
# MySQL Settings (Only if type is mysql)
host: "localhost"
port: 3306
database: "minecraft"
username: "root"
password: "password"
table-prefix: "pq_"
# -----------------------------------------------------------------------------
# [Rewards] Participation Rewards
# -----------------------------------------------------------------------------
# Rewards given to players who participated (score > 0) but didn't win.
participation-rewards:
enabled: true
commands:
- "give %player% cookie 1"
- "xp give %player% 50"
# -----------------------------------------------------------------------------
# [Quests] Game Configuration
# -----------------------------------------------------------------------------
quests:
mining:
enabled: true
duration: 180
rewards:
- "give %player% diamond 3"
- "eco give %player% 500"
- "broadcast &a%player% won the Mining Rush!"
fishing:
enabled: true
duration: 300
rewards:
- "give %player% cooked_cod 32"
traveler:
enabled: true
duration: 180
rewards:
- "give %player% leather_boots 1"
- "effect give %player% speed 300 1"
# ... (All 11 quests are configurable)