1
0
Fork 0
forked from Simnation/Main

neues consumables

This commit is contained in:
Nordi98 2025-06-17 17:38:06 +02:00
parent 9d9a5c919b
commit fbaf832f92
49 changed files with 3321 additions and 0 deletions

View file

@ -0,0 +1,49 @@
if GetResourceState('ox_target') == 'started' or GetResourceState('qb-target') ~= 'started' or not Config.UseTarget then return end
local Zones = {}
function AddTargetModel(models, radius, options)
local optionsNames = {}
for i=1, #options do
optionsNames[i] = options[i].name
if options[i].onSelect then
local cb = options[i].onSelect
options[i].action = function(entity)
cb({entity = entity})
end
options[i].onSelect = nil
end
end
RemoveTargetModel(models, optionsNames)
exports['qb-target']:AddTargetModel(models, {options = options, distance = 2.5})
end
function RemoveTargetModel(models, optionsNames)
exports['qb-target']:RemoveTargetModel(models, optionsNames)
end
function AddTargetZone(coords, radius, options)
local index
repeat
index = "lottery_coord_" .. math.random(1, 999999999)
until not Zones[index]
for i=1, #options do
if options[i].onSelect then
local cb = options[i].onSelect
options[i].action = function(entity)
cb({entity = entity})
end
options[i].onSelect = nil
end
end
exports['qb-target']:AddCircleZone(index, coords, radius, {name = index}, {
options = options
})
return index
end
function RemoveTargetZone(index)
if not index then return end
Zones[index] = nil
exports['qb-target']:RemoveZone(index)
end