A camera script for the Qbox Framework using fivemanage.
- qbx_core
- ox_lib
- ox_inventory
- fmsdk (Fivemanage)
- Download the script and put it in your resources folder.
- Add
ensure y_camera
to your server.cfg - Add the following items to ox_inventory
['camera'] = {
label = 'Camera',
weight = 1500,
stack = false,
close = true,
client = {
event = "y_camera:client:openCamera"
},
buttons = {
{
label = 'View photos',
action = function(slot)
exports.y_camera:ShowScreen(slot)
client.closeInventory()
end
},
}
description = "A professional camera to take a sneaky picture of your neighbor's wife!"
},
['photo'] = {
label = 'Photo',
weight = 100,
stack = true,
close = true,
buttons = {
{
label = 'Show',
action = function(slot)
exports.y_camera:ShowPicture(slot)
client.closeInventory()
end
},
{
label = 'Edit',
action = function(slot)
exports.y_camera:EditPicture(slot)
end
},
{
label = 'Get Link',
action = function(slot)
exports.y_camera:CopyURL(slot)
end
}
},
description = "A photo taken with a camera."
},