#include "backend/command.hpp" #include "natives.hpp" namespace big { class recovery : command { using command::command; virtual CommandAccessLevel get_access_level() override { return CommandAccessLevel::NONE; } virtual void execute(const std::vector&, const std::shared_ptr ctx) { ctx->report_error("Money and recovery options are not supported in YimMenu to keep Rockstar/Take Two happy. You can try Kiddion's Modest Menu (free) instead, but make sure to only get it from UnknownCheats.me, the rest are scams and may contain malware"); } }; recovery g_money("money", "", "", 0); recovery g_cash("cash", "", "", 0); recovery g_drop("drop", "", "", 0); recovery g_stats("stats", "", "", 0); }