From b357aaac69dc1560c8cceae14065fa403e6614a9 Mon Sep 17 00:00:00 2001 From: Yimura Date: Wed, 5 Jan 2022 22:14:44 +0100 Subject: [PATCH] fea(PlayerInfo): Show wanted level and if player pad has god --- BigBaseV2/src/gui/window/player/player_info.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BigBaseV2/src/gui/window/player/player_info.cpp b/BigBaseV2/src/gui/window/player/player_info.cpp index eca13a26..97b77da6 100644 --- a/BigBaseV2/src/gui/window/player/player_info.cpp +++ b/BigBaseV2/src/gui/window/player/player_info.cpp @@ -23,8 +23,10 @@ namespace big ImGui::Separator(); + ImGui::Text("Wanted Level: %d", player_info->m_wanted_level); + ImGui::Text("Player God Mode: %s", player_info->m_ped->m_godmode ? "Yes" : "No"); ImGui::Text("Vehicle God Mode: %s", - player_info->m_ped->m_vehicle == nullptr ? "No Car Detected" : + player_info->m_ped->m_vehicle == nullptr ? "No vehicle detected" : player_info->m_ped->m_vehicle->m_godmode ? "Yes" : "No" );