TmpMenu/src/backend/looped/vehicle/invisibility.cpp
maybegreat48 ac508dfd61 Bug fixes and improvements (#984)
* feat(KickFromInterior): improve kick from interior

Fixes #968
Fixes #953
Fixes #901
Fixes #899
Fixes #813
Fixes #726
Fixes #723

Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
2023-02-13 20:38:30 +00:00

44 lines
1.1 KiB
C++

#include "backend/looped/looped.hpp"
#include "fiber_pool.hpp"
#include "natives.hpp"
#include "backend/looped_command.hpp"
namespace big
{
class vehinvisibility : looped_command
{
using looped_command::looped_command;
bool last_driving = false;
virtual void on_tick() override
{
if (!PED::GET_PED_CONFIG_FLAG(self::ped, 62, false))
{
if (last_driving)
{
ENTITY::SET_ENTITY_VISIBLE(self::veh, true, 0);
}
last_driving = false;
return;
}
last_driving = true;
ENTITY::SET_ENTITY_VISIBLE(self::veh, false, 0);
if (g.vehicle.localveh_visibility)
NETWORK::SET_ENTITY_LOCALLY_VISIBLE(self::veh);
}
virtual void on_disable() override
{
ENTITY::SET_ENTITY_VISIBLE(self::veh, true, 0);
}
};
vehinvisibility g_vehinvisibility("invisveh", "Vehicle Invisiblity", "Makes your car invisible", g.vehicle.vehinvisibility);
bool_command g_localveh_visibility("localinvisveh", "Visible Locally", "Makes your car visible to yourself, other players will still not be able to see it", g.vehicle.localveh_visibility);
}