Files
Elite-Gaming-FiveM/resources/scully_radio2/ox_inventory_items.lua
T
2025-01-23 10:14:23 -08:00

198 lines
5.2 KiB
Lua

return {
['radio'] = {
label = 'Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_blue'] = {
label = 'Blue Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_blue',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_brown'] = {
label = 'Brown Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_brown',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_cherry'] = {
label = 'Cherry Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_cherry',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_coral'] = {
label = 'Coral Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_coral',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_cyan'] = {
label = 'Cyan Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_cyan',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_green'] = {
label = 'Green Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_green',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_mint'] = {
label = 'Mint Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_mint',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_orange'] = {
label = 'Orange Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_orange',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_pink'] = {
label = 'Pink Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_pink',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_purple'] = {
label = 'Purple Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_purple',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_red'] = {
label = 'Red Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_red',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_yellow'] = {
label = 'Yellow Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_yellow',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
['radio_white'] = {
label = 'White Radio',
weight = 200,
stack = false,
consume = 0,
client = {
export = 'scully_radio2.radio_white',
remove = function(total)
if total < 1 then
TriggerEvent('scully_radio:leaveChannel', true)
end
end
}
},
}