This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
751 B
C++
Raw Normal View History

#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<uint64_t>&, const std::shared_ptr<command_context> 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);
}