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.

15 lines
340 B
C++
Raw Normal View History

2021-05-21 01:16:33 +02:00
#include "backend/looped/looped.hpp"
#include "natives.hpp"
#include "script_global.hpp"
namespace big
{
void looped::self_off_radar()
{
if (g.self.off_radar)
{
2021-07-23 10:12:40 +02:00
*script_global(2426865).at(PLAYER::PLAYER_ID(), 449).at(209).as<bool*>() = true;
*script_global(2441237).at(70).as<int*>() = NETWORK::GET_NETWORK_TIME() + 1;
2021-05-21 01:16:33 +02:00
}
}
}