Moved all files to root.

This commit is contained in:
Pickle
2022-12-02 23:29:01 -05:00
committed by GitHub
parent ef83fba743
commit f70c477c8d
14 changed files with 1054 additions and 0 deletions

88
server/main.lua Normal file
View File

@@ -0,0 +1,88 @@
local Locations = {}
function SetTelevision(coords, key, value, update)
local index, data = GetTelevision(coords)
if (index ~= nil) then
if (Televisions[index] == nil) then
Televisions[index] = {}
end
Televisions[index][key] = value
else
index = os.time()
while Televisions[index] do
index = index + 1
Citizen.Wait(0)
end
if (Televisions[index] == nil) then
Televisions[index] = {}
end
Televisions[index][key] = value
end
Televisions[index].coords = coords
Televisions[index].update_time = os.time()
if (update) then
TriggerClientEvent("ptelevision:event", -1, Televisions, index, key, value)
end
return index
end
function SetChannel(source, data)
if data then
for k,v in pairs(Channels) do
if (Channels[k].source == source) then
return
end
end
local index = 1
while Channels[index] do
index = index + 1
Citizen.Wait(0)
end
Channels[index] = data
Channels[index].source = source
TriggerClientEvent("ptelevision:broadcast", -1, Channels, index)
return
else
for k,v in pairs(Channels) do
if (Channels[k].source == source) then
Channels[k] = nil
TriggerClientEvent("ptelevision:broadcast", -1, Channels, k)
return
end
end
end
end
RegisterNetEvent("ptelevision:requestSync", function(coords)
local _source = source
local index, data = GetTelevision(coords)
TriggerClientEvent("ptelevision:requestSync", _source, coords, {current_time = os.time()})
end)
RegisterNetEvent("ptelevision:event", function(data, key, value)
local _source = source
Config.Events.ScreenInteract(_source, data, key, value, function()
SetTelevision(data.coords, key, value, true)
end)
end)
RegisterNetEvent("ptelevision:broadcast", function(data)
local _source = source
Config.Events.Broadcast(_source, data, function()
SetChannel(_source, data)
end)
end)
RegisterNetEvent("ptelevision:requestUpdate", function()
local _source = source
TriggerClientEvent("ptelevision:requestUpdate", _source, {
Televisions = Televisions,
Channels = Channels
})
end)
AddEventHandler('playerDropped', function(reason)
local _source = source
SetChannel(_source, nil)
end)