Mate, the actual price is $14.99.
It handles database extraction, auto-scheduling, auto-deletion, max file limits and much more.
AI doesn’t magically build, test, and support working systems for your server.
Revo Backup already includes features like auto cleanup after set days and a max backup limit to manage disk space — plus you can freely set custom intervals (daily, weekly, or whenever you want).
Regarding full server file backups: our original idea did include server files (resources, configs, etc.), but unfortunately FiveM doesn’t allow scripts to access or read files outside their own (root) folder, so it’s technically impossible due to platform restrictions.
Furthermore, We are planning to add an option to automatically send database backups to a Discord channel via webhook in a future update.
It’s good to know that Revo Backup already handles auto-cleanup, max backup limits, and flexible scheduling — that covers a lot of the core needs.
Regarding full server file backups, I understand the FiveM limitations make it tricky. Using a C# program or a Discord bot to manage full server backups could definitely be a viable workaround, especially for users with Windows VPS setups, where they can specify their own backup paths (e.g., C:\FiveMServer).
The planned Discord webhook for database backups sounds excellent. Due to Discord size restrictions, it might also be worth considering alternatives like Gofile - Cloud Storage Made Simple
for storing larger backups.
Overall, the direction looks solid, excited to see the webhook feature implemented!
Yeah, using an external C# tool or a custom Discord bot is definitely a solid workaround for full server backups.
Good point about Discord’s upload limits — though large .sql files are pretty rare, we’ll still consider adding support for other cloud options if needed.
Glad you liked the direction, really appreciate it!
Don’t think he was attacking you or saying everyone should use AI. His point was just that the price seems too high for triggering mysqldump or using a cron job.
If it’s 15 bucks, show what the customer actually gets.
Also, 2000+ lines sounds a lot, did you count things like the basic HTML structure? What do these 2000+ lines do? Is that really 2000 lines or 200 lines written on 2000 lines? These are the questions we ask ourselves.
Still, the UI looks nice and well-structured, and it could really help servers, especially PLs without technical knowledge.
Thanks for the feedback - really appreciate the constructive question!
You’re absolutely right - if this were just calling mysqldump or wrapping a cron job, $15 would be steep. But FiveM doesn’t allowos.execute() for mysqldump, so we built a complete backup system from scratch using oxmysql. It manually queries tables, extracts structures, fetches all data, handles escaping, timestamps, and transactions, and generates mysqldump-compatible SQL files with proper headers, foreign key handling, and transaction blocks — essentially a full reimplementation of mysqldump within FiveM’s constraints. (That single dump function alone is 192 lines!)
The 2,000+ lines aren’t fluff - just server.lua (with features like auto-scheduling, auto-deletion, max file limits, metadata management, file validation/orphan recovery, txAdmin command integration, and NUI with config persistence) is around 1,100 lines. Add the client logic and React NUI, and it totals about 2,000. Everything’s designed so even non-technical server owners can manage backups safely and visually.
The value isn’t in the line count - it’s in solving a real FiveM limitation while keeping it plug-and-play and reliable. Still, always open to feedback on how to make it even better.