Files
ND_Core/server/main.lua
2022-11-14 00:53:37 +01:00

28 lines
782 B
Lua

-- For support join my discord: https://discord.gg/Z9Mxu72zZ6
NDCore = {}
NDCore.Players = {}
NDCore.Functions = {}
NDCore.Config = config
function GetCoreObject()
return NDCore
end
CreateThread(function()
while true do
Wait(30000)
for player, playerInfo in pairs(NDCore.Players) do
local ped = GetPlayerPed(player)
if DoesEntityExist(ped) then
local lastLocation = GetEntityCoords(ped)
playerInfo.lastLocation = {x = lastLocation.x, y = lastLocation.y, z = lastLocation.z}
TriggerClientEvent("ND:updateLastLocation", player, playerInfo.lastLocation)
end
end
end
end)
if GetExport("ox_inventory") then
SetConvarReplicated("inventory:framework", "nd")
end