
EventBooster is a server-side event manager for timed global XP boosts on Hytale servers. Start double-XP weekends, happy hours, or custom boost events with simple admin commands no manual config edits required.
The mod tracks active boost windows, broadcasts start/end messages to players, and applies XP multipliers through optional integrations with popular leveling mods.
Built for server owners who want scheduled or on-demand XP events without touching leveling config files every time.
Main Features
- Timed XP boost events — start boosts with a multiplier and duration (minutes)
- Multiple active boosts — stack boosts by id (combined up to a configurable cap)
- World filter — optional per-world boosts
- Player notifications — broadcast on start/end, join reminder, periodic reminders
- Admin commands — start, stop, status, reload
- Public API — other mods can read the active XP multiplier
- Optional integrations — auto-detects and hooks into compatible leveling mods at runtime
- Lightweight — no asset pack, no client install required
How It Works
EventBooster does not replace a leveling system. It manages boost events and tells compatible mods to multiply XP while an event is active.
- Without a leveling mod: commands, status, broadcasts, and timers still work but player XP will not change in-game.
- With a compatible leveling mod: XP from kills, skills, quests, etc. is multiplied during the active boost window.
Compatible Integrations (Optional)
- RPG Leveling and Stats — primary integration; hooks XP gain events
- HyRPGCore — XP multiplier via reflection bridge
- VKCraft (Simple Leveling System) — XP multiplier via reflection bridge
- PartyPro — optional HUD indicator during active boosts; party XP share benefits automatically when used with RPG Leveling
Integrations are optional. EventBooster loads and runs without them.
Installation
- Download EventBooster-x.x.x.jar from the Files tab
- Place the JAR in your server's mods/ folder
- Start the server, config is generated at plugins/EventBooster/config/config.json
- Grant admin permissions and run /eventboost start 2 60 to test
Recommended setup for full XP boosts: EventBooster + RPG Leveling and Stats
Commands
Main command: /eventboost (aliases: /eb, /boost, /eventbooster)
Use /eventboost help for the in-game list.
Admin:
- /eventboost start <multiplier> <minutes> [id] [world] [label] — Start a timed XP boost
- /eventboost stop [id|all] — Stop a boost (default id: global)
- /eventboost reload — Reload config
Player / staff:
- /eventboost status — Show all active boosts and remaining time
Examples: /eventboost start 2 120 /eventboost start 2 120 weekend "2x XP Weekend" /eventboost start 1.5 60 mining world_mine "Mining Happy Hour" /eventboost stop weekend /eventboost stop all /eventboost status
If you want to see the permissions and commands and more, please visit this website: DurkzPRG Mods
Public API (for mod developers)
if (EventBoosterAPI.isAvailable()) { double multiplier = EventBoosterAPI.get().getExperienceMultiplier(); }
Verifying It Works
- Check server log for: EventBooster started. Active integrations: …
- Run /eventboost start 2 10 then /eventboost status
- For real XP doubling, install RPG Leveling and Stats and compare XP before/after a boost
DEPENDENCIES
- RPG Leveling and Stats
- HyRPGCore
- VKCraft (Simple Leveling System)
- PartyPro