From 63bdd6daef734c9478ca569926c3f33dd657b748 Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Sat, 20 Jul 2019 14:34:13 +0200 Subject: [PATCH] Removed Show Dot Above Player --- client/main.lua | 17 ----------------- config.lua | 1 - 2 files changed, 18 deletions(-) diff --git a/client/main.lua b/client/main.lua index d7bb1f43..f04422d7 100644 --- a/client/main.lua +++ b/client/main.lua @@ -465,23 +465,6 @@ Citizen.CreateThread(function() end end) --- Dot above head -if Config.ShowDotAbovePlayer then - Citizen.CreateThread(function() - while true do - Citizen.Wait(1) - - local players = ESX.Game.GetPlayers() - for i = 1, #players, 1 do - if players[i] ~= PlayerId() then - local ped = GetPlayerPed(players[i]) - local headId = CreateMpGamerTag(ped, ('ยท'), false, false, '', false) - end - end - end - end) -end - -- Disable wanted level if Config.DisableWantedLevel then Citizen.CreateThread(function() diff --git a/config.lua b/config.lua index 223afade..453d052a 100644 --- a/config.lua +++ b/config.lua @@ -5,7 +5,6 @@ Config.Accounts = { 'bank', 'black_money' } Config.AccountLabels = { bank = _U('bank'), black_money = _U('black_money') } Config.EnableSocietyPayouts = false -- pay from the society account that the player is employed at? Requirement: esx_society -Config.ShowDotAbovePlayer = false Config.DisableWantedLevel = true Config.EnableHud = true -- enable the default hud? Display current job and accounts (black, bank & cash)