mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 06:47:22 +08:00
18 lines
350 B
C++
18 lines
350 B
C++
#include "features.hpp"
|
|
#include "script_global.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void features::spoof_rank()
|
|
{
|
|
bool bSpoofRank = g_settings.options["spoof_rank"].get<bool>();
|
|
|
|
if (bSpoofRank)
|
|
{
|
|
QUEUE_JOB_BEGIN_CLAUSE()
|
|
{
|
|
features::functions::spoof_rank(g_settings.options["rank"].get<int>());
|
|
}QUEUE_JOB_END_CLAUSE
|
|
}
|
|
}
|
|
} |