structura foldere

mutat kq- folders in un singur folder [kq]
This commit is contained in:
2026-03-30 01:55:03 +03:00
parent af1286d583
commit c291b81f26
2319 changed files with 0 additions and 14 deletions
@@ -0,0 +1,22 @@
local salty = exports['saltychat']
RegisterNetEvent('phone:addToCall', function(callId)
local src = source
if Config.Voice == 'salty' then
salty:AddPlayerToCall(tostring(callId), src)
end
end)
RegisterNetEvent('phone:removeFromCall', function(callId)
local src = source
if Config.Voice == 'salty' then
salty:RemovePlayerFromCall(tostring(callId), src)
end
end)
RegisterNetEvent('phone:toggleSpeaker', function(enabled)
local src = source
if Config.Voice == 'salty' then
salty:SetPhoneSpeaker(src, enabled == true)
end
end)