MBRewardOnline
1 / 7






๐ MBRewardOnline
MBRewardOnline is a flexible Rust (uMod/Oxide) plugin that rewards players for real time spent online.
It supports multiple currencies at the same time, permission-based rewards, time accumulation, and persistent data storage.
Perfect for servers that want to encourage active play instead of AFK farming.
ย
ย
โจ Features
- โฑ Rewards for real online time
- ๐พ Persistent data storage (progress is saved between restarts)
- ๐ Permission-based rewards
- ๐ฐ Multiple currencies per permission
- ๐ Automatic timer reset after reward
- ๐ Clean data structure (MBSystem/MBRewardOnline)
- โ๏ธ Fully configurable via config
- ๐งฑ Clean, optimized code (no heavy API dependencies)
ย
๐ฐ Supported Economy Systems
- MBCoins (mb.give)
- Economics (economics.deposit)
- ServerRewards (sr add)
๐ A single permission can reward multiple currencies at once
Example: 100 MBCoins + 50 Economics + 25 ServerRewards
๐ Permissions
mbrewardonline.premium mbrewardonline.vip mbrewardonline.default
โ ๏ธ Permission priority is defined by config order
(the first matching permission is used)
โ๏ธ Example Configuration
{ "Reward Interval (Minutes)": 10, "Permission Rewards (permission => economy => amount)": { "mbrewardonline.premium": { "MBCoins": 100, "Economics": 50, "ServerRewards": 25 }, "mbrewardonline.vip": { "MBCoins": 50, "Economics": 25, "ServerRewards": 10 }, "mbrewardonline.default": { "MBCoins": 20 } } }
๐ Data Storage
Player data is saved to:
oxide/data/MBSystem/MBRewardOnline/MBRewardOnline.json
Stored data:
- accumulated online minutes
- progress persists through restarts
ย
๐ง How It Works
- Player joins โ data entry is created
- Every minute online is counted
- When the interval is reached โ rewards are given
- Timer resets and starts counting again
ย
๐ Requirements
uMod / Oxide
- (Optional) Economics
- (Optional) ServerRewards
- MBCoins (if using that economy)
ย
๐ Planned Features
- /online command
- UI progress bar
- Data reset on wipe
- Reward multipliers (e.g. x2 on weekends)
ย
๐ค Author
- Barry_Allenn
- ๐ฌ Discord:ย https://discord.gg/6b5tkpDb57
- Part of the MBSystem plugin ecosystem.