Removed Show Dot Above Player

This commit is contained in:
ElPumpo
2019-07-20 14:34:13 +02:00
parent ef5c9e19b4
commit 63bdd6daef
2 changed files with 0 additions and 18 deletions
-17
View File
@@ -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()
-1
View File
@@ -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)