TmpMenu/BigBaseV2/src/backend/looped/self/clean_player.cpp
Maddy bfea7e0722 feat: Added suggestions from #64
Added:
* Give All Weapons
* No spread
* No recoil
* Force Crosshair
* Weapon Damage Modifier
* Clean Player & Keep Player Clean
* Invisibility

Modified:
* Welcome notification shows the current hotkey to open menu
* Weapons.h has been updated with the most recent weapons
2022-03-02 14:48:53 +01:00

13 lines
226 B
C++

#include "backend/looped/looped.hpp"
#include "natives.hpp"
#include "util/entity.hpp"
namespace big
{
void looped::self_clean_player()
{
if (g->self.clean_player) {
entity::clean_ped(PLAYER::PLAYER_PED_ID());
}
}
}