For those people who have issues AND using Kashacters:
Open the client/client.lua and around line 580 you change it with the following
AddEventHandler('es:allowedToSpawn', function()
SendNUIMessage({ action = 'ui', config = Config.ui })
SendNUIMessage({ action = 'setFont', url = Config.font.url, name = Config.font.name })
SendNUIMessage({ action = 'setLogo', value = Config.serverLogo })
if Config.ui.showVoice == true then
if Config.voice.levels.current == 0 then
NetworkSetTalkerProximity(Config.voice.levels.default)
elseif Config.voice.levels.current == 1 then
NetworkSetTalkerProximity(Config.voice.levels.shout)
elseif Config.voice.levels.current == 2 then
NetworkSetTalkerProximity(Config.voice.levels.whisper)
end
end
end)
AddEventHandler('es:allowedToSpawn', function()
if Config.ui.showVoice == true then
NetworkSetTalkerProximity(5.0)
end
HideHudComponentThisFrame(7) -- Area
HideHudComponentThisFrame(9) -- Street
HideHudComponentThisFrame(6) -- Vehicle
HideHudComponentThisFrame(3) -- SP Cash
HideHudComponentThisFrame(4) -- MP Cash
HideHudComponentThisFrame(13) -- Cash changes!
end)