
Updated natives for 1.50. Added settings JSON implementation. Refactored spawn vehicle bypass to not crash. (removed VMT hook)
26 lines
317 B
C++
26 lines
317 B
C++
#include "common.hpp"
|
|
#include "features.hpp"
|
|
#include "logger.hpp"
|
|
#include "natives.hpp"
|
|
#include "script.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void features::run_tick()
|
|
{
|
|
}
|
|
|
|
void features::script_func()
|
|
{
|
|
while (true)
|
|
{
|
|
TRY_CLAUSE
|
|
{
|
|
run_tick();
|
|
}
|
|
EXCEPT_CLAUSE
|
|
script::get_current()->yield();
|
|
}
|
|
}
|
|
}
|