58 lines
1.2 KiB
Lua
58 lines
1.2 KiB
Lua
local npwd = GetResourceState("npwd"):find("start") and exports.npwd or nil
|
|
|
|
local function checkPhone()
|
|
if not npwd then
|
|
return
|
|
end
|
|
|
|
local phoneItem <const> = ESX.SearchInventory("phone")
|
|
npwd:setPhoneDisabled((phoneItem and phoneItem.count or 0) <= 0)
|
|
end
|
|
|
|
RegisterNetEvent("esx:playerLoaded", checkPhone)
|
|
|
|
AddEventHandler("onClientResourceStart", function(resource)
|
|
if resource ~= "npwd" then
|
|
return
|
|
end
|
|
|
|
npwd = GetResourceState("npwd"):find("start") and exports.npwd or nil
|
|
|
|
if ESX.PlayerLoaded then
|
|
checkPhone()
|
|
end
|
|
end)
|
|
|
|
AddEventHandler("onClientResourceStop", function(resource)
|
|
if resource == "npwd" then
|
|
npwd = nil
|
|
end
|
|
end)
|
|
|
|
ESX.SecureNetEvent("esx:onPlayerLogout", function()
|
|
if not npwd then
|
|
return
|
|
end
|
|
|
|
npwd:setPhoneVisible(false)
|
|
npwd:setPhoneDisabled(true)
|
|
end)
|
|
|
|
ESX.SecureNetEvent("esx:removeInventoryItem", function(item, count)
|
|
if not npwd then
|
|
return
|
|
end
|
|
|
|
if item == "phone" and count == 0 then
|
|
npwd:setPhoneDisabled(true)
|
|
end
|
|
end)
|
|
|
|
ESX.SecureNetEvent("esx:addInventoryItem", function(item)
|
|
if not npwd or item ~= "phone" then
|
|
return
|
|
end
|
|
|
|
npwd:setPhoneDisabled(false)
|
|
end)
|