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()