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.
YimMenu/BigBaseV2/src/features.cpp

40 lines
554 B
C++
Raw Normal View History

2019-03-21 20:18:31 +01:00
#include "features.hpp"
#include "logger.hpp"
#include "natives.hpp"
#include "script.hpp"
namespace big
{
void features::run_tick()
{
g_playerId = PLAYER::PLAYER_ID();
update_player_structs();
update_screen_sizes();
god_mode();
join_message();
never_wanted();
no_bike_fall();
no_idle_kick();
no_ragdoll();
off_radar();
spoof_rank();
sticky_tyres();
super_sprint();
2019-03-21 20:18:31 +01:00
}
void features::script_func()
{
while (true)
{
TRY_CLAUSE
{
run_tick();
}
EXCEPT_CLAUSE
2019-03-21 20:18:31 +01:00
script::get_current()->yield();
}
}
}